#2 bring harmonization in total source strings and messages to produce global statistics
Merged 4 years ago by jibecfed. Opened 4 years ago by jibecfed.

file modified
+98 -13
@@ -5,12 +5,13 @@ 

  import os

  import pandas

  

- result_folder = ""

+ RESULT_FOLDER = ""

+ 

  

  def main():

      """Handle params"""

  

-     global result_folder

+     global RESULT_FOLDER

  

      parser = argparse.ArgumentParser(

          description="Consolidate every result files and produce a clean concatenated update")
@@ -19,9 +20,9 @@ 

  

      args = parser.parse_args()

  

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

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

  

-     file = result_folder +"/_concat.csv"

+     file = RESULT_FOLDER + "/_concat.csv"

      parse(file)

  

  
@@ -79,6 +80,11 @@ 

      data = check_lang_territory_consistency(data)

      info(data, "cldr consistency are done")

  

+     data = harmonize_totals(data)

+     info(data, "data harmonization are done")

+ 

+     data = summary(data)

+ 

      store(data, "3.result.csv")

  

  
@@ -201,7 +207,8 @@ 

      # set types

      data.territory = data.territory.fillna('')

      data.script = data.script.fillna('')

-     data = data.astype({'territory': 'str', 'language': 'str', 'script': 'str'})

+     data = data.astype(

+         {'territory': 'str', 'language': 'str', 'script': 'str'})

  

      return data

  
@@ -234,6 +241,8 @@ 

      data = data.rename(columns={'name': 'territory_name'})

      data = data.drop('code', 1)

  

+     data['full_language_code'] = data.apply(get_full_language_code, axis=1)

+ 

      return data

  

  
@@ -247,6 +256,7 @@ 

  

      return data

  

+ 

  def check_lang_territory_consistency(data):

      """ use pop per lang_script and territory to detect potential errors """

  
@@ -255,18 +265,19 @@ 

      cldr_data.CName = cldr_data.CName.str.lower()

  

      # in this file, Azerbaijani (Arabic) is written az_Arab, we only keep lang for now

-     cldr_data['Language'] = cldr_data['Language'].str.rsplit('_', 1, expand=True)[0]

- 

+     cldr_data['Language'] = cldr_data['Language'].str.rsplit('_', 1, expand=True)[

+         0]

  

      cldr_data = cldr_data[["CName", 'Language']]

      # as we may have duplicated values now

      cldr_data = cldr_data.drop_duplicates()

-     cldr_data = cldr_data.rename(columns={'CName':'terr', 'Language':'language'})

+     cldr_data = cldr_data.rename(

+         columns={'CName': 'terr', 'Language': 'language'})

  

      data = data.merge(cldr_data, how='left',

-                       left_on=('language','territory'),

-                       right_on=('language','terr'),

-                       suffixes=(False,'_cldr'))

+                       left_on=('language', 'territory'),

+                       right_on=('language', 'terr'),

+                       suffixes=(False, '_cldr'))

  

      error = data[['language', 'territory', 'terr']]

      error = error[~(error.territory.isnull())]
@@ -279,6 +290,80 @@ 

      return data

  

  

+ def get_full_language_code(row):

+     """ full language code using this naming: lang_territory@script """

+     val = row.language

+     if row.territory:

+         val = val + "_" + row.territory

+     if row.script:

+         val = val + "@" + row.script

+ 

+     return val

+ 

+ 

+ def clean_dirname(row):

+     """ strip full_language_code from dirname """

+     val = row.dirname

+ 

+     if val.endswith(row.full_language_code):

+         val = row.dirname[:-len(row.full_language_code)]

+ 

+     return val

+ 

+ 

+ def harmonize_totals(data):

+     """ po files may be outdate, hypothese: max(source string)=truth"""

+     # there could be multiple translation files for one language on a same project

+     data['dirname'] = data['filename'].apply(os.path.dirname)

+ 

+     # sometimes, the $lang.po file is inside a $lang folder, remove this

+     data['dirname'] = data.apply(clean_dirname, axis=1)

+ 

+     # calculate the real totalMessage

+     tmp = data.groupby(['src', 'dirname'])['totalMessage'].max().rename(

+         "totalMessageMax").reset_index()

+     data = data.merge(tmp)

+     data['untranslatedMessages'] += data['totalMessageMax'] - data['totalMessage']

+     data['totalMessage'] = data['totalMessageMax']

+ 

+     # calculate the real totalSourceWords

+     tmp = data.groupby(['src', 'dirname'])['totalSourceWords'].max().rename(

+         "totalSourceWordsMax").reset_index()

+     data = data.merge(tmp)

+     data['untranslatedSourceWords'] += data['totalSourceWordsMax'] - \

+         data['totalSourceWords']

+     data['totalSourceWords'] = data['totalSourceWordsMax']

+ 

+     data = data.drop('totalMessageMax', 1)

+     data = data.drop('totalSourceWordsMax', 1)

+ 

+     return data

+ 

+ 

+ def summary(data):

+ 

+     stat1 = data[['language', 'territory', 'script']

+                  ].drop_duplicates().count().max()

+     stat2 = data['src'].drop_duplicates().count()

+     stat3 = data[['src', 'filename']].drop_duplicates().count().max()

+     stat4 = data['language'].drop_duplicates().count()

+     stat5 = data.groupby(['src', 'dirname'])['totalMessage'].max().sum()

+     stat6 = data.groupby(['src', 'dirname'])['totalSourceWords'].max().sum()

+ 

+     print("")

+     print("We have:")

+     print("  * number of upstream sources: "+str(stat2))

+     print("  * number of distinct lang-script-territory: "+str(stat1))

+     print("  * number of languages: "+str(stat4))

+     print("  * translation files: "+str(stat3))

+     print("This represents:")

+     print("  * Total messages: "+str(stat5))

+     print("  * Total words: "+str(stat6))

+     print("")

+ 

+     return data

+ 

+ 

  def info(dataset, step):

      """Print basic informations about current dataset"""

      print(" * "+step+" → we now have "+str(len(dataset))+" rows")
@@ -286,8 +371,8 @@ 

  

  def store(dataset, name):

      """Store dataset to csv"""

-     global result_folder

-     dataset.to_csv(result_folder+"/"+name, index=False)

+     global RESULT_FOLDER

+     dataset.to_csv(RESULT_FOLDER+"/"+name, index=False)

  

  

  if __name__ == '__main__':

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

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

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,1198,7236,1198,7236,wba.po,,wba,,,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nhn.po,2,4,4,0,0,0,0,2,4,nhn.po,,nhn,,,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/son.po,212,262,266,0,0,208,724,420,986,son.po,,son,,,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nah.po,183,235,223,0,0,237,751,420,986,nah.po,,nah,,,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mo.po,27,31,31,0,0,393,955,420,986,mo.po,,mo,,,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mhr.po,108,130,120,0,0,312,856,420,986,mhr.po,,mhr,,,,

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

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gug.po,0,0,0,0,0,1,5,1,5,gug.po,,gug,,,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/kmr_latn.po,0,0,0,0,0,1,4,1,4,kmr_latn.po,latn,kmr,,,latin,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/officecfg/registry/data/org/openoffice/office/ui.po,1665,3094,2988,108,205,1904,4423,3677,7722,ui.po,,ui,,,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/ooo.po,9,18,18,4,5,569,2001,582,2024,ooo.po,,ooo,,,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/setup_native/source/mac.po,12,39,32,0,0,11,92,23,131,mac.po,,mac,,,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/shell/source/win32/shlxthandler/res.po,35,39,39,0,0,2,6,37,45,res.po,,res,,,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/swext/mediawiki/src.po,1,2,2,0,0,1,37,2,39,src.po,,src,,,,

- qt-4.8.7-47.fc30.src.rpm.stats.csv,demos/declarative/photoviewer/qml/photoviewer/i18n/qml_fr.ts,4,4,4,0,0,0,0,4,4,qml_fr.ts,,qml,fr,,,france

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/cmn.po,654,3297,1433,14,60,196,1093,864,4450,cmn.po,,cmn,,,,

+ 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-30.25.6-1.fc30.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,1198,7236,1198,7236,wba.po,,wba,,,,,wba

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/son.po,212,262,266,0,0,208,724,420,986,son.po,,son,,,,,son

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nah.po,183,235,223,0,0,237,751,420,986,nah.po,,nah,,,,,nah

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mo.po,27,31,31,0,0,393,955,420,986,mo.po,,mo,,,,,mo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mhr.po,108,130,120,0,0,312,856,420,986,mhr.po,,mhr,,,,,mhr

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

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gug.po,0,0,0,0,0,1,5,1,5,gug.po,,gug,,,,,gug

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/kmr_latn.po,0,0,0,0,0,1,4,1,4,kmr_latn.po,latn,kmr,,,latin,,kmr@latn

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/officecfg/registry/data/org/openoffice/office/ui.po,1665,3094,2988,108,205,1904,4423,3677,7722,ui.po,,ui,,,,,ui

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/ooo.po,9,18,18,4,5,569,2001,582,2024,ooo.po,,ooo,,,,,ooo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/setup_native/source/mac.po,12,39,32,0,0,11,92,23,131,mac.po,,mac,,,,,mac

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/shell/source/win32/shlxthandler/res.po,35,39,39,0,0,2,6,37,45,res.po,,res,,,,,res

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/swext/mediawiki/src.po,1,2,2,0,0,1,37,2,39,src.po,,src,,,,,src

+ qt-4.8.7-47.fc30.src.rpm.stats.csv,demos/declarative/photoviewer/qml/photoviewer/i18n/qml_fr.ts,4,4,4,0,0,0,0,4,4,qml_fr.ts,,qml,fr,,,france,qml_fr

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/cmn.po,654,3297,1433,14,60,196,1093,864,4450,cmn.po,,cmn,,,,,cmn

file modified
+23088 -23088
@@ -1,23088 +1,23088 @@ 

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

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sr@latin.po,3,27,23,0,0,0,0,3,27,sr@latin.po,latin,sr,,serbian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/oc.po,3,27,32,0,0,0,0,3,27,oc.po,,oc,,occitan,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/da.po,3,27,21,0,0,0,0,3,27,da.po,,da,,danish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/es.po,3,27,27,0,0,0,0,3,27,es.po,,es,,spanish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/gl.po,3,27,39,0,0,0,0,3,27,gl.po,,gl,,galician,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ro.po,3,27,28,0,0,0,0,3,27,ro.po,,ro,,romanian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/de.po,3,27,26,0,0,0,0,3,27,de.po,,de,,german,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/id.po,3,27,25,0,0,0,0,3,27,id.po,,id,,indonesian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sv.po,3,27,24,0,0,0,0,3,27,sv.po,,sv,,swedish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/is.po,3,27,28,0,0,0,0,3,27,is.po,,is,,icelandic,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/lv.po,3,27,25,0,0,0,0,3,27,lv.po,,lv,,latvian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/el.po,3,27,29,0,0,0,0,3,27,el.po,,el,,greek,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/hr.po,3,27,24,0,0,0,0,3,27,hr.po,,hr,,croatian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ca.po,3,27,40,0,0,0,0,3,27,ca.po,,ca,,catalan,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pt_br.po,3,27,29,0,0,0,0,3,27,pt_br.po,,pt,br,portuguese,,brazil

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/zh_cn.po,3,27,7,0,0,0,0,3,27,zh_cn.po,,zh,cn,chinese,,china

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/tr.po,3,27,26,0,0,0,0,3,27,tr.po,,tr,,turkish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pa.po,3,27,35,0,0,0,0,3,27,pa.po,,pa,,punjabi,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sk.po,3,27,26,0,0,0,0,3,27,sk.po,,sk,,slovak,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/zh_tw.po,3,27,6,0,0,0,0,3,27,zh_tw.po,,zh,tw,chinese,,taiwan

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pl.po,3,27,23,0,0,0,0,3,27,pl.po,,pl,,polish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/hu.po,3,27,22,0,0,0,0,3,27,hu.po,,hu,,hungarian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sl.po,3,27,24,0,0,0,0,3,27,sl.po,,sl,,slovenian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/lt.po,3,27,24,0,0,0,0,3,27,lt.po,,lt,,lithuanian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fr.po,3,27,32,0,0,0,0,3,27,fr.po,,fr,,french,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ko.po,3,27,19,0,0,0,0,3,27,ko.po,,ko,,korean,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sr.po,3,27,23,0,0,0,0,3,27,sr.po,,sr,,serbian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/it.po,3,27,37,0,0,0,0,3,27,it.po,,it,,italian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/cs.po,3,27,22,0,0,0,0,3,27,cs.po,,cs,,czech,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fur.po,3,27,32,0,0,0,0,3,27,fur.po,,fur,,friulian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fi.po,3,27,19,0,0,0,0,3,27,fi.po,,fi,,finnish,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ru.po,3,27,24,0,0,0,0,3,27,ru.po,,ru,,russian,,

- abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/nl.po,3,27,27,0,0,0,0,3,27,nl.po,,nl,,dutch,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,390,3230,390,3230,zu.po,,zu,,zulu,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,476,3969,1335,0,0,0,0,476,3969,zh_tw.po,,zh,tw,chinese,,taiwan

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,1,2,1,0,0,475,3967,476,3969,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,476,3969,1413,0,0,0,0,476,3969,zh_cn.po,,zh,cn,chinese,,china

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,390,3230,390,3230,xh.po,,xh,,xhosa,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,390,3230,390,3230,wo.po,,wo,,wolof,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/vi.po,7,24,45,0,0,469,3945,476,3969,vi.po,,vi,,vietnamese,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,390,3230,390,3230,uz.po,,uz,,uzbek,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,476,3969,476,3969,ur.po,,ur,,urdu,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/uk.po,476,3969,4321,0,0,0,0,476,3969,uk.po,,uk,,ukrainian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tr.po,189,1319,1117,0,0,287,2650,476,3969,tr.po,,tr,,turkish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,390,3230,390,3230,tl.po,,tl,,tagalog,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/th.po,143,1204,587,0,0,333,2765,476,3969,th.po,,th,,thai,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tg.po,4,10,11,0,0,472,3959,476,3969,tg.po,,tg,,tajik,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/te.po,341,2564,2189,0,0,135,1405,476,3969,te.po,,te,,telugu,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ta.po,342,2566,2293,0,0,134,1403,476,3969,ta.po,,ta,,tamil,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sv.po,476,3969,3778,0,0,0,0,476,3969,sv.po,,sv,,swedish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,1,1,0,0,475,3968,476,3969,sr@latin.po,latin,sr,,serbian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sr.po,410,3343,3379,0,0,66,626,476,3969,sr.po,,sr,,serbian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sq.po,476,3969,4685,0,0,0,0,476,3969,sq.po,,sq,,albanian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,390,3230,390,3230,sl.po,,sl,,slovenian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sk.po,316,2414,2332,0,0,160,1555,476,3969,sk.po,,sk,,slovak,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,390,3230,390,3230,si.po,,si,,sinhala,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,390,3230,390,3230,ru_ru.po,,ru,ru,russian,,russia

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ru.po,476,3969,3808,0,0,0,0,476,3969,ru.po,,ru,,russian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,390,3230,390,3230,ro.po,,ro,,romanian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,476,3969,4511,0,0,0,0,476,3969,pt_br.po,,pt,br,portuguese,,brazil

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pt.po,183,1321,1518,14,126,279,2522,476,3969,pt.po,,pt,,portuguese,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pl.po,476,3969,3953,0,0,0,0,476,3969,pl.po,,pl,,polish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pa.po,284,2105,2429,0,0,192,1864,476,3969,pa.po,,pa,,punjabi,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/or.po,340,2546,2653,0,0,136,1423,476,3969,or.po,,or,,odia,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,390,3230,390,3230,nso.po,,nso,,northern sotho,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,390,3230,390,3230,no.po,,no,,norwegian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nn.po,4,18,19,0,0,472,3951,476,3969,nn.po,,nn,,norwegian nynorsk,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nl.po,476,3969,4192,0,0,0,0,476,3969,nl.po,,nl,,dutch,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,390,3230,390,3230,ne.po,,ne,,nepali,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,475,3968,476,3969,nds.po,,nds,,low german,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nb.po,56,242,245,0,0,420,3727,476,3969,nb.po,,nb,,norwegian bokmål,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,390,3230,390,3230,my.po,,my,,burmese,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,390,3230,390,3230,ms.po,,ms,,malay,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mr.po,340,2563,2428,2,7,134,1399,476,3969,mr.po,,mr,,marathi,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,390,3230,390,3230,mn.po,,mn,,mongolian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ml.po,342,2549,2040,1,5,133,1415,476,3969,ml.po,,ml,,malayalam,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,390,3230,390,3230,mk.po,,mk,,macedonian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,390,3230,390,3230,mg.po,,mg,,malagasy,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,390,3230,390,3230,mai.po,,mai,,maithili,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lv.po,19,64,55,0,0,457,3905,476,3969,lv.po,,lv,,latvian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lt.po,476,3969,3442,0,0,0,0,476,3969,lt.po,,lt,,lithuanian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,390,3230,390,3230,lo.po,,lo,,lao,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,390,3230,390,3230,la.po,,la,,latin,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,390,3230,390,3230,ky.po,,ky,,kyrgyz,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,390,3230,390,3230,ku.po,,ku,,kurdish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,390,3230,390,3230,ks.po,,ks,,kashmiri,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ko.po,368,2835,2449,0,0,108,1134,476,3969,ko.po,,ko,,korean,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/kn.po,341,2564,2358,0,0,135,1405,476,3969,kn.po,,kn,,kannada,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/km.po,41,303,97,0,0,435,3666,476,3969,km.po,,km,,khmer,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/kk.po,11,13,16,0,0,465,3956,476,3969,kk.po,,kk,,kazakh,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ka.po,17,64,57,0,0,459,3905,476,3969,ka.po,,ka,,georgian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ja.po,476,3969,1407,0,0,0,0,476,3969,ja.po,,ja,,japanese,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/it.po,476,3969,4384,0,0,0,0,476,3969,it.po,,it,,italian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,390,3230,390,3230,is.po,,is,,icelandic,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,390,3230,390,3230,ilo.po,,ilo,,iloko,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/id.po,55,363,341,0,0,421,3606,476,3969,id.po,,id,,indonesian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ia.po,83,567,691,0,0,393,3402,476,3969,ia.po,,ia,,interlingua,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,390,3230,390,3230,hy.po,,hy,,armenian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hu.po,476,3969,3981,0,0,0,0,476,3969,hu.po,,hu,,hungarian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,390,3230,390,3230,hr.po,,hr,,croatian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hi.po,340,2546,3067,0,0,136,1423,476,3969,hi.po,,hi,,hindi,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/he.po,47,407,376,0,0,429,3562,476,3969,he.po,,he,,hebrew,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/gu.po,341,2564,2821,0,0,135,1405,476,3969,gu.po,,gu,,gujarati,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/gl.po,81,603,745,0,0,395,3366,476,3969,gl.po,,gl,,galician,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,390,3230,390,3230,ga.po,,ga,,irish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fr.po,476,3969,4841,0,0,0,0,476,3969,fr.po,,fr,,french,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fi.po,280,1656,1286,0,0,196,2313,476,3969,fi.po,,fi,,finnish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fa.po,17,64,78,0,0,459,3905,476,3969,fa.po,,fa,,persian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/eu.po,35,189,177,0,0,441,3780,476,3969,eu.po,,eu,,basque,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/et.po,148,1034,898,0,0,328,2935,476,3969,et.po,,et,,estonian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/es.po,476,3969,4863,0,0,0,0,476,3969,es.po,,es,,spanish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,390,3230,390,3230,eo.po,,eo,,esperanto,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,390,3230,390,3230,en_us.po,,en,us,english,,united states

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/en_gb.po,249,2212,2211,0,0,227,1757,476,3969,en_gb.po,,en,gb,english,,united kingdom

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/el.po,19,151,176,0,0,457,3818,476,3969,el.po,,el,,greek,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,390,3230,390,3230,dz.po,,dz,,dzongkha,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,390,3230,390,3230,de_ch.po,,de,ch,german,,switzerland

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/de.po,476,3969,3905,0,0,0,0,476,3969,de.po,,de,,german,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/da.po,476,3969,3749,0,0,0,0,476,3969,da.po,,da,,danish,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,390,3230,390,3230,cy.po,,cy,,welsh,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/cs.po,476,3969,3718,0,0,0,0,476,3969,cs.po,,cs,,czech,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ca.po,476,3969,5170,0,0,0,0,476,3969,ca.po,,ca,,catalan,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bs.po,19,150,157,0,0,457,3819,476,3969,bs.po,,bs,,bosnian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,390,3230,390,3230,brx.po,,brx,,bodo,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,390,3230,390,3230,br.po,,br,,breton,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,390,3230,390,3230,bo.po,,bo,,tibetan,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bn_in.po,340,2546,2780,0,0,136,1423,476,3969,bn_in.po,,bn,in,bangla,,india

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bn.po,128,927,1039,0,0,348,3042,476,3969,bn.po,,bn,,bangla,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bg.po,153,1116,1228,0,0,323,2853,476,3969,bg.po,,bg,,bulgarian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,390,3230,390,3230,be.po,,be,,belarusian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,390,3230,390,3230,bal.po,,bal,,baluchi,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,390,3230,390,3230,az.po,,az,,azerbaijani,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ast.po,1,1,1,0,0,475,3968,476,3969,ast.po,,ast,,asturian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/as.po,328,2488,2595,0,0,148,1481,476,3969,as.po,,as,,assamese,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ar.po,6,20,23,0,0,470,3949,476,3969,ar.po,,ar,,arabic,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,390,3230,390,3230,am.po,,am,,amharic,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,390,3230,390,3230,aln.po,,aln,,gheg albanian,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,390,3230,390,3230,af.po,,af,,afrikaans,,

- abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,390,3230,390,3230,ach.po,,ach,,acoli,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/nl.po,10,59,57,0,0,0,0,10,59,nl.po,,nl,,dutch,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/de.po,10,59,59,0,0,0,0,10,59,de.po,,de,,german,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ko.po,10,59,44,0,0,0,0,10,59,ko.po,,ko,,korean,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/tr.po,10,59,58,0,0,0,0,10,59,tr.po,,tr,,turkish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,10,59,10,59,da.po,,da,,danish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,10,59,10,59,ia.po,,ia,,interlingua,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pt_br.po,10,59,69,0,0,0,0,10,59,pt_br.po,,pt,br,portuguese,,brazil

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sv.po,10,59,51,0,0,0,0,10,59,sv.po,,sv,,swedish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,10,59,10,59,ro.po,,ro,,romanian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/eo.po,10,59,53,0,0,0,0,10,59,eo.po,,eo,,esperanto,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sl.po,10,59,55,0,0,0,0,10,59,sl.po,,sl,,slovenian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,10,59,10,59,ga.po,,ga,,irish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ja.po,10,59,12,0,0,0,0,10,59,ja.po,,ja,,japanese,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pl.po,10,59,56,0,0,0,0,10,59,pl.po,,pl,,polish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ru.po,10,59,62,0,0,0,0,10,59,ru.po,,ru,,russian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,10,59,10,59,he.po,,he,,hebrew,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,10,59,10,59,sr.po,,sr,,serbian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,10,59,10,59,ca@valencia.po,valencia,ca,,catalan,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/en_gb.po,10,59,59,0,0,0,0,10,59,en_gb.po,,en,gb,english,,united kingdom

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,10,59,10,59,wa.po,,wa,,walloon,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/gl.po,10,59,76,0,0,0,0,10,59,gl.po,,gl,,galician,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,10,59,10,59,bn_in.po,,bn,in,bangla,,india

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,10,59,10,59,bg.po,,bg,,bulgarian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/el.po,10,59,62,0,0,0,0,10,59,el.po,,el,,greek,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,10,59,10,59,te.po,,te,,telugu,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/cs.po,10,59,59,0,0,0,0,10,59,cs.po,,cs,,czech,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fr.po,10,59,78,0,0,0,0,10,59,fr.po,,fr,,french,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/lv.po,10,59,53,0,0,0,0,10,59,lv.po,,lv,,latvian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/zh_cn.po,10,59,11,0,0,0,0,10,59,zh_cn.po,,zh,cn,chinese,,china

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ka.po,10,59,52,0,0,0,0,10,59,ka.po,,ka,,georgian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/uk.po,10,59,60,0,0,0,0,10,59,uk.po,,uk,,ukrainian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/zh_tw.po,10,59,13,0,0,0,0,10,59,zh_tw.po,,zh,tw,chinese,,taiwan

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,10,59,10,59,hi.po,,hi,,hindi,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,10,59,10,59,lt.po,,lt,,lithuanian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ca.po,10,59,73,0,0,0,0,10,59,ca.po,,ca,,catalan,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sk.po,10,59,61,0,0,0,0,10,59,sk.po,,sk,,slovak,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/vi.po,10,59,89,0,0,0,0,10,59,vi.po,,vi,,vietnamese,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,10,59,10,59,ar.po,,ar,,arabic,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,10,59,10,59,kk.po,,kk,,kazakh,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/es.po,10,59,67,0,0,0,0,10,59,es.po,,es,,spanish,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/it.po,10,59,71,0,0,0,0,10,59,it.po,,it,,italian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,10,59,10,59,fa.po,,fa,,persian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pa.po,10,59,62,0,0,0,0,10,59,pa.po,,pa,,punjabi,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/id.po,10,59,56,0,0,0,0,10,59,id.po,,id,,indonesian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,10,59,10,59,sr@latin.po,latin,sr,,serbian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/hu.po,10,59,50,0,0,0,0,10,59,hu.po,,hu,,hungarian,,

- accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fi.po,10,59,39,0,0,0,0,10,59,fi.po,,fi,,finnish,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,52,500,502,0,0,0,0,52,500,en@boldquot.po,boldquot,en,,english,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/sv.po,49,395,380,3,105,0,0,52,500,sv.po,,sv,,swedish,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/en@quot.po,52,500,500,0,0,0,0,52,500,en@quot.po,quot,en,,english,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/fr.po,48,370,424,4,130,0,0,52,500,fr.po,,fr,,french,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/pl.po,49,395,400,3,105,0,0,52,500,pl.po,,pl,,polish,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/es.po,49,395,447,3,105,0,0,52,500,es.po,,es,,spanish,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/gl.po,49,395,447,3,105,0,0,52,500,gl.po,,gl,,galician,,

- acl-2.2.53-3.fc30.src.rpm.stats.csv,po/de.po,49,395,362,3,105,0,0,52,500,de.po,,de,,german,,

- alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,alsaconf/po/ja.po,35,537,213,0,0,1,1,36,538,ja.po,,ja,,japanese,,

- alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,alsaconf/po/ru.po,34,407,373,1,130,1,1,36,538,ru.po,,ru,,russian,,

- alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/fr.po,264,1144,1449,21,475,37,169,322,1788,fr.po,,fr,,french,,

- alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/ja.po,245,1080,594,22,486,55,222,322,1788,ja.po,,ja,,japanese,,

- alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/de.po,294,1260,1171,20,474,8,54,322,1788,de.po,,de,,german,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nb.po,741,3389,3103,8,17,536,4405,1285,7811,nb.po,,nb,,norwegian bokmål,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kn.po,783,4094,3671,3,32,499,3685,1285,7811,kn.po,,kn,,kannada,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/lv.po,46,243,193,0,0,1239,7568,1285,7811,lv.po,,lv,,latvian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/or.po,462,2550,2604,0,0,823,5261,1285,7811,or.po,,or,,odia,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nso.po,14,66,90,0,0,1271,7745,1285,7811,nso.po,,nso,,northern sotho,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bn.po,37,227,240,0,0,1248,7584,1285,7811,bn.po,,bn,,bangla,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,1198,7236,1198,7236,br.po,,br,,breton,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/si.po,40,225,224,0,0,1245,7586,1285,7811,si.po,,si,,sinhala,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,1198,7236,1198,7236,bal.po,,bal,,baluchi,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/he.po,1187,6876,6199,2,2,96,933,1285,7811,he.po,,he,,hebrew,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ca.po,1272,7658,9036,0,0,13,153,1285,7811,ca.po,,ca,,catalan,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1285,7811,2503,0,0,0,0,1285,7811,zh_cn.po,,zh,cn,chinese,,china

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/is.po,23,112,107,0,0,1262,7699,1285,7811,is.po,,is,,icelandic,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/vi.po,14,66,64,0,0,1271,7745,1285,7811,vi.po,,vi,,vietnamese,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/be.po,1280,7773,6906,0,0,5,38,1285,7811,be.po,,be,,belarusian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nn.po,39,311,257,0,0,1246,7500,1285,7811,nn.po,,nn,,norwegian nynorsk,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fa.po,143,456,534,0,0,1142,7355,1285,7811,fa.po,,fa,,persian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fr.po,1285,7811,9340,0,0,0,0,1285,7811,fr.po,,fr,,french,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ga.po,252,457,509,0,0,1033,7354,1285,7811,ga.po,,ga,,irish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,1198,7236,1198,7236,anp.po,,anp,,angika,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tr.po,1210,7050,5822,0,0,75,761,1285,7811,tr.po,,tr,,turkish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,1198,7236,1198,7236,yo.po,,yo,,yoruba,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ia.po,642,3043,3427,0,0,643,4768,1285,7811,ia.po,,ia,,interlingua,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mai.po,24,144,176,0,0,1261,7667,1285,7811,mai.po,,mai,,maithili,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ja.po,1270,7665,2488,0,0,15,146,1285,7811,ja.po,,ja,,japanese,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,1198,7236,1198,7236,kw_gb.po,,kw,gb,cornish,,united kingdom

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ne.po,17,79,76,0,0,1268,7732,1285,7811,ne.po,,ne,,nepali,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pl.po,1285,7811,7350,0,0,0,0,1285,7811,pl.po,,pl,,polish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pa.po,880,3632,4241,0,0,405,4179,1285,7811,pa.po,,pa,,punjabi,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nds.po,4,8,7,0,0,1281,7803,1285,7811,nds.po,,nds,,low german,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,1198,7236,1198,7236,mn.po,,mn,,mongolian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,1198,7236,1198,7236,tw.po,,tw,,twi,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/gu.po,796,3670,4305,0,0,489,4141,1285,7811,gu.po,,gu,,gujarati,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ast.po,32,192,194,0,0,1253,7619,1285,7811,ast.po,,ast,,asturian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ru.po,1279,7765,6697,0,0,6,46,1285,7811,ru.po,,ru,,russian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sq.po,1019,5848,6871,0,0,266,1963,1285,7811,sq.po,,sq,,albanian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bg.po,984,5675,5853,0,0,301,2136,1285,7811,bg.po,,bg,,bulgarian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ta.po,879,4817,4363,0,0,406,2994,1285,7811,ta.po,,ta,,tamil,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/id.po,1272,7694,7307,0,0,13,117,1285,7811,id.po,,id,,indonesian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fil.po,98,647,729,2,37,1185,7127,1285,7811,fil.po,,fil,,filipino,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ml.po,436,2332,1840,0,0,849,5479,1285,7811,ml.po,,ml,,malayalam,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/af.po,14,66,63,0,0,1271,7745,1285,7811,af.po,,af,,afrikaans,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1274,7717,2341,0,0,11,94,1285,7811,zh_tw.po,,zh,tw,chinese,,taiwan

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nl.po,1285,7811,7809,0,0,0,0,1285,7811,nl.po,,nl,,dutch,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ms.po,16,71,64,0,0,1269,7740,1285,7811,ms.po,,ms,,malay,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,1198,7236,1198,7236,kw@uccor.po,uccor,kw,,cornish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/te.po,451,2419,1962,0,0,834,5392,1285,7811,te.po,,te,,telugu,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sk.po,1285,7811,7328,0,0,0,0,1285,7811,sk.po,,sk,,slovak,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fur.po,1103,6392,7386,0,0,182,1419,1285,7811,fur.po,,fur,,friulian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_hk.po,231,1088,342,0,0,1054,6723,1285,7811,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/de_ch.po,20,125,119,0,0,1265,7686,1285,7811,de_ch.po,,de,ch,german,,switzerland

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sv.po,1284,7797,7176,0,0,1,14,1285,7811,sv.po,,sv,,swedish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/lt.po,1203,7054,5855,0,0,82,757,1285,7811,lt.po,,lt,,lithuanian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/am.po,14,66,58,0,0,1271,7745,1285,7811,am.po,,am,,amharic,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bo.po,1,1,1,0,0,1284,7810,1285,7811,bo.po,,bo,,tibetan,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/eo.po,1090,5581,5162,51,240,144,1990,1285,7811,eo.po,,eo,,esperanto,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/cy.po,14,66,67,0,0,1271,7745,1285,7811,cy.po,,cy,,welsh,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/as.po,895,4939,5323,0,0,390,2872,1285,7811,as.po,,as,,assamese,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sl.po,17,79,67,0,0,1268,7732,1285,7811,sl.po,,sl,,slovenian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pt_br.po,1258,7567,8202,0,0,27,244,1285,7811,pt_br.po,,pt,br,portuguese,,brazil

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/uk.po,1285,7811,7761,0,0,0,0,1285,7811,uk.po,,uk,,ukrainian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,1198,7236,1198,7236,brx.po,,brx,,bodo,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ka.po,317,711,641,0,0,968,7100,1285,7811,ka.po,,ka,,georgian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mk.po,17,79,77,0,0,1268,7732,1285,7811,mk.po,,mk,,macedonian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hu.po,1285,7811,7091,0,0,0,0,1285,7811,hu.po,,hu,,hungarian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,1198,7236,1198,7236,kw@kkcor.po,kkcor,kw,,cornish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/gl.po,326,1625,1902,0,0,959,6186,1285,7811,gl.po,,gl,,galician,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/el.po,34,191,197,0,0,1251,7620,1285,7811,el.po,,el,,greek,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/it.po,1108,6418,6695,1,10,176,1383,1285,7811,it.po,,it,,italian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/da.po,1285,7811,7094,0,0,0,0,1285,7811,da.po,,da,,danish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/eu.po,248,631,588,0,0,1037,7180,1285,7811,eu.po,,eu,,basque,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ko.po,1269,7636,6293,0,0,16,175,1285,7811,ko.po,,ko,,korean,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ro.po,1089,6201,6694,0,0,196,1610,1285,7811,ro.po,,ro,,romanian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tg.po,16,46,48,0,0,1269,7765,1285,7811,tg.po,,tg,,tajik,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/cs.po,1285,7811,7206,0,0,0,0,1285,7811,cs.po,,cs,,czech,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bn_in.po,904,5051,5445,0,0,381,2760,1285,7811,bn_in.po,,bn,in,bangla,,india

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/en_gb.po,37,227,227,0,0,1248,7584,1285,7811,en_gb.po,,en,gb,english,,united kingdom

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pt.po,316,1142,1293,0,0,969,6669,1285,7811,pt.po,,pt,,portuguese,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sr.po,1198,6786,6532,0,0,87,1025,1285,7811,sr.po,,sr,,serbian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hr.po,1011,5761,5358,0,0,274,2050,1285,7811,hr.po,,hr,,croatian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ilo.po,14,66,77,0,0,1271,7745,1285,7811,ilo.po,,ilo,,iloko,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/th.po,170,690,320,0,0,1115,7121,1285,7811,th.po,,th,,thai,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ar.po,565,2688,2615,0,0,720,5123,1285,7811,ar.po,,ar,,arabic,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sr@latin.po,28,170,159,0,0,1257,7641,1285,7811,sr@latin.po,latin,sr,,serbian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zu.po,11,52,37,0,0,1274,7759,1285,7811,zu.po,,zu,,zulu,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fi.po,1027,5439,4071,0,0,258,2372,1285,7811,fi.po,,fi,,finnish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/et.po,171,553,471,0,0,1114,7258,1285,7811,et.po,,et,,estonian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/km.po,279,2291,1060,0,0,1006,5520,1285,7811,km.po,,km,,khmer,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,1198,7236,1198,7236,kw.po,,kw,,cornish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hi.po,433,2234,2618,0,0,852,5577,1285,7811,hi.po,,hi,,hindi,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/de.po,1259,7455,7108,0,0,26,356,1285,7811,de.po,,de,,german,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bs.po,18,93,79,0,0,1267,7718,1285,7811,bs.po,,bs,,bosnian,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/es.po,1284,7797,8793,0,0,1,14,1285,7811,es.po,,es,,spanish,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,1198,7236,1198,7236,ky.po,,ky,,kyrgyz,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mr.po,495,2811,2582,0,0,790,5000,1285,7811,mr.po,,mr,,marathi,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kk.po,1110,6433,5564,0,0,175,1378,1285,7811,kk.po,,kk,,kazakh,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ur.po,14,66,81,0,0,1271,7745,1285,7811,ur.po,,ur,,urdu,,

- anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/my.po,64,287,183,0,0,1221,7524,1285,7811,my.po,,my,,burmese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,123,370,361,1,1,2,4,126,375,en_ca.po,,en,ca,english,,canada

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,169,440,334,0,0,0,0,169,440,hu.po,,hu,,hungarian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/th.po,136,392,157,0,0,3,6,139,398,th.po,,th,,thai,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,169,440,181,0,0,0,0,169,440,zh_cn.po,,zh,cn,chinese,,china

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,139,398,315,0,0,0,0,139,398,nn.po,,nn,,norwegian nynorsk,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/si.po,31,38,40,0,0,95,337,126,375,si.po,,si,,sinhala,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,169,440,427,0,0,0,0,169,440,hr.po,,hr,,croatian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,169,440,381,0,0,0,0,169,440,lt.po,,lt,,lithuanian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,126,375,298,0,0,0,0,126,375,mn.po,,mn,,mongolian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/es.po,169,440,561,0,0,0,0,169,440,es.po,,es,,spanish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,169,440,385,0,0,0,0,169,440,tr.po,,tr,,turkish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,169,440,421,0,0,0,0,169,440,sr.po,,sr,,serbian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,98,224,203,1,2,27,149,126,375,zu.po,,zu,,zulu,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/as.po,169,440,409,0,0,0,0,169,440,as.po,,as,,assamese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,139,398,470,0,0,0,0,139,398,gu.po,,gu,,gujarati,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/yi.po,31,31,32,48,96,47,248,126,375,yi.po,,yi,,yiddish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,169,440,528,0,0,0,0,169,440,pt.po,,pt,,portuguese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,74,121,124,10,19,42,235,126,375,ms.po,,ms,,malay,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,139,398,457,0,0,0,0,139,398,ast.po,,ast,,asturian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/da.po,169,440,309,0,0,0,0,169,440,da.po,,da,,danish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,169,440,402,0,0,0,0,169,440,lv.po,,lv,,latvian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/an.po,169,440,522,0,0,0,0,169,440,an.po,,an,,aragonese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,169,440,425,0,0,0,0,169,440,ru.po,,ru,,russian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,139,398,342,0,0,0,0,139,398,bn_in.po,,bn,in,bangla,,india

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,169,440,517,0,0,0,0,169,440,fur.po,,fur,,friulian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,64,142,188,2,2,60,231,126,375,wa.po,,wa,,walloon,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,169,440,439,0,0,0,0,169,440,ro.po,,ro,,romanian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,169,440,426,0,0,0,0,169,440,ne.po,,ne,,nepali,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,126,375,431,0,0,0,0,126,375,sq.po,,sq,,albanian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,139,398,353,0,0,0,0,139,398,kn.po,,kn,,kannada,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,169,440,536,0,0,0,0,169,440,fr.po,,fr,,french,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/li.po,31,31,31,48,96,47,248,126,375,li.po,,li,,limburgish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/te.po,139,398,332,0,0,0,0,139,398,te.po,,te,,telugu,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,167,410,350,1,21,1,9,169,440,eo.po,,eo,,esperanto,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,126,375,376,0,0,0,0,126,375,en@shaw.po,shaw,en,,english,shavian,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,126,375,338,0,0,0,0,126,375,hy.po,,hy,,armenian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,169,440,527,0,0,0,0,169,440,ca@valencia.po,valencia,ca,,catalan,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,169,440,524,0,0,0,0,169,440,bg.po,,bg,,bulgarian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,139,398,333,0,0,0,0,139,398,ml.po,,ml,,malayalam,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,139,398,157,0,0,0,0,139,398,ja.po,,ja,,japanese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/el.po,169,440,451,0,0,0,0,169,440,el.po,,el,,greek,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,169,440,456,0,0,0,0,169,440,pa.po,,pa,,punjabi,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,169,440,419,0,0,0,0,169,440,pl.po,,pl,,polish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,139,398,343,0,0,0,0,139,398,ug.po,,ug,,uyghur,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,169,440,186,0,0,0,0,169,440,zh_tw.po,,zh,tw,chinese,,taiwan

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/is.po,31,31,32,48,96,47,248,126,375,is.po,,is,,icelandic,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,126,375,341,0,0,0,0,126,375,ar.po,,ar,,arabic,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/af.po,108,334,288,12,31,6,10,126,375,af.po,,af,,afrikaans,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/et.po,139,398,285,0,0,0,0,139,398,et.po,,et,,estonian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,169,440,529,0,0,0,0,169,440,gl.po,,gl,,galician,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,169,440,527,0,0,0,0,169,440,ca.po,,ca,,catalan,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,169,440,415,0,0,0,0,169,440,sk.po,,sk,,slovak,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,52,78,76,0,0,117,362,169,440,kk.po,,kk,,kazakh,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/or.po,139,398,347,0,0,0,0,139,398,or.po,,or,,odia,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/km.po,139,398,164,0,0,0,0,139,398,km.po,,km,,khmer,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,169,440,417,0,0,0,0,169,440,cs.po,,cs,,czech,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,123,370,388,1,1,2,4,126,375,mai.po,,mai,,maithili,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,169,440,371,0,0,0,0,169,440,nl.po,,nl,,dutch,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tt.po,114,359,292,7,8,5,8,126,375,tt.po,,tt,,tatar,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,169,440,430,0,0,0,0,169,440,bs.po,,bs,,bosnian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/de.po,169,440,353,0,0,0,0,169,440,de.po,,de,,german,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,169,440,440,0,0,0,0,169,440,en_gb.po,,en,gb,english,,united kingdom

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,5,85,299,36,71,126,375,rw.po,,rw,,kinyarwanda,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/az.po,114,359,314,7,8,5,8,126,375,az.po,,az,,azerbaijani,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,25,25,26,15,26,86,324,126,375,ga.po,,ga,,irish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,159,417,297,5,9,5,14,169,440,fi.po,,fi,,finnish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,40,46,48,0,0,99,352,139,398,tg.po,,tg,,tajik,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,169,440,362,0,0,0,0,169,440,nb.po,,nb,,norwegian bokmål,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,169,440,186,0,0,0,0,169,440,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,139,398,360,0,0,0,0,139,398,uk.po,,uk,,ukrainian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/be.po,169,440,398,0,0,0,0,169,440,be.po,,be,,belarusian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/he.po,169,440,441,0,0,0,0,169,440,he.po,,he,,hebrew,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,169,440,477,0,0,0,0,169,440,gd.po,,gd,,scottish gaelic,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,169,440,528,0,0,0,0,169,440,oc.po,,oc,,occitan,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,125,374,337,1,1,0,0,126,375,be@latin.po,latin,be,,belarusian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,123,370,188,1,1,2,4,126,375,dz.po,,dz,,dzongkha,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,121,348,331,1,1,4,26,126,375,ku.po,,ku,,kurdish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,139,398,380,0,0,0,0,139,398,fa.po,,fa,,persian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,169,440,635,0,0,0,0,169,440,vi.po,,vi,,vietnamese,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,169,440,341,0,0,0,0,169,440,eu.po,,eu,,basque,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,169,440,529,0,0,0,0,169,440,pt_br.po,,pt,br,portuguese,,brazil

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/am.po,24,24,28,26,53,76,298,126,375,am.po,,am,,amharic,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,169,440,326,0,0,0,0,169,440,sv.po,,sv,,swedish,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/id.po,169,440,415,0,0,0,0,169,440,id.po,,id,,indonesian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,123,370,300,1,1,2,4,126,375,ka.po,,ka,,georgian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr@ije.po,114,359,336,7,8,5,8,126,375,sr@ije.po,ije,sr,,serbian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,169,440,396,0,0,0,0,169,440,ko.po,,ko,,korean,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,126,375,347,0,0,0,0,126,375,mr.po,,mr,,marathi,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,169,440,421,0,0,0,0,169,440,sr@latin.po,latin,sr,,serbian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,123,370,436,1,1,2,4,126,375,mk.po,,mk,,macedonian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,139,398,432,0,0,0,0,139,398,hi.po,,hi,,hindi,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,123,370,436,1,1,2,4,126,375,ps.po,,ps,,pashto,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,126,375,382,0,0,0,0,126,375,cy.po,,cy,,welsh,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,169,440,393,0,0,0,0,169,440,sl.po,,sl,,slovenian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,114,359,319,7,8,5,8,126,375,xh.po,,xh,,xhosa,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,111,348,291,8,9,7,18,126,375,tk.po,,tk,,turkmen,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/it.po,169,440,491,0,0,0,0,169,440,it.po,,it,,italian,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,126,375,346,0,0,0,0,126,375,bn.po,,bn,,bangla,,

- atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,139,398,326,0,0,0,0,139,398,ta.po,,ta,,tamil,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,2,10,2,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,2,10,2,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,2,10,2,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,14,96,121,0,0,0,0,14,96,vi.po,,vi,,vietnamese,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,1,5,5,0,0,0,0,1,5,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,18,122,119,0,0,0,0,18,122,uk.po,,uk,,ukrainian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,14,96,115,0,0,0,0,14,96,ug.po,,ug,,uyghur,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,2,10,12,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,1,5,5,0,0,0,0,1,5,tg.po,,tg,,tajik,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/te.po,18,122,109,0,0,0,0,18,122,te.po,,te,,telugu,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,1,5,3,0,0,0,0,1,5,ta.po,,ta,,tamil,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,2,10,13,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,2,10,11,0,0,0,0,2,10,sr@latin.po,latin,sr,,serbian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,2,10,11,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,18,122,145,0,0,0,0,18,122,sq.po,,sq,,albanian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,2,10,11,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,2,10,12,0,0,0,0,2,10,ru.po,,ru,,russian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,2,10,13,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,2,10,12,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,2,10,12,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,2,10,12,0,0,0,0,2,10,pl.po,,pl,,polish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,2,10,14,0,0,0,0,2,10,pa.po,,pa,,punjabi,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/or.po,18,122,125,0,0,0,0,18,122,or.po,,or,,odia,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,2,10,10,0,0,0,0,2,10,oc.po,,oc,,occitan,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,2,10,10,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,2,10,11,0,0,0,0,2,10,ne.po,,ne,,nepali,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,14,96,103,0,0,0,0,14,96,mr.po,,mr,,marathi,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,2,10,9,0,0,0,0,2,10,ml.po,,ml,,malayalam,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,2,10,9,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,2,10,9,0,0,0,0,2,10,lt.po,,lt,,lithuanian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,2,10,9,0,0,0,0,2,10,ko.po,,ko,,korean,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,18,122,123,0,0,0,0,18,122,kn.po,,kn,,kannada,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/km.po,1,5,5,0,0,0,0,1,5,km.po,,km,,khmer,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,2,10,12,0,0,0,0,2,10,kk.po,,kk,,kazakh,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,1,5,1,0,0,0,0,1,5,ja.po,,ja,,japanese,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/it.po,2,10,9,0,0,0,0,2,10,it.po,,it,,italian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,2,10,10,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,1,5,5,0,0,0,0,1,5,hi.po,,hi,,hindi,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/he.po,2,10,10,0,0,0,0,2,10,he.po,,he,,hebrew,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,18,122,143,0,0,0,0,18,122,gu.po,,gu,,gujarati,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,2,10,12,0,0,0,0,2,10,gl.po,,gl,,galician,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,2,10,12,0,0,0,0,2,10,gd.po,,gd,,scottish gaelic,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,1,5,6,0,0,0,0,1,5,ga.po,,ga,,irish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,2,10,10,0,0,0,0,2,10,fur.po,,fur,,friulian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,2,10,9,0,0,0,0,2,10,fr.po,,fr,,french,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,1,5,4,0,0,0,0,1,5,fi.po,,fi,,finnish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,2,10,10,0,0,0,0,2,10,fa.po,,fa,,persian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,2,10,10,0,0,0,0,2,10,eu.po,,eu,,basque,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/et.po,2,10,12,0,0,0,0,2,10,et.po,,et,,estonian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/es.po,2,10,13,0,0,0,0,2,10,es.po,,es,,spanish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,1,5,5,0,0,0,0,1,5,eo.po,,eo,,esperanto,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,2,10,10,0,0,0,0,2,10,en_gb.po,,en,gb,english,,united kingdom

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,1,5,5,0,0,0,0,1,5,en_ca.po,,en,ca,english,,canada

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/el.po,2,10,10,0,0,0,0,2,10,el.po,,el,,greek,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/de.po,2,10,11,0,0,0,0,2,10,de.po,,de,,german,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/da.po,2,10,10,0,0,0,0,2,10,da.po,,da,,danish,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,2,10,11,0,0,0,0,2,10,cs.po,,cs,,czech,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,2,10,12,0,0,0,0,2,10,ca@valencia.po,valencia,ca,,catalan,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,2,10,10,0,0,0,0,2,10,bs.po,,bs,,bosnian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,18,122,139,0,0,0,0,18,122,bn_in.po,,bn,in,bangla,,india

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,2,10,9,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/be.po,2,10,12,0,0,0,0,2,10,be.po,,be,,belarusian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,14,96,111,0,0,0,0,14,96,ast.po,,ast,,asturian,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/as.po,2,10,9,0,0,0,0,2,10,as.po,,as,,assamese,,

- at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/an.po,2,10,10,0,0,0,0,2,10,an.po,,an,,aragonese,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/en@boldquot.po,30,348,350,0,0,0,0,30,348,en@boldquot.po,boldquot,en,,english,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/sv.po,22,208,206,7,138,1,2,30,348,sv.po,,sv,,swedish,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/nl.po,22,208,209,7,138,1,2,30,348,nl.po,,nl,,dutch,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/en@quot.po,30,348,348,0,0,0,0,30,348,en@quot.po,quot,en,,english,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/fr.po,22,208,239,7,138,1,2,30,348,fr.po,,fr,,french,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/pl.po,28,293,288,2,55,0,0,30,348,pl.po,,pl,,polish,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/es.po,28,293,319,2,55,0,0,30,348,es.po,,es,,spanish,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/gl.po,28,293,319,2,55,0,0,30,348,gl.po,,gl,,galician,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/de.po,21,197,186,8,149,1,2,30,348,de.po,,de,,german,,

- attr-2.4.48-5.fc30.src.rpm.stats.csv,po/cs.po,28,293,290,2,55,0,0,30,348,cs.po,,cs,,czech,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,309,1783,703,0,0,4,24,313,1807,zh_tw.po,,zh,tw,chinese,,taiwan

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,309,1783,552,0,0,4,24,313,1807,zh_cn.po,,zh,cn,chinese,,china

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/uk.po,313,1807,1818,0,0,0,0,313,1807,uk.po,,uk,,ukrainian,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/sv.po,313,1807,1755,0,0,0,0,313,1807,sv.po,,sv,,swedish,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ru.po,309,1783,1699,0,0,4,24,313,1807,ru.po,,ru,,russian,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,309,1783,2049,0,0,4,24,313,1807,pt_br.po,,pt,br,portuguese,,brazil

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/pl.po,313,1807,1792,0,0,0,0,313,1807,pl.po,,pl,,polish,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/nl.po,313,1807,1877,0,0,0,0,313,1807,nl.po,,nl,,dutch,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ko.po,309,1783,1585,0,0,4,24,313,1807,ko.po,,ko,,korean,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ja.po,309,1783,858,0,0,4,24,313,1807,ja.po,,ja,,japanese,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/it.po,309,1783,1919,0,0,4,24,313,1807,it.po,,it,,italian,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/hu.po,277,1599,1483,0,0,36,208,313,1807,hu.po,,hu,,hungarian,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/fr.po,313,1807,2152,0,0,0,0,313,1807,fr.po,,fr,,french,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/es.po,313,1807,2220,0,0,0,0,313,1807,es.po,,es,,spanish,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/de.po,309,1783,1759,0,0,4,24,313,1807,de.po,,de,,german,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/cs.po,183,956,887,0,0,130,851,313,1807,cs.po,,cs,,czech,,

- authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ca.po,173,930,1144,0,0,140,877,313,1807,ca.po,,ca,,catalan,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_nz.po,152,758,758,11,89,5,21,168,868,en_nz.po,,en,nz,english,,new zealand

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_ca.po,1,1,1,1,1,166,866,168,868,en_ca.po,,en,ca,english,,canada

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/sk.po,165,865,870,2,2,1,1,168,868,sk.po,,sk,,slovak,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/eo.po,67,167,141,1,1,100,700,168,868,eo.po,,eo,,esperanto,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/sr@latin.po,165,865,896,2,2,1,1,168,868,sr@latin.po,latin,sr,,serbian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/pl.po,168,868,865,0,0,0,0,168,868,pl.po,,pl,,polish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/uk.po,168,868,883,0,0,0,0,168,868,uk.po,,uk,,ukrainian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/fr.po,165,865,989,2,2,1,1,168,868,fr.po,,fr,,french,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/nl.po,165,865,846,2,2,1,1,168,868,nl.po,,nl,,dutch,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/es.po,165,865,1070,2,2,1,1,168,868,es.po,,es,,spanish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/el.po,165,865,876,2,2,1,1,168,868,el.po,,el,,greek,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/oc.po,168,868,993,0,0,0,0,168,868,oc.po,,oc,,occitan,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/tr.po,168,868,789,0,0,0,0,168,868,tr.po,,tr,,turkish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/fi.po,164,794,634,2,2,2,72,168,868,fi.po,,fi,,finnish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/fa.po,74,224,245,1,1,93,643,168,868,fa.po,,fa,,persian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ms.po,40,94,95,1,1,127,773,168,868,ms.po,,ms,,malay,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ja.po,165,865,449,2,2,1,1,168,868,ja.po,,ja,,japanese,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/bg.po,165,865,1001,2,2,1,1,168,868,bg.po,,bg,,bulgarian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/et.po,129,477,405,2,2,37,389,168,868,et.po,,et,,estonian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/cs.po,133,642,607,2,2,33,224,168,868,cs.po,,cs,,czech,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/sv.po,168,868,807,0,0,0,0,168,868,sv.po,,sv,,swedish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/hu.po,168,868,780,0,0,0,0,168,868,hu.po,,hu,,hungarian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ar.po,91,262,267,2,2,75,604,168,868,ar.po,,ar,,arabic,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/sl.po,165,865,882,2,2,1,1,168,868,sl.po,,sl,,slovenian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/id.po,168,868,850,0,0,0,0,168,868,id.po,,id,,indonesian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/he.po,103,332,318,2,2,63,534,168,868,he.po,,he,,hebrew,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/pt_br.po,165,865,1009,2,2,1,1,168,868,pt_br.po,,pt,br,portuguese,,brazil

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_au.po,2,2,2,1,1,165,865,168,868,en_au.po,,en,au,english,,australia

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/fo.po,113,413,366,2,2,53,453,168,868,fo.po,,fo,,faroese,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/zh_tw.po,165,865,391,2,2,1,1,168,868,zh_tw.po,,zh,tw,chinese,,taiwan

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,168,868,168,868,ko.po,,ko,,korean,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,168,868,168,868,ach.po,,ach,,acoli,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/it.po,165,865,986,2,2,1,1,168,868,it.po,,it,,italian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ru.po,165,865,828,2,2,1,1,168,868,ru.po,,ru,,russian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/da.po,165,865,761,2,2,1,1,168,868,da.po,,da,,danish,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/lv.po,165,865,776,2,2,1,1,168,868,lv.po,,lv,,latvian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/sr.po,165,865,896,2,2,1,1,168,868,sr.po,,sr,,serbian,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/gl.po,165,865,1161,2,2,1,1,168,868,gl.po,,gl,,galician,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/de.po,165,865,779,2,2,1,1,168,868,de.po,,de,,german,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_gb.po,165,865,865,2,2,1,1,168,868,en_gb.po,,en,gb,english,,united kingdom

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ca.po,165,865,1145,2,2,1,1,168,868,ca.po,,ca,,catalan,,

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/zh_cn.po,165,865,414,2,2,1,1,168,868,zh_cn.po,,zh,cn,chinese,,china

- avahi-0.7-18.fc30.src.rpm.stats.csv,po/ro.po,165,865,882,2,2,1,1,168,868,ro.po,,ro,,romanian,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/cs.po,4,67,68,0,0,0,0,4,67,cs.po,,cs,,czech,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/da.po,4,67,64,0,0,0,0,4,67,da.po,,da,,danish,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/de.po,4,67,64,0,0,0,0,4,67,de.po,,de,,german,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/es.po,0,0,0,1,22,3,45,4,67,es.po,,es,,spanish,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/fr.po,4,67,73,0,0,0,0,4,67,fr.po,,fr,,french,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/id.po,4,67,45,0,0,0,0,4,67,id.po,,id,,indonesian,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/it.po,4,67,70,0,0,0,0,4,67,it.po,,it,,italian,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/ja.po,4,67,10,0,0,0,0,4,67,ja.po,,ja,,japanese,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/pl.po,4,67,65,0,0,0,0,4,67,pl.po,,pl,,polish,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/pt.po,4,67,72,0,0,0,0,4,67,pt.po,,pt,,portuguese,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/ru.po,4,67,53,0,0,0,0,4,67,ru.po,,ru,,russian,,

- b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/sv.po,4,67,66,0,0,0,0,4,67,sv.po,,sv,,swedish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,57,820,118,0,0,0,0,57,820,zh_cn.po,,zh,cn,chinese,,china

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,67,1103,1032,0,0,0,0,67,1103,sv.po,,sv,,swedish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,57,820,734,0,0,0,0,57,820,sl.po,,sl,,slovenian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,57,820,717,0,0,0,0,57,820,ru.po,,ru,,russian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,67,1103,1218,0,0,0,0,67,1103,pt_br.po,,pt,br,portuguese,,brazil

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pt/pt.po,67,1103,1132,0,0,0,0,67,1103,pt.po,,pt,,portuguese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,67,1103,864,0,0,0,0,67,1103,pl.po,,pl,,polish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,67,1103,749,0,0,0,0,67,1103,ko.po,,ko,,korean,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,67,1103,1105,0,0,0,0,67,1103,it.po,,it,,italian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,67,1103,978,0,0,0,0,67,1103,id.po,,id,,indonesian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,67,1103,890,0,0,0,0,67,1103,hu.po,,hu,,hungarian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,67,1103,910,0,0,0,0,67,1103,hr.po,,hr,,croatian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,39,345,388,7,255,21,503,67,1103,gl.po,,gl,,galician,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,67,1103,1186,0,0,0,0,67,1103,fr.po,,fr,,french,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,47,688,411,3,56,17,359,67,1103,fi.po,,fi,,finnish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,67,1103,1180,0,0,0,0,67,1103,es.po,,es,,spanish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,67,1103,1126,0,0,0,0,67,1103,el.po,,el,,greek,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,67,1103,1060,0,0,0,0,67,1103,de.po,,de,,german,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,67,1103,967,0,0,0,0,67,1103,da.po,,da,,danish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,67,1103,955,0,0,0,0,67,1103,cs.po,,cs,,czech,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,41,703,758,0,0,0,0,41,703,ca.po,,ca,,catalan,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,65,247,116,0,0,0,0,65,247,zh_tw.po,,zh,tw,chinese,,taiwan

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,57,210,109,0,0,0,0,57,210,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,65,247,109,0,0,0,0,65,247,zh_cn.po,,zh,cn,chinese,,china

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,12,23,21,40,128,74,389,126,540,xh.po,,xh,,xhosa,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,6,6,6,44,128,76,406,126,540,wa.po,,wa,,walloon,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,74,278,394,0,0,0,0,74,278,vi.po,,vi,,vietnamese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,108,116,0,0,0,0,30,108,uk.po,,uk,,ukrainian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,57,184,166,0,0,0,0,57,184,ug.po,,ug,,uyghur,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,74,278,245,0,0,0,0,74,278,tr.po,,tr,,turkish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,58,180,86,0,0,0,0,58,180,th.po,,th,,thai,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,57,210,214,0,0,0,0,57,210,tg.po,,tg,,tajik,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,57,210,198,0,0,0,0,57,210,te.po,,te,,telugu,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,57,210,192,0,0,0,0,57,210,ta.po,,ta,,tamil,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,74,278,273,0,0,0,0,74,278,sv.po,,sv,,swedish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,65,247,268,0,0,0,0,65,247,sr@latin.po,latin,sr,,serbian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,74,278,308,0,0,0,0,74,278,sr.po,,sr,,serbian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,12,23,23,40,128,74,389,126,540,sq.po,,sq,,albanian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,74,278,284,0,0,0,0,74,278,sl.po,,sl,,slovenian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,65,247,245,0,0,0,0,65,247,sk.po,,sk,,slovak,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,80,210,246,19,79,27,251,126,540,si.po,,si,,sinhala,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,2,2,2,47,141,77,397,126,540,rw.po,,rw,,kinyarwanda,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,74,278,263,0,0,0,0,74,278,ru.po,,ru,,russian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,74,278,333,0,0,0,0,74,278,ro.po,,ro,,romanian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,74,278,418,0,0,0,0,74,278,pt_br.po,,pt,br,portuguese,,brazil

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,63,243,279,0,0,0,0,63,243,pt.po,,pt,,portuguese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,99,282,317,5,18,22,240,126,540,ps.po,,ps,,pashto,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,74,278,303,0,0,0,0,74,278,pl.po,,pl,,polish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,57,210,251,0,0,0,0,57,210,pa.po,,pa,,punjabi,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,57,210,231,0,0,0,0,57,210,or.po,,or,,odia,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,57,185,213,0,0,6,58,63,243,oc.po,,oc,,occitan,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,72,229,230,0,0,0,0,72,229,nn.po,,nn,,norwegian nynorsk,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,74,278,284,0,0,0,0,74,278,nl.po,,nl,,dutch,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,64,246,227,0,0,0,0,64,246,ne.po,,ne,,nepali,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,44,84,78,1,3,81,453,126,540,nds.po,,nds,,low german,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,65,247,249,0,0,0,0,65,247,nb.po,,nb,,norwegian bokmål,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,9,15,24,40,134,77,391,126,540,ms.po,,ms,,malay,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,57,210,217,0,0,0,0,57,210,mr.po,,mr,,marathi,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,8,14,13,41,135,77,391,126,540,mn.po,,mn,,mongolian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,65,247,222,0,0,0,0,65,247,ml.po,,ml,,malayalam,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,109,370,431,9,38,8,132,126,540,mk.po,,mk,,macedonian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,50,132,149,48,193,28,215,126,540,mg.po,,mg,,malagasy,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,94,287,348,7,24,25,229,126,540,mai.po,,mai,,maithili,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,74,278,266,0,0,0,0,74,278,lv.po,,lv,,latvian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,74,278,268,0,0,0,0,74,278,lt.po,,lt,,lithuanian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,54,118,132,26,104,46,318,126,540,ku.po,,ku,,kurdish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,74,278,238,0,0,0,0,74,278,ko.po,,ko,,korean,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,57,210,187,0,0,0,0,57,210,kn.po,,kn,,kannada,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,126,540,243,0,0,0,0,126,540,km.po,,km,,khmer,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,74,278,245,0,0,0,0,74,278,kk.po,,kk,,kazakh,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,11,22,24,42,157,73,361,126,540,ka.po,,ka,,georgian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,71,225,129,0,0,3,53,74,278,ja.po,,ja,,japanese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,74,278,321,0,0,0,0,74,278,it.po,,it,,italian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,65,247,245,0,0,0,0,65,247,is.po,,is,,icelandic,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,74,278,299,0,0,0,0,74,278,id.po,,id,,indonesian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,74,278,290,0,0,0,0,74,278,hu.po,,hu,,hungarian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,65,247,240,0,0,0,0,65,247,hr.po,,hr,,croatian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,57,210,245,0,0,0,0,57,210,hi.po,,hi,,hindi,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,63,243,264,0,0,0,0,63,243,he.po,,he,,hebrew,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,57,210,227,0,0,0,0,57,210,gu.po,,gu,,gujarati,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,74,278,394,0,0,0,0,74,278,gl.po,,gl,,galician,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,64,246,324,0,0,0,0,64,246,gd.po,,gd,,scottish gaelic,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,45,124,162,1,6,11,80,57,210,ga.po,,ga,,irish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,74,278,317,0,0,0,0,74,278,fur.po,,fur,,friulian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,74,278,350,0,0,0,0,74,278,fr.po,,fr,,french,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,74,278,256,0,0,0,0,74,278,fi.po,,fi,,finnish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,64,246,281,0,0,0,0,64,246,fa.po,,fa,,persian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,64,246,239,0,0,0,0,64,246,eu.po,,eu,,basque,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,57,210,189,0,0,0,0,57,210,et.po,,et,,estonian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,74,278,394,0,0,0,0,74,278,es.po,,es,,spanish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,62,196,187,1,13,1,37,64,246,eo.po,,eo,,esperanto,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,63,243,266,0,0,0,0,63,243,en_gb.po,,en,gb,english,,united kingdom

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,11,22,25,42,157,73,361,126,540,en_ca.po,,en,ca,english,,canada

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,100,413,414,24,123,2,4,126,540,en@shaw.po,shaw,en,,english,shavian,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,74,278,321,0,0,0,0,74,278,el.po,,el,,greek,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,90,285,133,24,103,12,152,126,540,dz.po,,dz,,dzongkha,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,74,278,324,0,0,0,0,74,278,de.po,,de,,german,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,74,278,273,0,0,0,0,74,278,da.po,,da,,danish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,50,132,164,52,203,24,205,126,540,cy.po,,cy,,welsh,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,74,278,325,0,0,0,0,74,278,cs.po,,cs,,czech,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,57,184,157,0,0,0,0,57,184,crh.po,,crh,,crimean turkish,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,64,246,313,0,0,0,0,64,246,ca@valencia.po,valencia,ca,,catalan,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,74,278,356,0,0,0,0,74,278,ca.po,,ca,,catalan,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,57,210,217,0,0,0,0,57,210,bs.po,,bs,,bosnian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,57,210,244,0,0,0,0,57,210,br.po,,br,,breton,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,57,210,224,0,0,0,0,57,210,bn_in.po,,bn,in,bangla,,india

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,122,526,596,2,10,2,4,126,540,bn.po,,bn,,bangla,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,64,246,306,0,0,0,0,64,246,bg.po,,bg,,bulgarian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,109,370,341,9,38,8,132,126,540,be@latin.po,latin,be,,belarusian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,65,247,245,0,0,0,0,65,247,be.po,,be,,belarusian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,9,15,29,40,134,77,391,126,540,az.po,,az,,azerbaijani,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,126,540,625,0,0,0,0,126,540,ast.po,,ast,,asturian,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,57,210,227,0,0,0,0,57,210,as.po,,as,,assamese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,64,244,257,0,0,0,0,64,244,ar.po,,ar,,arabic,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,57,210,255,0,0,0,0,57,210,an.po,,an,,aragonese,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,6,6,10,16,35,104,499,126,540,am.po,,am,,amharic,,

- baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,65,247,248,0,0,0,0,65,247,af.po,,af,,afrikaans,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/hu.po,565,9806,8278,20,1695,1,6,586,11507,hu.po,,hu,,hungarian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/it.po,487,5568,6137,74,5784,25,155,586,11507,it.po,,it,,italian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sr.po,565,9806,9161,20,1695,1,6,586,11507,sr.po,,sr,,serbian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/af.po,15,46,52,220,759,351,10702,586,11507,af.po,,af,,afrikaans,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sl.po,487,5568,5327,74,5784,25,155,586,11507,sl.po,,sl,,slovenian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/nl.po,565,9806,9808,20,1695,1,6,586,11507,nl.po,,nl,,dutch,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pl.po,584,11184,10311,2,323,0,0,586,11507,pl.po,,pl,,polish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ro.po,125,431,477,173,827,288,10249,586,11507,ro.po,,ro,,romanian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sk.po,487,5568,5224,74,5784,25,155,586,11507,sk.po,,sk,,slovak,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/fr.po,584,11184,12921,2,323,0,0,586,11507,fr.po,,fr,,french,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,586,11507,11544,0,0,0,0,586,11507,en@boldquot.po,boldquot,en,,english,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/hr.po,584,11184,10476,2,323,0,0,586,11507,hr.po,,hr,,croatian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/el.po,501,3498,3673,11,251,74,7758,586,11507,el.po,,el,,greek,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/eo.po,565,9806,9056,20,1695,1,6,586,11507,eo.po,,eo,,esperanto,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ru.po,543,6142,5719,42,5359,1,6,586,11507,ru.po,,ru,,russian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/id.po,510,5842,5584,63,5591,13,74,586,11507,id.po,,id,,indonesian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/bg.po,565,9806,10657,20,1695,1,6,586,11507,bg.po,,bg,,bulgarian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/da.po,458,4836,4619,96,6469,32,202,586,11507,da.po,,da,,danish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/et.po,153,660,647,47,189,386,10658,586,11507,et.po,,et,,estonian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/gl.po,468,3199,3776,51,1438,67,6870,586,11507,gl.po,,gl,,galician,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ja.po,531,5986,2439,48,5483,7,38,586,11507,ja.po,,ja,,japanese,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ga.po,565,6907,7485,1,164,20,4436,586,11507,ga.po,,ga,,irish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,584,11184,12173,2,323,0,0,586,11507,pt_br.po,,pt,br,portuguese,,brazil

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sv.po,584,11184,10408,2,323,0,0,586,11507,sv.po,,sv,,swedish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/tr.po,553,8541,7240,17,1181,16,1785,586,11507,tr.po,,tr,,turkish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/lt.po,326,1512,1409,77,1231,183,8764,586,11507,lt.po,,lt,,lithuanian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,584,11184,3906,2,323,0,0,586,11507,zh_cn.po,,zh,cn,chinese,,china

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/cs.po,584,11184,10087,2,323,0,0,586,11507,cs.po,,cs,,czech,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/es.po,565,9806,11294,20,1695,1,6,586,11507,es.po,,es,,spanish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/vi.po,550,9017,11285,30,2456,6,34,586,11507,vi.po,,vi,,vietnamese,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pt.po,584,11184,11647,2,323,0,0,586,11507,pt.po,,pt,,portuguese,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ca.po,556,9738,10809,20,1695,10,74,586,11507,ca.po,,ca,,catalan,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/de.po,500,5904,5612,1,164,85,5439,586,11507,de.po,,de,,german,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/uk.po,565,9806,8768,20,1695,1,6,586,11507,uk.po,,uk,,ukrainian,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/fi.po,459,4966,3719,92,6318,35,223,586,11507,fi.po,,fi,,finnish,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/en@quot.po,586,11507,11507,0,0,0,0,586,11507,en@quot.po,quot,en,,english,,

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,584,11184,3900,2,323,0,0,586,11507,zh_tw.po,,zh,tw,chinese,,taiwan

- bash-5.0.2-1.fc30.src.rpm.stats.csv,po/nb.po,565,9806,8857,20,1695,1,6,586,11507,nb.po,,nb,,norwegian bokmål,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/pt.po,1771,11953,12808,0,0,0,0,1771,11953,pt.po,,pt,,portuguese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/sr.po,1398,9119,9435,0,0,0,0,1398,9119,sr.po,,sr,,serbian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/fr.po,1771,11953,14584,0,0,0,0,1771,11953,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/vi.po,1312,8369,12106,0,0,0,0,1312,8369,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/tr.po,592,4098,3794,0,0,0,0,592,4098,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/fi.po,1398,9119,7687,0,0,0,0,1398,9119,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ru.po,1651,11020,10975,0,0,0,0,1651,11020,ru.po,,ru,,russian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/zh_cn.po,214,935,437,521,2842,663,5342,1398,9119,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/rw.po,1,2,2,508,3879,83,217,592,4098,rw.po,,rw,,kinyarwanda,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/da.po,1398,9119,8504,0,0,0,0,1398,9119,da.po,,da,,danish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/id.po,1312,8369,8501,0,0,0,0,1312,8369,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/es.po,1771,11953,13950,0,0,0,0,1771,11953,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/sv.po,1398,9119,8364,0,0,0,0,1398,9119,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/uk.po,1651,11020,11613,0,0,0,0,1651,11020,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/hr.po,79,195,199,0,0,1233,8174,1312,8369,hr.po,,hr,,croatian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ro.po,592,4098,4407,0,0,0,0,592,4098,ro.po,,ro,,romanian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ja.po,1013,6811,4307,0,0,286,1419,1299,8230,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/pt.po,2218,13724,14965,0,0,0,0,2218,13724,pt.po,,pt,,portuguese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/it.po,1496,9431,10831,0,0,0,0,1496,9431,it.po,,it,,italian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sr.po,1698,10376,10383,0,0,0,0,1698,10376,sr.po,,sr,,serbian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/fr.po,2218,13724,16858,0,0,0,0,2218,13724,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/zh_tw.po,881,4106,1957,238,2663,397,2747,1516,9516,zh_tw.po,,zh,tw,chinese,,taiwan

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/vi.po,1516,9516,14252,0,0,0,0,1516,9516,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/bg.po,840,5058,5493,0,0,1284,8237,2124,13295,bg.po,,bg,,bulgarian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/tr.po,979,6367,5810,0,0,0,0,979,6367,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/fi.po,1698,10376,8212,0,0,0,0,1698,10376,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ru.po,2218,13724,13433,0,0,0,0,2218,13724,ru.po,,ru,,russian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ca.po,1698,10376,13004,0,0,0,0,1698,10376,ca.po,,ca,,catalan,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/zh_cn.po,973,4740,2285,513,3613,212,2023,1698,10376,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/rw.po,5,8,9,761,5299,144,503,910,5810,rw.po,,rw,,kinyarwanda,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/da.po,780,3498,3134,254,2242,281,2948,1315,8688,da.po,,da,,danish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/id.po,1144,7903,7882,0,0,0,0,1144,7903,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/es.po,1400,7316,9310,457,4071,361,2337,2218,13724,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sv.po,2124,13295,11929,0,0,0,0,2124,13295,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/uk.po,2124,13295,13483,0,0,0,0,2124,13295,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/hr.po,262,1097,1060,7,107,1247,8312,1516,9516,hr.po,,hr,,croatian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ro.po,261,968,1038,0,0,718,5399,979,6367,ro.po,,ro,,romanian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sk.po,1106,7582,7268,0,0,0,0,1106,7582,sk.po,,sk,,slovak,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ja.po,1464,9332,5397,0,0,32,99,1496,9431,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/fr.po,4427,28114,33722,0,0,0,0,4427,28114,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/tr.po,2368,13963,12564,229,1879,99,646,2696,16488,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/fi.po,3702,23106,19304,0,0,0,0,3702,23106,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/ru.po,4355,27600,27087,0,0,0,0,4355,27600,ru.po,,ru,,russian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/zh_cn.po,46,142,74,2348,11907,1740,13875,4134,25924,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/rw.po,0,0,0,304,1492,2652,16769,2956,18261,rw.po,,rw,,kinyarwanda,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/id.po,3702,23106,23606,0,0,0,0,3702,23106,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/es.po,4325,27075,33160,8,110,94,929,4427,28114,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/sv.po,4102,25598,23039,293,2143,7,62,4402,27803,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/uk.po,4355,27600,29441,0,0,0,0,4355,27600,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/ja.po,302,1631,975,6,34,3317,20926,3625,22591,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/it.po,485,2803,3294,0,0,0,0,485,2803,it.po,,it,,italian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/fr.po,905,5831,7784,0,0,0,0,905,5831,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/vi.po,485,2803,4426,0,0,0,0,485,2803,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/fi.po,741,4571,3687,0,0,0,0,741,4571,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/zh_cn.po,118,459,190,319,1692,304,2420,741,4571,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/id.po,485,2803,2852,0,0,0,0,485,2803,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/es.po,792,4808,5615,0,0,89,815,881,5623,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/sv.po,59,245,245,168,840,514,3486,741,4571,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/uk.po,905,5831,6188,0,0,0,0,905,5831,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/ja.po,120,678,431,0,0,365,2125,485,2803,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/de.po,97,525,492,0,0,0,0,97,525,de.po,,de,,german,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/it.po,97,525,595,0,0,0,0,97,525,it.po,,it,,italian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/sr.po,98,533,543,0,0,0,0,98,533,sr.po,,sr,,serbian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/fr.po,98,533,614,0,0,0,0,98,533,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/eo.po,98,533,535,0,0,0,0,98,533,eo.po,,eo,,esperanto,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ms.po,98,533,534,0,0,0,0,98,533,ms.po,,ms,,malay,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/vi.po,97,525,879,0,0,0,0,97,525,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/bg.po,98,533,601,0,0,0,0,98,533,bg.po,,bg,,bulgarian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/tr.po,98,533,519,0,0,0,0,98,533,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/fi.po,97,526,487,0,0,0,0,97,526,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ru.po,98,533,536,0,0,0,0,98,533,ru.po,,ru,,russian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/nl.po,97,525,552,0,0,0,0,97,525,nl.po,,nl,,dutch,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/rw.po,2,2,2,67,425,24,59,93,486,rw.po,,rw,,kinyarwanda,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/da.po,97,526,505,0,0,0,0,97,526,da.po,,da,,danish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/id.po,97,525,517,0,0,0,0,97,525,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/es.po,98,533,625,0,0,0,0,98,533,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/sv.po,98,533,505,0,0,0,0,98,533,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/pt_br.po,98,533,613,0,0,0,0,98,533,pt_br.po,,pt,br,portuguese,,brazil

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/uk.po,98,533,552,0,0,0,0,98,533,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/hu.po,98,533,545,0,0,0,0,98,533,hu.po,,hu,,hungarian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ro.po,93,486,539,0,0,0,0,93,486,ro.po,,ro,,romanian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ga.po,97,524,587,0,0,0,0,97,524,ga.po,,ga,,irish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ja.po,28,119,90,36,136,33,270,97,525,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/de.po,283,1404,1422,0,0,206,1498,489,2902,de.po,,de,,german,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/it.po,488,2898,3402,0,0,0,0,488,2898,it.po,,it,,italian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/sr.po,497,2968,3045,0,0,0,0,497,2968,sr.po,,sr,,serbian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/fr.po,497,2968,3811,0,0,0,0,497,2968,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/zh_tw.po,497,2968,1403,0,0,0,0,497,2968,zh_tw.po,,zh,tw,chinese,,taiwan

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/vi.po,489,2902,4515,0,0,0,0,489,2902,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/bg.po,602,3746,4315,0,0,282,2342,884,6088,bg.po,,bg,,bulgarian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/tr.po,460,2690,2463,50,370,64,488,574,3548,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/fi.po,497,2968,2485,0,0,0,0,497,2968,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ru.po,55,420,482,3,24,428,2446,486,2890,ru.po,,ru,,russian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/zh_cn.po,497,2968,1311,0,0,0,0,497,2968,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/da.po,386,2177,2100,0,0,100,713,486,2890,da.po,,da,,danish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/id.po,489,2902,2970,0,0,0,0,489,2902,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/es.po,581,3688,4713,127,874,176,1526,884,6088,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/sv.po,497,2968,2891,0,0,0,0,497,2968,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/pt_br.po,884,6088,7062,0,0,0,0,884,6088,pt_br.po,,pt,br,portuguese,,brazil

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/uk.po,884,6088,6380,0,0,0,0,884,6088,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ga.po,497,2968,3409,0,0,0,0,497,2968,ga.po,,ga,,irish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ja.po,489,2902,1516,0,0,0,0,489,2902,ja.po,,ja,,japanese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/de.po,436,2594,2560,0,0,0,0,436,2594,de.po,,de,,german,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/it.po,234,1371,1595,0,0,0,0,234,1371,it.po,,it,,italian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/sr.po,287,1602,1611,0,0,0,0,287,1602,sr.po,,sr,,serbian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/fr.po,362,2108,2378,0,0,0,0,362,2108,fr.po,,fr,,french,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/vi.po,292,1632,2494,0,0,0,0,292,1632,vi.po,,vi,,vietnamese,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/tr.po,148,863,783,0,0,0,0,148,863,tr.po,,tr,,turkish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/fi.po,287,1602,1393,0,0,0,0,287,1602,fi.po,,fi,,finnish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/zh_cn.po,219,1192,525,108,650,43,303,370,2145,zh_cn.po,,zh,cn,chinese,,china

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/nl.po,234,1371,1419,0,0,0,0,234,1371,nl.po,,nl,,dutch,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/da.po,179,968,946,0,0,55,403,234,1371,da.po,,da,,danish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/id.po,292,1632,1687,0,0,0,0,292,1632,id.po,,id,,indonesian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/es.po,370,2145,2527,0,0,0,0,370,2145,es.po,,es,,spanish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/sv.po,149,866,842,0,0,0,0,149,866,sv.po,,sv,,swedish,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/pt_br.po,436,2594,2943,0,0,0,0,436,2594,pt_br.po,,pt,br,portuguese,,brazil

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/uk.po,436,2594,2697,0,0,0,0,436,2594,uk.po,,uk,,ukrainian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/ro.po,148,863,909,0,0,0,0,148,863,ro.po,,ro,,romanian,,

- binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/ga.po,287,1602,1830,0,0,0,0,287,1602,ga.po,,ga,,irish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/zh_tw.po,218,753,344,0,0,5,62,223,815,zh_tw.po,,zh,tw,chinese,,taiwan

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/zh_cn.po,184,687,328,0,0,39,128,223,815,zh_cn.po,,zh,cn,chinese,,china

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,223,815,223,815,vi.po,,vi,,vietnamese,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/uk.po,223,815,839,0,0,0,0,223,815,uk.po,,uk,,ukrainian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,223,815,223,815,tr.po,,tr,,turkish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,223,815,223,815,th.po,,th,,thai,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,223,815,223,815,te.po,,te,,telugu,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,223,815,223,815,ta.po,,ta,,tamil,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,223,815,223,815,sv.po,,sv,,swedish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sr.po,218,753,792,0,0,5,62,223,815,sr.po,,sr,,serbian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sq.po,132,481,575,3,11,88,323,223,815,sq.po,,sq,,albanian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,223,815,223,815,sl.po,,sl,,slovenian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sk.po,223,815,800,0,0,0,0,223,815,sk.po,,sk,,slovak,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,223,815,223,815,si.po,,si,,sinhala,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ru.po,135,492,471,0,0,88,323,223,815,ru.po,,ru,,russian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,223,815,223,815,ro.po,,ro,,romanian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pt_br.po,40,151,160,0,0,183,664,223,815,pt_br.po,,pt,br,portuguese,,brazil

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pl.po,223,815,845,0,0,0,0,223,815,pl.po,,pl,,polish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,223,815,223,815,pa.po,,pa,,punjabi,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,223,815,223,815,or.po,,or,,odia,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,223,815,223,815,nn.po,,nn,,norwegian nynorsk,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,223,815,223,815,nl.po,,nl,,dutch,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,223,815,223,815,nds.po,,nds,,low german,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,223,815,223,815,nb.po,,nb,,norwegian bokmål,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,223,815,223,815,ms.po,,ms,,malay,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,223,815,223,815,mr.po,,mr,,marathi,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,223,815,223,815,mn.po,,mn,,mongolian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,223,815,223,815,ml.po,,ml,,malayalam,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,223,815,223,815,mai.po,,mai,,maithili,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,223,815,223,815,lv.po,,lv,,latvian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,223,815,223,815,ky.po,,ky,,kyrgyz,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,223,815,223,815,ko.po,,ko,,korean,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,223,815,223,815,kn.po,,kn,,kannada,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/kk.po,135,492,485,0,0,88,323,223,815,kk.po,,kk,,kazakh,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,223,815,223,815,ka.po,,ka,,georgian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ja.po,98,276,133,0,0,125,539,223,815,ja.po,,ja,,japanese,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/it.po,135,492,535,0,0,88,323,223,815,it.po,,it,,italian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,223,815,223,815,is.po,,is,,icelandic,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,223,815,223,815,id.po,,id,,indonesian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hu.po,223,815,789,0,0,0,0,223,815,hu.po,,hu,,hungarian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,223,815,223,815,hr.po,,hr,,croatian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,223,815,223,815,hi.po,,hi,,hindi,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/he.po,77,163,168,1,1,145,651,223,815,he.po,,he,,hebrew,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,223,815,223,815,gu.po,,gu,,gujarati,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,223,815,223,815,gl.po,,gl,,galician,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,223,815,223,815,ga.po,,ga,,irish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fur.po,215,749,887,0,0,8,66,223,815,fur.po,,fur,,friulian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fr.po,222,811,1006,0,0,1,4,223,815,fr.po,,fr,,french,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fi.po,115,313,283,0,0,108,502,223,815,fi.po,,fi,,finnish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,223,815,223,815,fa.po,,fa,,persian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,223,815,223,815,eu.po,,eu,,basque,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,223,815,223,815,et.po,,et,,estonian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/es.po,220,809,951,2,2,1,4,223,815,es.po,,es,,spanish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,223,815,223,815,eo.po,,eo,,esperanto,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,223,815,223,815,en_gb.po,,en,gb,english,,united kingdom

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,223,815,223,815,el.po,,el,,greek,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,223,815,223,815,de_ch.po,,de,ch,german,,switzerland

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,223,815,223,815,da.po,,da,,danish,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,223,815,223,815,cy.po,,cy,,welsh,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/cs.po,222,811,796,0,0,1,4,223,815,cs.po,,cs,,czech,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ca.po,218,775,965,0,0,5,40,223,815,ca.po,,ca,,catalan,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,223,815,223,815,bs.po,,bs,,bosnian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,223,815,223,815,brx.po,,brx,,bodo,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,223,815,223,815,br.po,,br,,breton,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,223,815,223,815,bn_in.po,,bn,in,bangla,,india

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bg.po,126,466,515,0,0,97,349,223,815,bg.po,,bg,,bulgarian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,223,815,223,815,ast.po,,ast,,asturian,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,223,815,223,815,as.po,,as,,assamese,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,223,815,223,815,ar.po,,ar,,arabic,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,223,815,223,815,anp.po,,anp,,angika,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,223,815,223,815,am.po,,am,,amharic,,

- blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,223,815,223,815,af.po,,af,,afrikaans,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,143,2095,431,4,92,0,0,147,2187,zh_cn.po,,zh,cn,chinese,,china

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ru/ru.po,147,2187,1704,0,0,0,0,147,2187,ru.po,,ru,,russian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/de/de.po,144,2202,2138,0,0,0,0,144,2202,de.po,,de,,german,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/hu/hu.po,144,2202,1719,0,0,0,0,144,2202,hu.po,,hu,,hungarian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/lv/lv.po,144,2202,1704,0,0,0,0,144,2202,lv.po,,lv,,latvian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/el/el.po,144,2202,2092,0,0,0,0,144,2202,el.po,,el,,greek,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,261,3510,3509,0,0,0,0,261,3510,en_gb.po,,en,gb,english,,united kingdom

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/es/es.po,144,2202,2196,0,0,0,0,144,2202,es.po,,es,,spanish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/id/id.po,144,2202,1944,0,0,0,0,144,2202,id.po,,id,,indonesian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/fi/fi.po,6,29,23,26,208,112,1965,144,2202,fi.po,,fi,,finnish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/bg/bg.po,260,3508,3353,0,0,0,0,260,3508,bg.po,,bg,,bulgarian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ro/ro.po,144,2202,2205,0,0,0,0,144,2202,ro.po,,ro,,romanian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pl/pl.po,144,2202,1723,0,0,0,0,144,2202,pl.po,,pl,,polish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pt/pt.po,144,2202,2190,0,0,0,0,144,2202,pt.po,,pt,,portuguese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/eu/eu.po,261,3510,2710,0,0,0,0,261,3510,eu.po,,eu,,basque,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,110,1173,188,8,118,29,896,147,2187,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ja/ja.po,145,2204,168,0,0,0,0,145,2204,ja.po,,ja,,japanese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/gl/gl.po,147,2187,2099,0,0,0,0,147,2187,gl.po,,gl,,galician,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/fr/fr.po,144,2202,2346,0,0,0,0,144,2202,fr.po,,fr,,french,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,110,1173,188,8,118,29,896,147,2187,zh_tw.po,,zh,tw,chinese,,taiwan

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/te/te.po,10,18,22,0,0,137,2169,147,2187,te.po,,te,,telugu,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ko/ko.po,144,2202,1487,0,0,0,0,144,2202,ko.po,,ko,,korean,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/it/it.po,261,3510,3376,0,0,0,0,261,3510,it.po,,it,,italian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/cs/cs.po,144,2202,1787,0,0,0,0,144,2202,cs.po,,cs,,czech,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/sl/sl.po,147,2187,1760,0,0,0,0,147,2187,sl.po,,sl,,slovenian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,144,2202,2272,0,0,0,0,144,2202,pt_br.po,,pt,br,portuguese,,brazil

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/sv/sv.po,144,2202,2067,0,0,0,0,144,2202,sv.po,,sv,,swedish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ca/ca.po,89,977,1016,0,0,54,1202,143,2179,ca.po,,ca,,catalan,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/eo.po,295,842,819,0,0,673,4704,968,5546,eo.po,,eo,,esperanto,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sr.po,968,5546,5134,0,0,0,0,968,5546,sr.po,,sr,,serbian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nl.po,968,5546,5419,0,0,0,0,968,5546,nl.po,,nl,,dutch,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/cs.po,969,5549,4930,0,0,0,0,969,5549,cs.po,,cs,,czech,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/tr.po,969,5549,4538,0,0,0,0,969,5549,tr.po,,tr,,turkish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mr.po,968,5546,5220,0,0,0,0,968,5546,mr.po,,mr,,marathi,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/he.po,968,5546,4911,0,0,0,0,968,5546,he.po,,he,,hebrew,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/tg.po,968,5546,5738,0,0,0,0,968,5546,tg.po,,tg,,tajik,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bn_in.po,968,5546,6053,0,0,0,0,968,5546,bn_in.po,,bn,in,bangla,,india

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ar.po,946,5182,4531,0,0,22,364,968,5546,ar.po,,ar,,arabic,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/et.po,968,5546,4251,0,0,0,0,968,5546,et.po,,et,,estonian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pl.po,969,5549,4970,0,0,0,0,969,5549,pl.po,,pl,,polish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/uk.po,968,5546,4764,0,0,0,0,968,5546,uk.po,,uk,,ukrainian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en@shaw.po,986,5408,5406,0,0,0,0,986,5408,en@shaw.po,shaw,en,,english,shavian,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gd.po,968,5546,7062,0,0,0,0,968,5546,gd.po,,gd,,scottish gaelic,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/af.po,805,4286,4324,11,129,152,1131,968,5546,af.po,,af,,afrikaans,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/my.po,935,4765,1866,4,18,54,769,993,5552,my.po,,my,,burmese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nn.po,986,5520,5110,3,63,0,0,989,5583,nn.po,,nn,,norwegian nynorsk,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hr.po,969,5549,5030,0,0,0,0,969,5549,hr.po,,hr,,croatian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ast.po,971,5493,5661,0,0,0,0,971,5493,ast.po,,ast,,asturian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mk.po,971,5493,5653,0,0,0,0,971,5493,mk.po,,mk,,macedonian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sr@latin.po,968,5546,5134,0,0,0,0,968,5546,sr@latin.po,latin,sr,,serbian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ku.po,672,2889,3030,26,152,289,2411,987,5452,ku.po,,ku,,kurdish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ca.po,969,5549,6275,0,0,0,0,969,5549,ca.po,,ca,,catalan,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/br.po,984,5393,6173,0,0,2,15,986,5408,br.po,,br,,breton,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/be.po,968,5546,4784,0,0,0,0,968,5546,be.po,,be,,belarusian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fr.po,969,5549,6366,0,0,0,0,969,5549,fr.po,,fr,,french,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en_ca.po,971,5493,5494,0,0,0,0,971,5493,en_ca.po,,en,ca,english,,canada

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_cn.po,968,5546,1589,0,0,0,0,968,5546,zh_cn.po,,zh,cn,chinese,,china

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_hk.po,968,5546,1661,0,0,0,0,968,5546,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sv.po,969,5549,5097,0,0,0,0,969,5549,sv.po,,sv,,swedish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nb.po,969,5549,5123,0,0,0,0,969,5549,nb.po,,nb,,norwegian bokmål,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ca@valencia.po,968,5546,6268,0,0,0,0,968,5546,ca@valencia.po,valencia,ca,,catalan,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bn.po,986,5408,5606,0,0,0,0,986,5408,bn.po,,bn,,bangla,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bg.po,968,5546,6078,0,0,0,0,968,5546,bg.po,,bg,,bulgarian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en_gb.po,968,5546,5558,0,0,0,0,968,5546,en_gb.po,,en,gb,english,,united kingdom

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/it.po,982,5608,5414,0,0,0,0,982,5608,it.po,,it,,italian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nds.po,466,1332,1259,0,0,518,4070,984,5402,nds.po,,nds,,low german,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/oc.po,968,5546,6238,0,0,0,0,968,5546,oc.po,,oc,,occitan,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/es.po,969,5549,6058,0,0,0,0,969,5549,es.po,,es,,spanish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ml.po,968,5546,4199,0,0,0,0,968,5546,ml.po,,ml,,malayalam,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/kk.po,304,921,798,0,0,665,4628,969,5549,kk.po,,kk,,kazakh,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/de.po,969,5549,5351,0,0,0,0,969,5549,de.po,,de,,german,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bs.po,968,5546,5058,0,0,0,0,968,5546,bs.po,,bs,,bosnian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/lt.po,969,5549,4473,0,0,0,0,969,5549,lt.po,,lt,,lithuanian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ja.po,968,5546,1743,0,0,0,0,968,5546,ja.po,,ja,,japanese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_tw.po,968,5546,1661,0,0,0,0,968,5546,zh_tw.po,,zh,tw,chinese,,taiwan

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/te.po,968,5546,4519,0,0,0,0,968,5546,te.po,,te,,telugu,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hi.po,968,5546,6441,0,0,0,0,968,5546,hi.po,,hi,,hindi,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/as.po,968,5546,5755,0,0,0,0,968,5546,as.po,,as,,assamese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fur.po,969,5549,5917,0,0,0,0,969,5549,fur.po,,fur,,friulian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/id.po,969,5549,4998,0,0,0,0,969,5549,id.po,,id,,indonesian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pa.po,968,5546,5994,0,0,0,0,968,5546,pa.po,,pa,,punjabi,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pt_br.po,969,5549,5990,0,0,0,0,969,5549,pt_br.po,,pt,br,portuguese,,brazil

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gu.po,968,5546,5899,0,0,0,0,968,5546,gu.po,,gu,,gujarati,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/el.po,968,5546,5813,0,0,0,0,968,5546,el.po,,el,,greek,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ga.po,495,1562,1688,9,66,476,3904,980,5532,ga.po,,ga,,irish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ne.po,213,476,491,497,2045,259,3028,969,5549,ne.po,,ne,,nepali,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/kn.po,968,5546,4614,0,0,0,0,968,5546,kn.po,,kn,,kannada,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fi.po,968,5546,4099,0,0,0,0,968,5546,fi.po,,fi,,finnish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ro.po,968,5546,5785,0,0,0,0,968,5546,ro.po,,ro,,romanian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/is.po,669,2636,2505,0,0,299,2910,968,5546,is.po,,is,,icelandic,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ms.po,56,256,219,576,1796,354,3356,986,5408,ms.po,,ms,,malay,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ru.po,968,5546,4751,0,0,0,0,968,5546,ru.po,,ru,,russian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/da.po,968,5546,5079,0,0,0,0,968,5546,da.po,,da,,danish,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/eu.po,968,5546,4622,0,0,0,0,968,5546,eu.po,,eu,,basque,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/vi.po,969,5549,7376,0,0,0,0,969,5549,vi.po,,vi,,vietnamese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/dz.po,752,3949,1203,0,0,0,0,752,3949,dz.po,,dz,,dzongkha,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gl.po,968,5546,6224,0,0,0,0,968,5546,gl.po,,gl,,galician,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/lv.po,968,5546,4488,0,0,0,0,968,5546,lv.po,,lv,,latvian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/or.po,968,5546,5396,0,0,0,0,968,5546,or.po,,or,,odia,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/th.po,968,5546,1743,0,0,0,0,968,5546,th.po,,th,,thai,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/km.po,966,5474,1968,5,19,0,0,971,5493,km.po,,km,,khmer,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sl.po,969,5549,5068,0,0,0,0,969,5549,sl.po,,sl,,slovenian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fa.po,968,5546,5951,0,0,0,0,968,5546,fa.po,,fa,,persian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hu.po,968,5546,4597,0,0,0,0,968,5546,hu.po,,hu,,hungarian,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mai.po,133,242,317,0,0,828,5038,961,5280,mai.po,,mai,,maithili,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ta.po,968,5546,4597,0,0,0,0,968,5546,ta.po,,ta,,tamil,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ug.po,977,5515,4331,0,0,0,0,977,5515,ug.po,,ug,,uyghur,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sk.po,969,5549,5121,0,0,0,0,969,5549,sk.po,,sk,,slovak,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pt.po,968,5546,5958,0,0,0,0,968,5546,pt.po,,pt,,portuguese,,

- brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ko.po,968,5546,4229,0,0,0,0,968,5546,ko.po,,ko,,korean,,

- brltty-5.6-32.fc30.src.rpm.stats.csv,messages/zh.po,774,2496,1015,6,34,0,0,780,2530,zh.po,,zh,,chinese,,

- brltty-5.6-32.fc30.src.rpm.stats.csv,messages/fr.po,796,2591,3412,0,0,0,0,796,2591,fr.po,,fr,,french,,

- brltty-5.6-32.fc30.src.rpm.stats.csv,messages/de.po,771,2439,2201,2,9,25,148,798,2596,de.po,,de,,german,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,112,1472,1038,0,0,0,0,112,1472,ko.po,,ko,,korean,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,118,1665,219,1,15,0,0,119,1680,zh_cn.po,,zh,cn,chinese,,china

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,112,1472,1243,0,0,0,0,112,1472,hu.po,,hu,,hungarian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ca/ca.po,118,1652,1870,0,0,0,0,118,1652,ca.po,,ca,,catalan,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,112,1472,1412,0,0,0,0,112,1472,sv.po,,sv,,swedish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,112,1472,1474,0,0,0,0,112,1472,gl.po,,gl,,galician,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,112,1472,1529,0,0,0,0,112,1472,de.po,,de,,german,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,115,1705,1379,0,0,0,0,115,1705,ru.po,,ru,,russian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,112,1472,1575,0,0,0,0,112,1472,es.po,,es,,spanish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,112,1472,1179,0,0,0,0,112,1472,pl.po,,pl,,polish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,112,1472,1569,0,0,0,0,112,1472,pt_br.po,,pt,br,portuguese,,brazil

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,112,1472,1302,0,0,0,0,112,1472,cs.po,,cs,,czech,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,112,1472,1632,0,0,0,0,112,1472,fr.po,,fr,,french,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,112,1472,1626,0,0,0,0,112,1472,el.po,,el,,greek,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/id/id.po,112,1472,1291,0,0,0,0,112,1472,id.po,,id,,indonesian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/fi/fi.po,79,877,606,26,472,7,120,112,1469,fi.po,,fi,,finnish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/nl/nl.po,112,1472,1557,0,0,0,0,112,1472,nl.po,,nl,,dutch,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/sl/sl.po,114,1707,1468,0,0,0,0,114,1707,sl.po,,sl,,slovenian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,122,614,580,0,0,0,0,122,614,id.po,,id,,indonesian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,120,613,644,0,0,0,0,120,613,pa.po,,pa,,punjabi,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,120,613,509,0,0,0,0,120,613,te.po,,te,,telugu,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,123,614,690,0,0,0,0,123,614,oc.po,,oc,,occitan,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,123,614,603,0,0,0,0,123,614,af.po,,af,,afrikaans,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,123,614,565,0,0,0,0,123,614,sk.po,,sk,,slovak,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,120,651,671,0,0,0,0,120,651,bn.po,,bn,,bangla,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,123,614,672,0,0,0,0,123,614,hi.po,,hi,,hindi,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,123,614,627,0,0,0,0,123,614,en_gb.po,,en,gb,english,,united kingdom

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,120,651,503,0,0,0,0,120,651,ka.po,,ka,,georgian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,76,238,325,32,244,12,73,120,555,ga.po,,ga,,irish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,120,613,500,0,0,0,0,120,613,ta.po,,ta,,tamil,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,122,614,748,0,0,0,0,122,614,vi.po,,vi,,vietnamese,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,122,614,471,0,0,0,0,122,614,tr.po,,tr,,turkish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,123,614,692,0,0,0,0,123,614,ca.po,,ca,,catalan,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,123,614,168,0,0,0,0,123,614,th.po,,th,,thai,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,122,614,646,0,0,0,0,122,614,ro.po,,ro,,romanian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,122,614,438,0,0,0,0,122,614,et.po,,et,,estonian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,120,613,502,0,0,0,0,120,613,kn.po,,kn,,kannada,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,122,614,503,0,0,0,0,122,614,lt.po,,lt,,lithuanian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,90,412,381,0,0,9,115,99,527,be@latin.po,latin,be,,belarusian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,95,372,333,16,197,9,82,120,651,ms.po,,ms,,malay,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,123,614,692,0,0,0,0,123,614,ca@valencia.po,valencia,ca,,catalan,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,114,592,593,6,59,0,0,120,651,en@shaw.po,shaw,en,,english,shavian,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,103,530,538,0,0,0,0,103,530,nn.po,,nn,,norwegian nynorsk,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,122,614,608,0,0,0,0,122,614,sr.po,,sr,,serbian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,120,613,577,0,0,0,0,120,613,or.po,,or,,odia,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,122,614,657,0,0,0,0,122,614,nl.po,,nl,,dutch,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,123,614,609,0,0,0,0,123,614,sr@latin.po,latin,sr,,serbian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,119,530,502,0,0,4,84,123,614,ar.po,,ar,,arabic,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,122,614,711,0,0,0,0,122,614,gl.po,,gl,,galician,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,123,614,591,0,0,0,0,123,614,gu.po,,gu,,gujarati,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,119,550,599,0,0,0,0,119,550,mk.po,,mk,,macedonian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,122,614,564,0,0,0,0,122,614,sl.po,,sl,,slovenian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,122,614,711,0,0,0,0,122,614,es.po,,es,,spanish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,122,614,505,0,0,0,0,122,614,hu.po,,hu,,hungarian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,122,614,512,0,0,0,0,122,614,lv.po,,lv,,latvian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,122,614,711,0,0,0,0,122,614,fr.po,,fr,,french,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,120,613,513,0,0,0,0,120,613,mr.po,,mr,,marathi,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,123,614,531,0,0,0,0,123,614,ne.po,,ne,,nepali,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,122,614,593,0,0,0,0,122,614,nb.po,,nb,,norwegian bokmål,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,123,614,477,0,0,0,0,123,614,ml.po,,ml,,malayalam,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,125,574,442,0,0,0,0,125,574,ug.po,,ug,,uyghur,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,120,613,578,0,0,0,0,120,613,bs.po,,bs,,bosnian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,120,613,581,0,0,0,0,120,613,as.po,,as,,assamese,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,123,614,205,0,0,0,0,123,614,zh_cn.po,,zh,cn,chinese,,china

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,123,614,561,0,0,0,0,123,614,bg.po,,bg,,bulgarian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,118,538,574,0,0,1,12,119,550,ast.po,,ast,,asturian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,122,614,603,0,0,0,0,122,614,it.po,,it,,italian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,120,613,608,0,0,0,0,120,613,tg.po,,tg,,tajik,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,121,630,154,0,0,0,0,121,630,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,54,104,96,0,0,68,556,122,660,nds.po,,nds,,low german,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,123,614,617,0,0,0,0,123,614,fa.po,,fa,,persian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,123,614,655,0,0,0,0,123,614,pt.po,,pt,,portuguese,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,122,614,574,0,0,0,0,122,614,eo.po,,eo,,esperanto,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,122,614,707,0,0,0,0,122,614,pt_br.po,,pt,br,portuguese,,brazil

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zu.po,70,185,164,2,109,0,0,72,294,zu.po,,zu,,zulu,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,122,614,153,0,0,0,0,122,614,zh_tw.po,,zh,tw,chinese,,taiwan

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,123,614,566,0,0,0,0,123,614,is.po,,is,,icelandic,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,122,614,446,0,0,0,0,122,614,ko.po,,ko,,korean,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,122,614,573,0,0,0,0,122,614,pl.po,,pl,,polish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,123,614,667,0,0,0,0,123,614,an.po,,an,,aragonese,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,71,193,178,14,44,24,267,109,504,xh.po,,xh,,xhosa,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,72,333,367,0,0,7,56,79,389,ps.po,,ps,,pashto,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,122,614,575,0,0,0,0,122,614,cs.po,,cs,,czech,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lo.po,123,614,182,0,0,0,0,123,614,lo.po,,lo,,lao,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,123,614,608,0,0,0,0,123,614,he.po,,he,,hebrew,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,119,550,193,0,0,0,0,119,550,km.po,,km,,khmer,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,123,614,520,0,0,0,0,123,614,eu.po,,eu,,basque,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,120,613,602,0,0,0,0,120,613,bn_in.po,,bn,in,bangla,,india

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,122,614,667,0,0,0,0,122,614,el.po,,el,,greek,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,122,614,663,0,0,0,0,122,614,fur.po,,fur,,friulian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,99,527,567,0,0,0,0,99,527,sq.po,,sq,,albanian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,122,614,560,0,0,0,0,122,614,hr.po,,hr,,croatian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,92,398,415,0,0,7,128,99,526,ku.po,,ku,,kurdish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,125,576,441,0,0,0,0,125,576,ky.po,,ky,,kyrgyz,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,122,614,423,0,0,0,0,122,614,fi.po,,fi,,finnish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,122,614,559,0,0,0,0,122,614,da.po,,da,,danish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,59,304,183,0,0,0,0,59,304,dz.po,,dz,,dzongkha,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,123,614,502,0,0,0,0,123,614,be.po,,be,,belarusian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,123,614,518,0,0,0,0,123,614,uk.po,,uk,,ukrainian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,122,614,580,0,0,0,0,122,614,sv.po,,sv,,swedish,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,122,614,511,0,0,0,0,122,614,ru.po,,ru,,russian,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,29,146,167,0,0,93,513,122,659,mai.po,,mai,,maithili,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,122,614,184,0,0,0,0,122,614,ja.po,,ja,,japanese,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,122,614,472,0,0,0,0,122,614,kk.po,,kk,,kazakh,,

- cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,122,614,611,0,0,0,0,122,614,de.po,,de,,german,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/zh_tw.po,94,503,265,0,0,9,52,103,555,zh_tw.po,,zh,tw,chinese,,taiwan

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/zh_cn.po,96,524,263,0,0,7,31,103,555,zh_cn.po,,zh,cn,chinese,,china

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/vi.po,72,346,441,0,0,31,209,103,555,vi.po,,vi,,vietnamese,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ur.po,82,400,422,0,0,21,155,103,555,ur.po,,ur,,urdu,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/uk.po,96,524,503,0,0,7,31,103,555,uk.po,,uk,,ukrainian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/tr.po,92,480,410,4,44,7,31,103,555,tr.po,,tr,,turkish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/th.po,29,180,103,0,0,74,375,103,555,th.po,,th,,thai,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/tg.po,91,477,531,0,0,12,78,103,555,tg.po,,tg,,tajik,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/te.po,94,503,418,0,0,9,52,103,555,te.po,,te,,telugu,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ta.po,94,503,434,0,0,9,52,103,555,ta.po,,ta,,tamil,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sv.po,96,524,539,0,0,7,31,103,555,sv.po,,sv,,swedish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sr@latin.po,88,438,418,0,0,15,117,103,555,sr@latin.po,latin,sr,,serbian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sr.po,96,524,499,0,0,7,31,103,555,sr.po,,sr,,serbian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sq.po,95,519,567,1,5,7,31,103,555,sq.po,,sq,,albanian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sl.po,84,413,410,0,0,19,142,103,555,sl.po,,sl,,slovenian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sk.po,96,524,519,0,0,7,31,103,555,sk.po,,sk,,slovak,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/si.po,12,38,38,0,0,91,517,103,555,si.po,,si,,sinhala,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ru.po,96,524,482,0,0,7,31,103,555,ru.po,,ru,,russian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,96,513,96,513,ro.po,,ro,,romanian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pt_br.po,96,524,570,0,0,7,31,103,555,pt_br.po,,pt,br,portuguese,,brazil

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pt.po,96,524,601,0,0,7,31,103,555,pt.po,,pt,,portuguese,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pl.po,96,524,543,0,0,7,31,103,555,pl.po,,pl,,polish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pa.po,92,480,555,0,0,11,75,103,555,pa.po,,pa,,punjabi,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/or.po,94,503,568,0,0,9,52,103,555,or.po,,or,,odia,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nn.po,6,6,6,0,0,97,549,103,555,nn.po,,nn,,norwegian nynorsk,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nl.po,96,524,545,0,0,7,31,103,555,nl.po,,nl,,dutch,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nds.po,6,6,6,0,0,97,549,103,555,nds.po,,nds,,low german,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nb.po,92,480,491,0,0,11,75,103,555,nb.po,,nb,,norwegian bokmål,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,93,487,93,487,my.po,,my,,burmese,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ms.po,84,413,405,0,0,19,142,103,555,ms.po,,ms,,malay,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mr.po,94,503,482,0,0,9,52,103,555,mr.po,,mr,,marathi,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ml.po,96,524,440,0,0,7,31,103,555,ml.po,,ml,,malayalam,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mk.po,84,413,463,0,0,19,142,103,555,mk.po,,mk,,macedonian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mai.po,88,438,509,0,0,15,117,103,555,mai.po,,mai,,maithili,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/lv.po,91,477,428,0,0,12,78,103,555,lv.po,,lv,,latvian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,93,487,93,487,lo.po,,lo,,lao,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,93,487,93,487,ku.po,,ku,,kurdish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ko.po,96,524,467,0,0,7,31,103,555,ko.po,,ko,,korean,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/kn.po,94,503,464,0,0,9,52,103,555,kn.po,,kn,,kannada,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/km.po,96,524,301,0,0,7,31,103,555,km.po,,km,,khmer,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ka.po,55,237,221,0,0,48,318,103,555,ka.po,,ka,,georgian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ja.po,95,516,295,1,8,7,31,103,555,ja.po,,ja,,japanese,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/it.po,94,503,531,0,0,9,52,103,555,it.po,,it,,italian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/is.po,91,477,481,0,0,12,78,103,555,is.po,,is,,icelandic,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/id.po,94,503,506,0,0,9,52,103,555,id.po,,id,,indonesian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ia.po,94,503,546,0,0,9,52,103,555,ia.po,,ia,,interlingua,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,93,487,93,487,hy.po,,hy,,armenian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hu.po,94,503,503,0,0,9,52,103,555,hu.po,,hu,,hungarian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hr.po,84,413,412,0,0,19,142,103,555,hr.po,,hr,,croatian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hi.po,94,503,601,0,0,9,52,103,555,hi.po,,hi,,hindi,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,96,513,96,513,he.po,,he,,hebrew,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/gu.po,94,503,547,0,0,9,52,103,555,gu.po,,gu,,gujarati,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/gl.po,94,503,579,0,0,9,52,103,555,gl.po,,gl,,galician,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fr.po,96,524,591,0,0,7,31,103,555,fr.po,,fr,,french,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fi.po,96,524,460,0,0,7,31,103,555,fi.po,,fi,,finnish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fa.po,91,477,513,0,0,12,78,103,555,fa.po,,fa,,persian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/eu.po,6,6,6,0,0,97,549,103,555,eu.po,,eu,,basque,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/et.po,92,480,423,0,0,11,75,103,555,et.po,,et,,estonian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/es.po,96,524,580,0,0,7,31,103,555,es.po,,es,,spanish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/en_gb.po,88,438,438,0,0,15,117,103,555,en_gb.po,,en,gb,english,,united kingdom

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/el.po,94,503,517,0,0,9,52,103,555,el.po,,el,,greek,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/de.po,96,524,553,0,0,7,31,103,555,de.po,,de,,german,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/da.po,92,480,481,0,0,11,75,103,555,da.po,,da,,danish,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/cy.po,84,413,438,0,0,19,142,103,555,cy.po,,cy,,welsh,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/cs.po,96,524,482,0,0,7,31,103,555,cs.po,,cs,,czech,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ca.po,96,524,641,0,0,7,31,103,555,ca.po,,ca,,catalan,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bs.po,82,400,398,0,0,21,155,103,555,bs.po,,bs,,bosnian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bn_in.po,92,480,488,0,0,11,75,103,555,bn_in.po,,bn,in,bangla,,india

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bn.po,91,477,485,0,0,12,78,103,555,bn.po,,bn,,bangla,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bg.po,95,522,554,0,0,8,33,103,555,bg.po,,bg,,bulgarian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/be.po,81,393,372,0,0,22,162,103,555,be.po,,be,,belarusian,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bal.po,84,413,436,0,0,19,142,103,555,bal.po,,bal,,baluchi,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/as.po,94,503,505,0,0,9,52,103,555,as.po,,as,,assamese,,

- chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ar.po,90,453,442,0,0,13,102,103,555,ar.po,,ar,,arabic,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/tr.po,49,313,288,0,0,0,0,49,313,tr.po,,tr,,turkish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sv.po,49,313,304,0,0,0,0,49,313,sv.po,,sv,,swedish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sr.po,49,313,315,0,0,0,0,49,313,sr.po,,sr,,serbian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sl.po,13,14,15,19,59,14,235,46,308,sl.po,,sl,,slovenian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sk.po,47,329,354,0,0,0,0,47,329,sk.po,,sk,,slovak,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ru.po,49,313,292,0,0,0,0,49,313,ru.po,,ru,,russian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pt_br.po,49,313,390,0,0,0,0,49,313,pt_br.po,,pt,br,portuguese,,brazil

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pt.po,11,13,18,9,31,26,264,46,308,pt.po,,pt,,portuguese,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pl.po,49,313,304,0,0,0,0,49,313,pl.po,,pl,,polish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/oc.po,44,184,251,2,124,0,0,46,308,oc.po,,oc,,occitan,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/nl.po,49,313,333,0,0,0,0,49,313,nl.po,,nl,,dutch,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/nb.po,20,30,29,0,0,27,299,47,329,nb.po,,nb,,norwegian bokmål,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ko.po,46,331,325,0,0,0,0,46,331,ko.po,,ko,,korean,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/it.po,47,329,388,0,0,0,0,47,329,it.po,,it,,italian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/id.po,49,313,314,0,0,0,0,49,313,id.po,,id,,indonesian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/hu.po,49,313,306,0,0,0,0,49,313,hu.po,,hu,,hungarian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/hr.po,49,313,301,0,0,0,0,49,313,hr.po,,hr,,croatian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/gl.po,47,329,418,0,0,0,0,47,329,gl.po,,gl,,galician,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/gd.po,46,331,444,0,0,0,0,46,331,gd.po,,gd,,scottish gaelic,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/fr.po,46,331,436,0,0,0,0,46,331,fr.po,,fr,,french,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/fi.po,38,139,121,3,61,8,113,49,313,fi.po,,fi,,finnish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/et.po,40,162,164,0,0,9,151,49,313,et.po,,et,,estonian,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/es.po,49,313,394,0,0,0,0,49,313,es.po,,es,,spanish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/el.po,28,109,135,2,32,16,167,46,308,el.po,,el,,greek,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/de.po,49,313,331,0,0,0,0,49,313,de.po,,de,,german,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/da.po,49,313,312,0,0,0,0,49,313,da.po,,da,,danish,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/cs.po,49,313,317,0,0,0,0,49,313,cs.po,,cs,,czech,,

- chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ca.po,46,331,412,0,0,0,0,46,331,ca.po,,ca,,catalan,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ro.po,514,2335,2272,95,459,66,263,675,3057,ro.po,,ro,,romanian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/eo.po,287,983,904,71,295,317,1779,675,3057,eo.po,,eo,,esperanto,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sl.po,675,3057,2589,0,0,0,0,675,3057,sl.po,,sl,,slovenian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sv.po,675,3057,2402,0,0,0,0,675,3057,sv.po,,sv,,swedish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ps.po,1,1,1,0,0,674,3056,675,3057,ps.po,,ps,,pashto,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/it.po,675,3057,3074,0,0,0,0,675,3057,it.po,,it,,italian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/bg.po,675,3057,3108,0,0,0,0,675,3057,bg.po,,bg,,bulgarian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ca.po,675,3057,3514,0,0,0,0,675,3057,ca.po,,ca,,catalan,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sr.po,675,3057,2708,0,0,0,0,675,3057,sr.po,,sr,,serbian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/lv.po,675,3057,2351,0,0,0,0,675,3057,lv.po,,lv,,latvian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pt.po,675,3057,3395,0,0,0,0,675,3057,pt.po,,pt,,portuguese,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sr@latin.po,675,3057,2710,0,0,0,0,675,3057,sr@latin.po,latin,sr,,serbian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/kk.po,67,113,119,0,0,608,2944,675,3057,kk.po,,kk,,kazakh,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fa.po,1,1,1,0,0,674,3056,675,3057,fa.po,,fa,,persian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/lt.po,675,3057,2240,0,0,0,0,675,3057,lt.po,,lt,,lithuanian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/kn.po,304,928,732,32,169,339,1960,675,3057,kn.po,,kn,,kannada,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/mk.po,521,2366,2379,93,447,61,244,675,3057,mk.po,,mk,,macedonian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/gl.po,675,3057,3384,0,0,0,0,675,3057,gl.po,,gl,,galician,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fr.po,675,3057,3443,0,0,0,0,675,3057,fr.po,,fr,,french,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/or.po,307,945,838,62,251,306,1861,675,3057,or.po,,or,,odia,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/an.po,672,3030,3299,3,27,0,0,675,3057,an.po,,an,,aragonese,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/tr.po,527,2223,1743,35,202,113,632,675,3057,tr.po,,tr,,turkish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hr.po,17,58,62,1,3,657,2996,675,3057,hr.po,,hr,,croatian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_hk.po,669,3022,919,3,27,3,8,675,3057,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/de.po,675,3057,2821,0,0,0,0,675,3057,de.po,,de,,german,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/id.po,675,3057,2573,0,0,0,0,675,3057,id.po,,id,,indonesian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/az_ir.po,1,1,1,0,0,674,3056,675,3057,az_ir.po,,az,ir,azerbaijani,,iran

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fur.po,174,587,622,0,0,501,2470,675,3057,fur.po,,fur,,friulian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/be.po,675,3057,2357,0,0,0,0,675,3057,be.po,,be,,belarusian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pt_br.po,675,3057,3290,0,0,0,0,675,3057,pt_br.po,,pt,br,portuguese,,brazil

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ja.po,653,2947,743,14,85,8,25,675,3057,ja.po,,ja,,japanese,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ru.po,675,3057,2485,0,0,0,0,675,3057,ru.po,,ru,,russian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fi.po,44,122,91,6,34,625,2901,675,3057,fi.po,,fi,,finnish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/nl.po,439,1893,1867,128,624,108,540,675,3057,nl.po,,nl,,dutch,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pa.po,66,142,142,15,51,594,2864,675,3057,pa.po,,pa,,punjabi,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ar.po,1,1,1,0,0,674,3056,675,3057,ar.po,,ar,,arabic,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/eu.po,675,3057,2345,0,0,0,0,675,3057,eu.po,,eu,,basque,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ca@valencia.po,669,3022,3468,3,27,3,8,675,3057,ca@valencia.po,valencia,ca,,catalan,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pl.po,675,3057,2599,0,0,0,0,675,3057,pl.po,,pl,,polish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ast.po,515,2319,2411,93,441,67,297,675,3057,ast.po,,ast,,asturian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/yi.po,1,1,1,0,0,674,3056,675,3057,yi.po,,yi,,yiddish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ml.po,124,296,240,3,15,548,2746,675,3057,ml.po,,ml,,malayalam,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/bs.po,672,3030,2656,3,27,0,0,675,3057,bs.po,,bs,,bosnian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_cn.po,675,3057,902,0,0,0,0,675,3057,zh_cn.po,,zh,cn,chinese,,china

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/oc.po,675,3057,3457,0,0,0,0,675,3057,oc.po,,oc,,occitan,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/cs.po,675,3057,2742,0,0,0,0,675,3057,cs.po,,cs,,czech,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/as.po,669,3022,2472,3,27,3,8,675,3057,as.po,,as,,assamese,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ur.po,1,1,1,0,0,674,3056,675,3057,ur.po,,ur,,urdu,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sk.po,675,3057,2724,0,0,0,0,675,3057,sk.po,,sk,,slovak,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/te.po,653,2947,2268,14,85,8,25,675,3057,te.po,,te,,telugu,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hi.po,653,2947,2999,14,85,8,25,675,3057,hi.po,,hi,,hindi,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_tw.po,675,3057,932,0,0,0,0,675,3057,zh_tw.po,,zh,tw,chinese,,taiwan

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ko.po,16,50,41,0,0,659,3007,675,3057,ko.po,,ko,,korean,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ug.po,153,372,339,1,2,521,2683,675,3057,ug.po,,ug,,uyghur,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hu.po,675,3057,2541,0,0,0,0,675,3057,hu.po,,hu,,hungarian,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/da.po,675,3057,2397,0,0,0,0,675,3057,da.po,,da,,danish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/es.po,675,3057,3534,0,0,0,0,675,3057,es.po,,es,,spanish,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/he.po,675,3057,3057,0,0,0,0,675,3057,he.po,,he,,hebrew,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/nb.po,351,1069,849,19,110,305,1878,675,3057,nb.po,,nb,,norwegian bokmål,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/el.po,675,3057,2998,0,0,0,0,675,3057,el.po,,el,,greek,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/en_gb.po,675,3057,3057,0,0,0,0,675,3057,en_gb.po,,en,gb,english,,united kingdom

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/km.po,527,2389,733,88,428,60,240,675,3057,km.po,,km,,khmer,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ta.po,515,2319,1645,93,441,67,297,675,3057,ta.po,,ta,,tamil,,

- clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/uk.po,672,3030,2651,3,27,0,0,675,3057,uk.po,,uk,,ukrainian,,

- clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/ja.po,1,5,4,0,0,0,0,1,5,ja.po,,ja,,japanese,,

- clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/pl.po,1,5,5,0,0,0,0,1,5,pl.po,,pl,,polish,,

- clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/zh_cn.po,1,5,3,0,0,0,0,1,5,zh_cn.po,,zh,cn,chinese,,china

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/th.po,80,393,144,0,0,0,0,80,393,th.po,,th,,thai,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ca.po,76,378,523,0,0,0,0,76,378,ca.po,,ca,,catalan,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ta.po,76,378,346,0,0,0,0,76,378,ta.po,,ta,,tamil,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/he.po,76,378,378,0,0,0,0,76,378,he.po,,he,,hebrew,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_tw.po,76,378,141,0,0,0,0,76,378,zh_tw.po,,zh,tw,chinese,,taiwan

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/bg.po,80,393,589,0,0,0,0,80,393,bg.po,,bg,,bulgarian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pl.po,80,393,389,0,0,0,0,80,393,pl.po,,pl,,polish,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ca@valencia.po,76,378,523,0,0,0,0,76,378,ca@valencia.po,valencia,ca,,catalan,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/nb.po,14,39,42,0,0,66,354,80,393,nb.po,,nb,,norwegian bokmål,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/bs.po,76,378,382,0,0,0,0,76,378,bs.po,,bs,,bosnian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pa.po,25,62,63,0,0,51,316,76,378,pa.po,,pa,,punjabi,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/hu.po,76,378,339,0,0,0,0,76,378,hu.po,,hu,,hungarian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/cs.po,80,393,414,0,0,0,0,80,393,cs.po,,cs,,czech,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/nl.po,4,15,11,0,0,71,346,75,361,nl.po,,nl,,dutch,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/vi.po,4,15,17,0,0,71,346,75,361,vi.po,,vi,,vietnamese,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/eu.po,80,393,369,0,0,0,0,80,393,eu.po,,eu,,basque,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sv.po,80,393,340,0,0,0,0,80,393,sv.po,,sv,,swedish,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sr@latin.po,80,393,389,0,0,0,0,80,393,sr@latin.po,latin,sr,,serbian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ko.po,80,393,353,0,0,0,0,80,393,ko.po,,ko,,korean,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ru.po,76,378,343,0,0,0,0,76,378,ru.po,,ru,,russian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/an.po,80,393,501,0,0,0,0,80,393,an.po,,an,,aragonese,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/kn.po,4,15,15,0,0,71,346,75,361,kn.po,,kn,,kannada,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/lv.po,80,393,344,0,0,0,0,80,393,lv.po,,lv,,latvian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/id.po,80,393,388,0,0,0,0,80,393,id.po,,id,,indonesian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/es.po,76,378,508,0,0,0,0,76,378,es.po,,es,,spanish,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pt.po,80,393,464,0,0,0,0,80,393,pt.po,,pt,,portuguese,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/hi.po,76,378,510,0,0,0,0,76,378,hi.po,,hi,,hindi,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/gl.po,77,370,496,0,0,0,0,77,370,gl.po,,gl,,galician,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/el.po,80,393,410,0,0,0,0,80,393,el.po,,el,,greek,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/fr.po,80,393,531,0,0,0,0,80,393,fr.po,,fr,,french,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/de.po,76,378,323,0,0,0,0,76,378,de.po,,de,,german,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/km.po,71,320,136,4,41,0,0,75,361,km.po,,km,,khmer,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_cn.po,80,393,164,0,0,0,0,80,393,zh_cn.po,,zh,cn,chinese,,china

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sr.po,80,393,389,0,0,0,0,80,393,sr.po,,sr,,serbian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/be.po,80,393,361,0,0,0,0,80,393,be.po,,be,,belarusian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sk.po,80,393,436,0,0,0,0,80,393,sk.po,,sk,,slovak,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/fa.po,4,15,18,0,0,71,346,75,361,fa.po,,fa,,persian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/it.po,76,378,455,0,0,0,0,76,378,it.po,,it,,italian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ug.po,69,295,332,0,0,11,98,80,393,ug.po,,ug,,uyghur,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ja.po,76,378,119,0,0,0,0,76,378,ja.po,,ja,,japanese,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/te.po,76,378,349,0,0,0,0,76,378,te.po,,te,,telugu,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sl.po,76,378,358,0,0,0,0,76,378,sl.po,,sl,,slovenian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/as.po,76,378,418,0,0,0,0,76,378,as.po,,as,,assamese,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/en_ca.po,4,15,15,0,0,71,346,75,361,en_ca.po,,en,ca,english,,canada

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/uk.po,80,393,360,0,0,0,0,80,393,uk.po,,uk,,ukrainian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/en_gb.po,76,378,378,0,0,0,0,76,378,en_gb.po,,en,gb,english,,united kingdom

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/eo.po,7,15,17,0,0,66,340,73,355,eo.po,,eo,,esperanto,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ml.po,2,4,4,0,0,74,374,76,378,ml.po,,ml,,malayalam,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/oc.po,80,393,535,0,0,0,0,80,393,oc.po,,oc,,occitan,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ast.po,4,15,21,0,0,71,346,75,361,ast.po,,ast,,asturian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_hk.po,76,378,141,0,0,0,0,76,378,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/lt.po,80,393,345,0,0,0,0,80,393,lt.po,,lt,,lithuanian,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pt_br.po,80,393,515,0,0,0,0,80,393,pt_br.po,,pt,br,portuguese,,brazil

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/or.po,4,15,19,0,0,71,346,75,361,or.po,,or,,odia,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ar.po,4,15,15,0,0,71,346,75,361,ar.po,,ar,,arabic,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/tr.po,80,393,374,0,0,0,0,80,393,tr.po,,tr,,turkish,,

- cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/da.po,76,378,319,0,0,0,0,76,378,da.po,,da,,danish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,253,1990,546,0,0,0,0,253,1990,zh_tw.po,,zh,tw,chinese,,taiwan

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,253,1990,504,0,0,0,0,253,1990,zh_cn.po,,zh,cn,chinese,,china

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/uk.po,253,1990,1960,0,0,0,0,253,1990,uk.po,,uk,,ukrainian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/tr.po,211,1928,1622,0,0,42,62,253,1990,tr.po,,tr,,turkish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/th.po,2,11,4,0,0,97,377,99,388,th.po,,th,,thai,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ta.po,8,25,22,0,0,91,363,99,388,ta.po,,ta,,tamil,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sv.po,253,1990,1728,0,0,0,0,253,1990,sv.po,,sv,,swedish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,8,25,32,0,0,91,363,99,388,sr@latin.po,latin,sr,,serbian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sr.po,211,1928,1817,0,0,42,62,253,1990,sr.po,,sr,,serbian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sl.po,127,522,496,0,0,126,1468,253,1990,sl.po,,sl,,slovenian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sk.po,89,334,319,0,0,164,1656,253,1990,sk.po,,sk,,slovak,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ru.po,253,1990,1910,0,0,0,0,253,1990,ru.po,,ru,,russian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ro.po,75,303,343,0,0,178,1687,253,1990,ro.po,,ro,,romanian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,253,1990,2325,0,0,0,0,253,1990,pt_br.po,,pt,br,portuguese,,brazil

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pt.po,111,372,427,0,0,142,1618,253,1990,pt.po,,pt,,portuguese,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pl.po,253,1990,1896,0,0,0,0,253,1990,pl.po,,pl,,polish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pa.po,8,25,26,0,0,91,363,99,388,pa.po,,pa,,punjabi,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/or.po,8,25,29,0,0,91,363,99,388,or.po,,or,,odia,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/oc.po,120,432,520,0,0,133,1558,253,1990,oc.po,,oc,,occitan,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/nl.po,97,386,417,0,0,156,1604,253,1990,nl.po,,nl,,dutch,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/nb.po,150,673,565,0,0,103,1317,253,1990,nb.po,,nb,,norwegian bokmål,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/mr.po,8,25,23,0,0,91,363,99,388,mr.po,,mr,,marathi,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ml.po,8,25,24,0,0,91,363,99,388,ml.po,,ml,,malayalam,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/lv.po,121,497,401,0,0,132,1493,253,1990,lv.po,,lv,,latvian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/lt.po,59,209,193,0,0,194,1781,253,1990,lt.po,,lt,,lithuanian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ko.po,253,1990,1519,0,0,0,0,253,1990,ko.po,,ko,,korean,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/kn.po,8,25,25,0,0,91,363,99,388,kn.po,,kn,,kannada,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/kk.po,5,5,5,0,0,198,1880,203,1885,kk.po,,kk,,kazakh,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ja.po,134,545,175,0,0,119,1445,253,1990,ja.po,,ja,,japanese,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/it.po,253,1990,2088,0,0,0,0,253,1990,it.po,,it,,italian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/is.po,132,448,399,0,0,121,1542,253,1990,is.po,,is,,icelandic,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/id.po,215,837,785,0,0,38,1153,253,1990,id.po,,id,,indonesian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hu.po,253,1990,1682,0,0,0,0,253,1990,hu.po,,hu,,hungarian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hr.po,166,899,803,0,0,87,1091,253,1990,hr.po,,hr,,croatian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hi.po,8,25,28,0,0,91,363,99,388,hi.po,,hi,,hindi,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/he.po,38,162,135,0,0,215,1828,253,1990,he.po,,he,,hebrew,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/gu.po,8,25,25,0,0,91,363,99,388,gu.po,,gu,,gujarati,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/gl.po,151,630,726,0,0,102,1360,253,1990,gl.po,,gl,,galician,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fur.po,179,753,888,0,0,74,1237,253,1990,fur.po,,fur,,friulian,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fr.po,148,732,832,0,0,105,1258,253,1990,fr.po,,fr,,french,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fi.po,43,161,100,0,0,210,1829,253,1990,fi.po,,fi,,finnish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/eu.po,49,129,105,0,0,204,1861,253,1990,eu.po,,eu,,basque,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/es.po,197,1850,2073,0,0,56,140,253,1990,es.po,,es,,spanish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/eo.po,5,5,5,0,0,198,1880,203,1885,eo.po,,eo,,esperanto,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,252,1986,1986,0,0,1,4,253,1990,en_gb.po,,en,gb,english,,united kingdom

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/el.po,203,1885,2153,0,0,50,105,253,1990,el.po,,el,,greek,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/de.po,246,1865,1697,0,0,7,125,253,1990,de.po,,de,,german,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/da.po,253,1990,1767,0,0,0,0,253,1990,da.po,,da,,danish,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/cs.po,253,1990,1889,0,0,0,0,253,1990,cs.po,,cs,,czech,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ca.po,253,1990,2435,0,0,0,0,253,1990,ca.po,,ca,,catalan,,

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,8,25,34,0,0,91,363,99,388,bn_in.po,,bn,in,bangla,,india

- colord-1.4.4-1.fc30.src.rpm.stats.csv,po/as.po,8,25,29,0,0,91,363,99,388,as.po,,as,,assamese,,

- colord-gtk-0.1.26-11.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,1,5,1,5,en_gb.po,,en,gb,english,,united kingdom

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/fr.po,1801,21330,25058,0,0,0,0,1801,21330,fr.po,,fr,,french,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/lg.po,1044,9115,13604,487,8924,270,3291,1801,21330,lg.po,,lg,,ganda,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/af.po,341,1519,1740,454,2568,1006,17243,1801,21330,af.po,,af,,afrikaans,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/da.po,1801,21330,20361,0,0,0,0,1801,21330,da.po,,da,,danish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/uk.po,1801,21330,21047,0,0,0,0,1801,21330,uk.po,,uk,,ukrainian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/eu.po,384,1329,1394,846,12704,571,7297,1801,21330,eu.po,,eu,,basque,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ca.po,1739,20201,25537,40,882,22,247,1801,21330,ca.po,,ca,,catalan,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ru.po,1801,21330,20782,0,0,0,0,1801,21330,ru.po,,ru,,russian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/de.po,1682,19179,18992,81,1683,38,468,1801,21330,de.po,,de,,german,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/bg.po,1216,12550,14074,312,5079,273,3701,1801,21330,bg.po,,bg,,bulgarian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/kk.po,21,36,35,143,471,1637,20823,1801,21330,kk.po,,kk,,kazakh,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/el.po,175,948,1147,711,5571,915,14811,1801,21330,el.po,,el,,greek,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/id.po,1012,8436,8509,518,9522,271,3372,1801,21330,id.po,,id,,indonesian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ga.po,820,6614,7401,588,9942,393,4774,1801,21330,ga.po,,ga,,irish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ms.po,259,1260,1284,543,3921,999,16149,1801,21330,ms.po,,ms,,malay,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/fi.po,876,6281,5417,555,9689,370,5360,1801,21330,fi.po,,fi,,finnish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/nl.po,1679,19048,19644,81,1683,41,599,1801,21330,nl.po,,nl,,dutch,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/hr.po,1801,21330,21709,0,0,0,0,1801,21330,hr.po,,hr,,croatian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/zh_tw.po,371,2618,1246,669,8497,761,10215,1801,21330,zh_tw.po,,zh,tw,chinese,,taiwan

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/hu.po,1739,20201,19987,40,882,22,247,1801,21330,hu.po,,hu,,hungarian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sr.po,1682,19179,18890,81,1683,38,468,1801,21330,sr.po,,sr,,serbian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sv.po,1760,20567,19823,28,639,13,124,1801,21330,sv.po,,sv,,swedish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pt_br.po,1801,21330,24672,0,0,0,0,1801,21330,pt_br.po,,pt,br,portuguese,,brazil

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/eo.po,1243,9987,9741,177,2326,381,9017,1801,21330,eo.po,,eo,,esperanto,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/vi.po,1760,20567,28379,28,639,13,124,1801,21330,vi.po,,vi,,vietnamese,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sk.po,678,3774,3889,491,5387,632,12169,1801,21330,sk.po,,sk,,slovak,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ja.po,1127,9920,4970,450,8773,224,2637,1801,21330,ja.po,,ja,,japanese,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pt.po,1760,20567,21822,28,639,13,124,1801,21330,pt.po,,pt,,portuguese,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/gl.po,222,1537,1816,756,7228,823,12565,1801,21330,gl.po,,gl,,galician,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sl.po,1645,18594,19010,105,2151,51,585,1801,21330,sl.po,,sl,,slovenian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/nb.po,1760,20567,20901,28,639,13,124,1801,21330,nb.po,,nb,,norwegian bokmål,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1447,13490,4919,206,5912,148,1928,1801,21330,zh_cn.po,,zh,cn,chinese,,china

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/it.po,1098,9643,10929,468,8885,235,2802,1801,21330,it.po,,it,,italian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/be.po,479,2615,2531,470,4529,852,14186,1801,21330,be.po,,be,,belarusian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ko.po,168,1298,1135,715,6399,918,13633,1801,21330,ko.po,,ko,,korean,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/lt.po,367,1639,1518,252,1620,1182,18071,1801,21330,lt.po,,lt,,lithuanian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ro.po,557,2485,2737,252,1782,992,17063,1801,21330,ro.po,,ro,,romanian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/cs.po,1760,20567,20079,28,639,13,124,1801,21330,cs.po,,cs,,czech,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ia.po,89,270,348,43,164,1669,20896,1801,21330,ia.po,,ia,,interlingua,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/es.po,1399,14738,17951,270,5225,132,1367,1801,21330,es.po,,es,,spanish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/et.po,1760,20567,17280,28,639,13,124,1801,21330,et.po,,et,,estonian,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/tr.po,1026,8321,7437,177,2112,598,10897,1801,21330,tr.po,,tr,,turkish,,

- coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pl.po,1801,21330,21063,0,0,0,0,1801,21330,pl.po,,pl,,polish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/zh_cn.po,162,1101,403,45,211,106,590,313,1902,zh_cn.po,,zh,cn,chinese,,china

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/sv.po,293,1795,1770,15,86,5,21,313,1902,sv.po,,sv,,swedish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/sr.po,293,1795,1866,15,86,5,21,313,1902,sr.po,,sr,,serbian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/tr.po,293,1795,1606,15,86,5,21,313,1902,tr.po,,tr,,turkish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/it.po,293,1795,2020,15,86,5,21,313,1902,it.po,,it,,italian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/nl.po,293,1795,1808,15,86,5,21,313,1902,nl.po,,nl,,dutch,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/uk.po,293,1795,1786,15,86,5,21,313,1902,uk.po,,uk,,ukrainian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/ja.po,293,1795,846,15,86,5,21,313,1902,ja.po,,ja,,japanese,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/pt_br.po,38,197,244,52,272,223,1433,313,1902,pt_br.po,,pt,br,portuguese,,brazil

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/ga.po,162,1101,1453,45,211,106,590,313,1902,ga.po,,ga,,irish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/ru.po,293,1795,1785,15,86,5,21,313,1902,ru.po,,ru,,russian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/pl.po,293,1795,1800,15,86,5,21,313,1902,pl.po,,pl,,polish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/vi.po,293,1795,2633,15,86,5,21,313,1902,vi.po,,vi,,vietnamese,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/ro.po,38,197,235,52,272,223,1433,313,1902,ro.po,,ro,,romanian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/fi.po,293,1795,1472,15,86,5,21,313,1902,fi.po,,fi,,finnish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/id.po,293,1795,1804,15,86,5,21,313,1902,id.po,,id,,indonesian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/gl.po,125,567,722,9,43,179,1292,313,1902,gl.po,,gl,,galician,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/ko.po,33,174,159,57,295,223,1433,313,1902,ko.po,,ko,,korean,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/hr.po,293,1795,1754,15,86,5,21,313,1902,hr.po,,hr,,croatian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/hu.po,293,1795,1799,15,86,5,21,313,1902,hu.po,,hu,,hungarian,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/fr.po,293,1795,2158,15,86,5,21,313,1902,fr.po,,fr,,french,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/de.po,293,1795,1765,15,86,5,21,313,1902,de.po,,de,,german,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/zh_tw.po,178,899,458,39,240,96,763,313,1902,zh_tw.po,,zh,tw,chinese,,taiwan

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/da.po,293,1795,1722,15,86,5,21,313,1902,da.po,,da,,danish,,

- cpio-2.12-10.fc30.src.rpm.stats.csv,po/es.po,267,1598,1983,15,86,31,218,313,1902,es.po,,es,,spanish,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/cs.po,15,93,74,0,0,1,3,16,96,cs.po,,cs,,czech,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ko.po,15,93,64,0,0,1,3,16,96,ko.po,,ko,,korean,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ru.po,15,93,66,0,0,1,3,16,96,ru.po,,ru,,russian,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pt_br.po,15,93,89,0,0,1,3,16,96,pt_br.po,,pt,br,portuguese,,brazil

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/or.po,15,93,88,0,0,1,3,16,96,or.po,,or,,odia,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/fi.po,15,93,51,0,0,1,3,16,96,fi.po,,fi,,finnish,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ja.po,15,93,15,0,0,1,3,16,96,ja.po,,ja,,japanese,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/es.po,15,93,83,0,0,1,3,16,96,es.po,,es,,spanish,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/de.po,15,93,83,0,0,1,3,16,96,de.po,,de,,german,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/bn_in.po,15,93,96,0,0,1,3,16,96,bn_in.po,,bn,in,bangla,,india

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pl.po,15,93,73,0,0,1,3,16,96,pl.po,,pl,,polish,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/zh_tw.po,15,93,17,0,0,1,3,16,96,zh_tw.po,,zh,tw,chinese,,taiwan

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/nl.po,15,93,93,0,0,1,3,16,96,nl.po,,nl,,dutch,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pt.po,15,93,103,0,0,1,3,16,96,pt.po,,pt,,portuguese,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/kn.po,15,93,68,0,0,1,3,16,96,kn.po,,kn,,kannada,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/hi.po,15,93,105,0,0,1,3,16,96,hi.po,,hi,,hindi,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/gu.po,15,93,80,0,0,1,3,16,96,gu.po,,gu,,gujarati,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/sk.po,15,93,80,0,0,1,3,16,96,sk.po,,sk,,slovak,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ml.po,15,93,52,0,0,1,3,16,96,ml.po,,ml,,malayalam,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/nb.po,15,93,85,0,0,1,3,16,96,nb.po,,nb,,norwegian bokmål,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/it.po,15,93,84,0,0,1,3,16,96,it.po,,it,,italian,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/el.po,15,93,67,0,0,1,3,16,96,el.po,,el,,greek,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/sl_si.po,15,93,80,0,0,1,3,16,96,sl_si.po,,sl,si,slovenian,,slovenia

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/te.po,15,93,73,0,0,1,3,16,96,te.po,,te,,telugu,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ta.po,15,93,72,0,0,1,3,16,96,ta.po,,ta,,tamil,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pa.po,15,93,97,0,0,1,3,16,96,pa.po,,pa,,punjabi,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/as.po,15,93,82,0,0,1,3,16,96,as.po,,as,,assamese,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/uk.po,15,93,78,0,0,1,3,16,96,uk.po,,uk,,ukrainian,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/hu.po,15,93,65,0,0,1,3,16,96,hu.po,,hu,,hungarian,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/mr.po,15,93,66,0,0,1,3,16,96,mr.po,,mr,,marathi,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/lt.po,15,93,77,0,0,1,3,16,96,lt.po,,lt,,lithuanian,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/fr.po,15,93,87,0,0,1,3,16,96,fr.po,,fr,,french,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/da.po,15,93,90,0,0,1,3,16,96,da.po,,da,,danish,,

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/zh_cn.po,15,93,1,0,0,1,3,16,96,zh_cn.po,,zh,cn,chinese,,china

- cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/tr.po,15,93,89,0,0,1,3,16,96,tr.po,,tr,,turkish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/sv.po,232,1483,1348,403,2700,47,374,682,4557,sv.po,,sv,,swedish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/nl.po,148,921,934,373,2483,161,1153,682,4557,nl.po,,nl,,dutch,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/fr.po,680,4545,6045,2,12,0,0,682,4557,fr.po,,fr,,french,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/ru.po,680,4545,4445,2,12,0,0,682,4557,ru.po,,ru,,russian,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/pl.po,680,4545,4693,2,12,0,0,682,4557,pl.po,,pl,,polish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,422,2584,991,166,1247,94,726,682,4557,zh_cn.po,,zh,cn,chinese,,china

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/es.po,642,4222,5944,29,240,11,95,682,4557,es.po,,es,,spanish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/cs.po,680,4545,4595,2,12,0,0,682,4557,cs.po,,cs,,czech,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/da.po,680,4545,4138,2,12,0,0,682,4557,da.po,,da,,danish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/fi.po,141,882,631,371,2460,170,1215,682,4557,fi.po,,fi,,finnish,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,680,4545,5814,2,12,0,0,682,4557,pt_br.po,,pt,br,portuguese,,brazil

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/uk.po,680,4545,4986,2,12,0,0,682,4557,uk.po,,uk,,ukrainian,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/id.po,60,340,343,252,1574,370,2643,682,4557,id.po,,id,,indonesian,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/de.po,680,4545,4624,2,12,0,0,682,4557,de.po,,de,,german,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/sr.po,148,921,899,367,2442,167,1194,682,4557,sr.po,,sr,,serbian,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/vi.po,148,921,1371,372,2477,162,1159,682,4557,vi.po,,vi,,vietnamese,,

- cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/it.po,680,4545,5476,2,12,0,0,682,4557,it.po,,it,,italian,,

- cups-filters-1.22.5-1.fc30.src.rpm.stats.csv,filter/braille/drivers/common/fr-braille.po,79,203,250,0,0,0,0,79,203,fr-braille.po,braille,fr,,french,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/zh_tw.po,22,149,22,0,0,0,0,22,149,zh_tw.po,,zh,tw,chinese,,taiwan

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pl.po,22,149,132,0,0,0,0,22,149,pl.po,,pl,,polish,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/hu.po,22,149,98,0,0,0,0,22,149,hu.po,,hu,,hungarian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/nl.po,22,149,164,0,0,0,0,22,149,nl.po,,nl,,dutch,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/id.po,22,149,149,0,0,0,0,22,149,id.po,,id,,indonesian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/cs.po,22,149,129,0,0,0,0,22,149,cs.po,,cs,,czech,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sl.po,22,149,127,0,0,0,0,22,149,sl.po,,sl,,slovenian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sv.po,22,149,166,0,0,0,0,22,149,sv.po,,sv,,swedish,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pt.po,22,149,153,0,0,0,0,22,149,pt.po,,pt,,portuguese,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/hr.po,22,149,135,0,0,0,0,22,149,hr.po,,hr,,croatian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/zh_cn.po,22,149,22,0,0,0,0,22,149,zh_cn.po,,zh,cn,chinese,,china

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ka.po,16,90,59,0,0,6,59,22,149,ka.po,,ka,,georgian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/uk.po,22,149,159,0,0,0,0,22,149,uk.po,,uk,,ukrainian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/gl.po,22,149,152,0,0,0,0,22,149,gl.po,,gl,,galician,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/fr.po,22,149,168,0,0,0,0,22,149,fr.po,,fr,,french,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sk.po,22,149,127,0,0,0,0,22,149,sk.po,,sk,,slovak,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sr.po,22,149,133,0,0,0,0,22,149,sr.po,,sr,,serbian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ru.po,22,149,135,0,0,0,0,22,149,ru.po,,ru,,russian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/en_gb.po,22,149,149,0,0,0,0,22,149,en_gb.po,,en,gb,english,,united kingdom

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/lv.po,22,149,118,0,0,0,0,22,149,lv.po,,lv,,latvian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/eo.po,22,149,127,0,0,0,0,22,149,eo.po,,eo,,esperanto,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/it.po,22,149,204,0,0,0,0,22,149,it.po,,it,,italian,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ca.po,22,149,208,0,0,0,0,22,149,ca.po,,ca,,catalan,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pt_br.po,22,149,154,0,0,0,0,22,149,pt_br.po,,pt,br,portuguese,,brazil

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/fi.po,7,30,29,0,0,15,119,22,149,fi.po,,fi,,finnish,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/es.po,22,149,185,0,0,0,0,22,149,es.po,,es,,spanish,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ko.po,22,149,101,0,0,0,0,22,149,ko.po,,ko,,korean,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/en.po,22,149,149,0,0,0,0,22,149,en.po,,en,,english,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/kk.po,20,136,112,0,0,2,13,22,149,kk.po,,kk,,kazakh,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/oc.po,22,149,168,0,0,0,0,22,149,oc.po,,oc,,occitan,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ja.po,22,149,22,0,0,0,0,22,149,ja.po,,ja,,japanese,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ia.po,22,149,158,0,0,0,0,22,149,ia.po,,ia,,interlingua,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/da.po,22,149,156,0,0,0,0,22,149,da.po,,da,,danish,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/de.po,22,149,158,0,0,0,0,22,149,de.po,,de,,german,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/eu.po,22,149,131,0,0,0,0,22,149,eu.po,,eu,,basque,,

- cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/tr.po,22,149,168,0,0,0,0,22,149,tr.po,,tr,,turkish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/da.po,263,1839,1794,3,47,0,0,266,1886,da.po,,da,,danish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ru.po,266,1886,1855,0,0,0,0,266,1886,ru.po,,ru,,russian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/fr.po,266,1886,2289,0,0,0,0,266,1886,fr.po,,fr,,french,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,266,1886,2207,0,0,0,0,266,1886,pt_br.po,,pt,br,portuguese,,brazil

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/uk.po,266,1886,1950,0,0,0,0,266,1886,uk.po,,uk,,ukrainian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ca.po,84,415,537,125,1085,57,386,266,1886,ca.po,,ca,,catalan,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/id.po,232,1668,1635,23,164,11,54,266,1886,id.po,,id,,indonesian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/it.po,247,1735,1962,14,138,5,13,266,1886,it.po,,it,,italian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/sr.po,263,1839,1747,3,47,0,0,266,1886,sr.po,,sr,,serbian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/nl.po,266,1886,1991,0,0,0,0,266,1886,nl.po,,nl,,dutch,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ms.po,121,630,641,134,1104,11,152,266,1886,ms.po,,ms,,malay,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/hr.po,151,724,741,19,123,96,1039,266,1886,hr.po,,hr,,croatian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/vi.po,266,1886,2782,0,0,0,0,266,1886,vi.po,,vi,,vietnamese,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pt.po,266,1886,2039,0,0,0,0,266,1886,pt.po,,pt,,portuguese,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/he.po,73,318,351,129,1094,64,474,266,1886,he.po,,he,,hebrew,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/hu.po,263,1839,1839,3,47,0,0,266,1886,hu.po,,hu,,hungarian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/nb.po,266,1886,1965,0,0,0,0,266,1886,nb.po,,nb,,norwegian bokmål,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/sv.po,266,1886,1862,0,0,0,0,266,1886,sv.po,,sv,,swedish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,85,421,250,124,1079,57,386,266,1886,zh_tw.po,,zh,tw,chinese,,taiwan

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,266,1886,851,0,0,0,0,266,1886,zh_cn.po,,zh,cn,chinese,,china

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ro.po,72,315,341,130,1097,64,474,266,1886,ro.po,,ro,,romanian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ga.po,84,415,450,125,1085,57,386,266,1886,ga.po,,ga,,irish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/fi.po,143,788,691,101,884,22,214,266,1886,fi.po,,fi,,finnish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/el.po,263,1839,2017,3,47,0,0,266,1886,el.po,,el,,greek,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pl.po,263,1839,1828,3,47,0,0,266,1886,pl.po,,pl,,polish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/cs.po,266,1886,1876,0,0,0,0,266,1886,cs.po,,cs,,czech,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/de.po,266,1886,1862,0,0,0,0,266,1886,de.po,,de,,german,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/es.po,232,1668,2009,23,164,11,54,266,1886,es.po,,es,,spanish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ja.po,204,1495,748,50,332,12,59,266,1886,ja.po,,ja,,japanese,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/eo.po,263,1839,1776,3,47,0,0,266,1886,eo.po,,eo,,esperanto,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/bg.po,266,1886,2185,0,0,0,0,266,1886,bg.po,,bg,,bulgarian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/lv.po,232,1668,1554,23,164,11,54,266,1886,lv.po,,lv,,latvian,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/tr.po,266,1886,1811,0,0,0,0,266,1886,tr.po,,tr,,turkish,,

- diffutils-3.7-2.fc30.src.rpm.stats.csv,po/gl.po,110,554,655,129,1085,27,247,266,1886,gl.po,,gl,,galician,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,677,3327,1176,0,0,74,391,751,3718,zh_tw.po,,zh,tw,chinese,,taiwan

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,660,3253,1287,0,0,91,465,751,3718,zh_cn.po,,zh,cn,chinese,,china

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,470,1748,470,1748,ur.po,,ur,,urdu,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/uk.po,745,3671,3814,0,0,6,47,751,3718,uk.po,,uk,,ukrainian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/tr.po,531,2174,2038,0,0,220,1544,751,3718,tr.po,,tr,,turkish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/th.po,57,195,138,0,0,694,3523,751,3718,th.po,,th,,thai,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sv.po,745,3671,3593,0,0,6,47,751,3718,sv.po,,sv,,swedish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,134,476,490,1,5,335,1267,470,1748,sr@latin.po,latin,sr,,serbian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sr.po,431,1724,1812,0,0,320,1994,751,3718,sr.po,,sr,,serbian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sq.po,20,91,103,0,0,731,3627,751,3718,sq.po,,sq,,albanian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sk.po,177,640,664,1,2,573,3076,751,3718,sk.po,,sk,,slovak,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ru.po,719,3502,3426,0,0,32,216,751,3718,ru.po,,ru,,russian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,650,3194,3527,0,0,101,524,751,3718,pt_br.po,,pt,br,portuguese,,brazil

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pt.po,442,1926,2186,23,140,286,1652,751,3718,pt.po,,pt,,portuguese,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pl.po,745,3671,3738,0,0,6,47,751,3718,pl.po,,pl,,polish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pa.po,486,1734,2182,0,0,265,1984,751,3718,pa.po,,pa,,punjabi,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/nl.po,745,3671,3726,0,0,6,47,751,3718,nl.po,,nl,,dutch,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/nb.po,92,294,330,0,0,659,3424,751,3718,nb.po,,nb,,norwegian bokmål,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ms.po,8,22,22,0,0,743,3696,751,3718,ms.po,,ms,,malay,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/mr.po,63,157,181,0,0,688,3561,751,3718,mr.po,,mr,,marathi,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ml.po,16,50,57,1,4,734,3664,751,3718,ml.po,,ml,,malayalam,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/lt.po,219,715,663,1,2,531,3001,751,3718,lt.po,,lt,,lithuanian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ko.po,402,2230,1978,3,29,346,1459,751,3718,ko.po,,ko,,korean,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/kk.po,135,326,316,1,2,615,3390,751,3718,kk.po,,kk,,kazakh,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ka.po,105,221,214,1,2,645,3495,751,3718,ka.po,,ka,,georgian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ja.po,669,3293,1374,0,0,82,425,751,3718,ja.po,,ja,,japanese,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/it.po,622,3070,3579,0,0,129,648,751,3718,it.po,,it,,italian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/id.po,218,645,674,1,2,532,3071,751,3718,id.po,,id,,indonesian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hu.po,745,3671,3633,0,0,6,47,751,3718,hu.po,,hu,,hungarian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,751,3718,751,3718,hr.po,,hr,,croatian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,470,1748,470,1748,hi.po,,hi,,hindi,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/he.po,45,93,103,0,0,706,3625,751,3718,he.po,,he,,hebrew,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/gu.po,78,176,224,0,0,673,3542,751,3718,gu.po,,gu,,gujarati,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/gd.po,0,0,0,0,0,751,3718,751,3718,gd.po,,gd,,scottish gaelic,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fur.po,551,2555,3169,2,8,198,1155,751,3718,fur.po,,fur,,friulian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fr.po,745,3671,4657,0,0,6,47,751,3718,fr.po,,fr,,french,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fil.po,144,513,665,0,0,607,3205,751,3718,fil.po,,fil,,filipino,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fi.po,340,1146,1039,0,0,411,2572,751,3718,fi.po,,fi,,finnish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/eu.po,333,1140,1121,0,0,418,2578,751,3718,eu.po,,eu,,basque,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/es.po,744,3661,4336,0,0,7,57,751,3718,es.po,,es,,spanish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/eo.po,520,2073,2031,0,0,231,1645,751,3718,eo.po,,eo,,esperanto,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,333,1381,1381,0,0,418,2337,751,3718,en_gb.po,,en,gb,english,,united kingdom

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/el.po,5,5,6,0,0,746,3713,751,3718,el.po,,el,,greek,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/de.po,672,3288,3291,0,0,79,430,751,3718,de.po,,de,,german,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/da.po,745,3671,3542,0,0,6,47,751,3718,da.po,,da,,danish,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/cs.po,618,2887,2822,0,0,133,831,751,3718,cs.po,,cs,,czech,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ca.po,618,2838,3698,0,0,133,880,751,3718,ca.po,,ca,,catalan,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,751,3718,751,3718,bn_in.po,,bn,in,bangla,,india

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/bg.po,383,1652,1778,0,0,368,2066,751,3718,bg.po,,bg,,bulgarian,,

- dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ar.po,21,80,71,0,0,730,3638,751,3718,ar.po,,ar,,arabic,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/zh_tw.po,147,953,344,0,0,41,227,188,1180,zh_tw.po,,zh,tw,chinese,,taiwan

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,136,770,299,0,0,52,410,188,1180,zh_cn.po,,zh,cn,chinese,,china

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/uk.po,188,1180,1203,0,0,0,0,188,1180,uk.po,,uk,,ukrainian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/tr.po,30,170,156,0,0,158,1010,188,1180,tr.po,,tr,,turkish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sv.po,188,1180,1091,0,0,0,0,188,1180,sv.po,,sv,,swedish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sr.po,50,237,240,0,0,138,943,188,1180,sr.po,,sr,,serbian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sq.po,2,10,9,0,0,186,1170,188,1180,sq.po,,sq,,albanian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ru.po,188,1180,1136,0,0,0,0,188,1180,ru.po,,ru,,russian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pt_br.po,133,746,845,0,0,55,434,188,1180,pt_br.po,,pt,br,portuguese,,brazil

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pl.po,188,1180,1162,0,0,0,0,188,1180,pl.po,,pl,,polish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pa.po,25,101,128,0,0,163,1079,188,1180,pa.po,,pa,,punjabi,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ko.po,116,652,594,0,0,72,528,188,1180,ko.po,,ko,,korean,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ja.po,136,770,326,0,0,52,410,188,1180,ja.po,,ja,,japanese,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/it.po,131,726,866,1,13,56,441,188,1180,it.po,,it,,italian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/id.po,38,219,229,0,0,150,961,188,1180,id.po,,id,,indonesian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/hu.po,188,1180,1132,0,0,0,0,188,1180,hu.po,,hu,,hungarian,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/fr.po,188,1180,1418,0,0,0,0,188,1180,fr.po,,fr,,french,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/fi.po,40,164,139,0,0,148,1016,188,1180,fi.po,,fi,,finnish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/eu.po,5,5,5,0,0,183,1175,188,1180,eu.po,,eu,,basque,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/es.po,184,1133,1287,0,0,4,47,188,1180,es.po,,es,,spanish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/de.po,131,729,734,0,0,57,451,188,1180,de.po,,de,,german,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/da.po,188,1180,1089,0,0,0,0,188,1180,da.po,,da,,danish,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/cs.po,121,685,654,0,0,67,495,188,1180,cs.po,,cs,,czech,,

- dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ca.po,119,673,851,0,0,69,507,188,1180,ca.po,,ca,,catalan,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/de.po,501,2918,2721,0,0,0,0,501,2918,de.po,,de,,german,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/fr.po,400,2284,3028,46,285,55,349,501,2918,fr.po,,fr,,french,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/id.po,132,745,738,153,858,216,1315,501,2918,id.po,,id,,indonesian,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/es.po,253,1430,1605,186,1101,62,387,501,2918,es.po,,es,,spanish,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,501,2918,501,2918,it.po,,it,,italian,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,501,2918,501,2918,fi.po,,fi,,finnish,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/ro.po,134,757,775,152,856,215,1305,501,2918,ro.po,,ro,,romanian,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/pt_br.po,0,0,0,0,0,501,2918,501,2918,pt_br.po,,pt,br,portuguese,,brazil

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/no.po,134,757,754,152,856,215,1305,501,2918,no.po,,no,,norwegian,,

- dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/pl.po,484,2805,3128,11,70,6,43,501,2918,pl.po,,pl,,polish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/zh_cn.po,292,4132,900,0,0,0,0,292,4132,zh_cn.po,,zh,cn,chinese,,china

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/uk.po,280,3838,3963,3,18,9,276,292,4132,uk.po,,uk,,ukrainian,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/sv.po,292,4132,3629,0,0,0,0,292,4132,sv.po,,sv,,swedish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/pt_br.po,292,4132,4495,0,0,0,0,292,4132,pt_br.po,,pt,br,portuguese,,brazil

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/pl.po,292,4132,3748,0,0,0,0,292,4132,pl.po,,pl,,polish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/nl.po,257,3253,2975,9,92,26,787,292,4132,nl.po,,nl,,dutch,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/fr.po,292,4132,4593,0,0,0,0,292,4132,fr.po,,fr,,french,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/es.po,237,2897,3205,13,195,42,1040,292,4132,es.po,,es,,spanish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/de.po,292,4132,3876,0,0,0,0,292,4132,de.po,,de,,german,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/zh_tw.po,73,649,403,31,266,21,123,125,1038,zh_tw.po,,zh,tw,chinese,,taiwan

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/zh_cn.po,125,1038,567,0,0,0,0,125,1038,zh_cn.po,,zh,cn,chinese,,china

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/vi.po,124,928,1291,0,0,1,110,125,1038,vi.po,,vi,,vietnamese,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/uk.po,120,993,1099,0,0,5,45,125,1038,uk.po,,uk,,ukrainian,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/sv.po,125,1038,960,0,0,0,0,125,1038,sv.po,,sv,,swedish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/sr.po,120,993,969,0,0,5,45,125,1038,sr.po,,sr,,serbian,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/ru.po,125,1038,1029,0,0,0,0,125,1038,ru.po,,ru,,russian,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/pt_br.po,125,1038,1228,0,0,0,0,125,1038,pt_br.po,,pt,br,portuguese,,brazil

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/pl.po,125,1038,997,0,0,0,0,125,1038,pl.po,,pl,,polish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/nl.po,119,883,851,0,0,6,155,125,1038,nl.po,,nl,,dutch,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/nb.po,125,1038,926,0,0,0,0,125,1038,nb.po,,nb,,norwegian bokmål,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/ja.po,120,993,691,0,0,5,45,125,1038,ja.po,,ja,,japanese,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/hu.po,120,993,947,0,0,5,45,125,1038,hu.po,,hu,,hungarian,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/fr.po,125,1038,1225,0,0,0,0,125,1038,fr.po,,fr,,french,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/es.po,116,938,1118,4,55,5,45,125,1038,es.po,,es,,spanish,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/eo.po,114,815,740,5,68,6,155,125,1038,eo.po,,eo,,esperanto,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/de.po,120,993,987,0,0,5,45,125,1038,de.po,,de,,german,,

- dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/da.po,120,993,864,0,0,5,45,125,1038,da.po,,da,,danish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1499,9697,3127,49,444,18,119,1566,10260,zh_cn.po,,zh,cn,chinese,,china

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/vi.po,1547,10128,14506,13,85,6,47,1566,10260,vi.po,,vi,,vietnamese,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/uk.po,1564,10240,11203,1,4,1,16,1566,10260,uk.po,,uk,,ukrainian,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/tr.po,672,3766,3843,424,2918,470,3576,1566,10260,tr.po,,tr,,turkish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/sv.po,1564,10240,9971,1,4,1,16,1566,10260,sv.po,,sv,,swedish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/sr.po,1516,9796,10467,35,360,15,104,1566,10260,sr.po,,sr,,serbian,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/pl.po,1564,10240,10499,1,4,1,16,1566,10260,pl.po,,pl,,polish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/nl.po,1466,9141,9617,47,559,53,560,1566,10260,nl.po,,nl,,dutch,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/ms.po,237,953,964,638,2949,691,6358,1566,10260,ms.po,,ms,,malay,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/it.po,607,3115,3631,483,3282,476,3863,1566,10260,it.po,,it,,italian,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/id.po,816,4875,4947,358,2583,392,2802,1566,10260,id.po,,id,,indonesian,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/hu.po,1516,9796,9661,35,360,15,104,1566,10260,hu.po,,hu,,hungarian,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/fr.po,1564,10240,13359,1,4,1,16,1566,10260,fr.po,,fr,,french,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/fi.po,241,1074,898,106,528,1219,8658,1566,10260,fi.po,,fi,,finnish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/es.po,1564,10240,14124,1,4,1,16,1566,10260,es.po,,es,,spanish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/eo.po,918,5210,5268,152,897,496,4153,1566,10260,eo.po,,eo,,esperanto,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/de.po,1516,9796,10937,35,360,15,104,1566,10260,de.po,,de,,german,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/da.po,1365,8206,8136,1,4,200,2050,1566,10260,da.po,,da,,danish,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/cs.po,1564,10240,10616,1,4,1,16,1566,10260,cs.po,,cs,,czech,,

- e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/ca.po,1253,7784,11026,186,1409,127,1067,1566,10260,ca.po,,ca,,catalan,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/de.po,226,875,847,177,886,838,6725,1241,8486,de.po,,de,,german,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/es.po,899,5985,7201,240,1671,102,830,1241,8486,es.po,,es,,spanish,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/ja.po,513,2958,1529,246,1402,482,4126,1241,8486,ja.po,,ja,,japanese,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/pl.po,1125,7486,7859,99,847,17,153,1241,8486,pl.po,,pl,,polish,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/uk.po,1085,7158,7796,126,1030,30,298,1241,8486,uk.po,,uk,,ukrainian,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/en@quot.po,1241,8486,8486,0,0,0,0,1241,8486,en@quot.po,quot,en,,english,,

- elfutils-0.176-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,1241,8486,8487,0,0,0,0,1241,8486,en@boldquot.po,boldquot,en,,english,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,115,1550,373,0,0,19,39,134,1589,zh_tw.po,,zh,tw,chinese,,taiwan

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,99,327,186,134,1203,151,3019,384,4549,zh_cn.po,,zh,cn,chinese,,china

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/uk/uk.po,234,3273,2766,0,0,0,0,234,3273,uk.po,,uk,,ukrainian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/th/th.po,75,763,298,0,0,159,2504,234,3267,th.po,,th,,thai,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,38,41,45,0,0,346,4497,384,4538,te.po,,te,,telugu,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,395,4727,4347,0,0,0,0,395,4727,sv.po,,sv,,swedish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,430,5061,4248,0,0,0,0,430,5061,sl.po,,sl,,slovenian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,419,4931,4187,0,0,11,130,430,5061,ru.po,,ru,,russian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,56,256,273,0,0,360,4620,416,4876,ro.po,,ro,,romanian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,396,4697,5113,0,0,0,0,396,4697,pt_br.po,,pt,br,portuguese,,brazil

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,395,4750,3801,0,0,0,0,395,4750,pl.po,,pl,,polish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pa/pa.po,174,1453,1506,0,0,60,1820,234,3273,pa.po,,pa,,punjabi,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/oc/oc.po,69,162,193,0,0,165,3107,234,3269,oc.po,,oc,,occitan,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/lv/lv.po,398,4739,3657,0,0,0,0,398,4739,lv.po,,lv,,latvian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,416,4876,3439,0,0,0,0,416,4876,ko.po,,ko,,korean,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,414,4866,885,2,10,0,0,416,4876,ja.po,,ja,,japanese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/it/it.po,234,3273,3350,0,0,0,0,234,3273,it.po,,it,,italian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,395,4750,3918,0,0,0,0,395,4750,hu.po,,hu,,hungarian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,430,5061,5061,0,0,0,0,430,5061,gl.po,,gl,,galician,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,396,4699,5219,0,0,0,0,396,4699,fr.po,,fr,,french,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,404,4805,3018,2,31,10,40,416,4876,fi.po,,fi,,finnish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/eu/eu.po,217,3053,2295,0,0,0,0,217,3053,eu.po,,eu,,basque,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,396,4697,4915,0,0,0,0,396,4697,es.po,,es,,spanish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,234,3273,3285,0,0,0,0,234,3273,en_gb.po,,en,gb,english,,united kingdom

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,416,4876,4841,0,0,0,0,416,4876,el.po,,el,,greek,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,395,4727,4507,0,0,0,0,395,4727,de.po,,de,,german,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/da/da.po,234,3273,3018,0,0,0,0,234,3273,da.po,,da,,danish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,395,4727,4177,0,0,0,0,395,4727,cs.po,,cs,,czech,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,245,3008,3110,100,1269,53,462,398,4739,ca.po,,ca,,catalan,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ar/ar.po,228,2853,2290,0,0,6,420,234,3273,ar.po,,ar,,arabic,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,290,1144,961,5,40,26,416,321,1600,zu.po,,zu,,zulu,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,327,1680,457,0,0,0,0,327,1680,zh_tw.po,,zh,tw,chinese,,taiwan

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,339,1746,485,0,0,0,0,339,1746,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,327,1675,486,0,0,0,0,327,1675,zh_cn.po,,zh,cn,chinese,,china

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,293,1140,993,7,37,20,412,320,1589,xh.po,,xh,,xhosa,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,190,819,1091,0,0,0,0,190,819,wa.po,,wa,,walloon,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,327,1680,2018,0,0,0,0,327,1680,vi.po,,vi,,vietnamese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,235,727,658,0,0,46,474,281,1201,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,235,727,658,0,0,46,474,281,1201,uz.po,,uz,,uzbek,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,324,1672,1459,0,0,0,0,324,1672,uk.po,,uk,,ukrainian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,327,1616,1263,0,0,0,0,327,1616,ug.po,,ug,,uyghur,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ts.po,320,1589,1886,0,0,0,0,320,1589,ts.po,,ts,,tsonga,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,327,1680,1366,0,0,0,0,327,1680,tr.po,,tr,,turkish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,60,143,139,24,79,66,335,150,557,tk.po,,tk,,turkmen,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,323,1675,545,0,0,0,0,323,1675,th.po,,th,,thai,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,292,1559,1578,0,0,0,0,292,1559,tg.po,,tg,,tajik,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,327,1616,1331,0,0,0,0,327,1616,te.po,,te,,telugu,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,327,1616,1334,0,0,0,0,327,1616,ta.po,,ta,,tamil,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,327,1680,1547,0,0,0,0,327,1680,sv.po,,sv,,swedish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,327,1675,1754,0,0,0,0,327,1675,sr@latin.po,latin,sr,,serbian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,327,1680,1758,0,0,0,0,327,1680,sr.po,,sr,,serbian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,282,1223,1354,0,0,0,0,282,1223,sq.po,,sq,,albanian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,327,1680,1607,0,0,0,0,327,1680,sl.po,,sl,,slovenian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,327,1680,1575,0,0,0,0,327,1680,sk.po,,sk,,slovak,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,156,349,392,0,0,75,607,231,956,si.po,,si,,sinhala,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,35,36,39,108,568,35,63,178,667,rw.po,,rw,,kinyarwanda,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,327,1680,1512,0,0,0,0,327,1680,ru.po,,ru,,russian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,327,1680,1841,0,0,0,0,327,1680,ro.po,,ro,,romanian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,327,1680,1953,0,0,0,0,327,1680,pt_br.po,,pt,br,portuguese,,brazil

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,323,1675,1843,0,0,0,0,323,1675,pt.po,,pt,,portuguese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,252,750,824,0,0,26,443,278,1193,ps.po,,ps,,pashto,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,327,1680,1563,0,0,0,0,327,1680,pl.po,,pl,,polish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,326,1674,1767,0,0,0,0,326,1674,pa.po,,pa,,punjabi,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,244,1200,1193,53,242,7,81,304,1523,or.po,,or,,odia,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,316,1606,1796,2,8,5,63,323,1677,oc.po,,oc,,occitan,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,149,554,815,2,5,7,55,158,614,nso.po,,nso,,northern sotho,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,270,1152,1146,0,0,0,0,270,1152,nn.po,,nn,,norwegian nynorsk,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,327,1680,1626,0,0,0,0,327,1680,nl.po,,nl,,dutch,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,263,938,945,47,292,29,516,339,1746,ne.po,,ne,,nepali,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,143,293,274,0,0,160,1220,303,1513,nds.po,,nds,,low german,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,327,1675,1537,0,0,0,0,327,1675,nb.po,,nb,,norwegian bokmål,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,126,225,222,0,0,190,1400,316,1625,my.po,,my,,burmese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,141,481,460,3,41,6,35,150,557,ms.po,,ms,,malay,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,339,1746,1605,0,0,0,0,339,1746,mr.po,,mr,,marathi,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,88,324,280,30,143,32,90,150,557,mn.po,,mn,,mongolian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,327,1675,1278,0,0,0,0,327,1675,ml.po,,ml,,malayalam,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,323,1607,1700,0,0,0,0,323,1607,mk.po,,mk,,macedonian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,192,821,887,0,0,0,0,192,821,mg.po,,mg,,malagasy,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,180,676,752,0,0,105,579,285,1255,mai.po,,mai,,maithili,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,327,1680,1432,0,0,0,0,327,1680,lv.po,,lv,,latvian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,327,1680,1441,0,0,0,0,327,1680,lt.po,,lt,,lithuanian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,180,445,479,11,51,56,502,247,998,ku.po,,ku,,kurdish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ks.po,246,953,1020,4,16,28,224,278,1193,ks.po,,ks,,kashmiri,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,327,1680,1275,0,0,0,0,327,1680,ko.po,,ko,,korean,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,327,1616,1368,0,0,0,0,327,1616,kn.po,,kn,,kannada,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,324,1603,625,2,10,1,3,327,1616,km.po,,km,,khmer,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,327,1680,1392,0,0,0,0,327,1680,kk.po,,kk,,kazakh,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,187,695,598,0,0,0,0,187,695,ka.po,,ka,,georgian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,327,1680,475,0,0,0,0,327,1680,ja.po,,ja,,japanese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,327,1680,1703,0,0,0,0,327,1680,it.po,,it,,italian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,327,1675,1590,0,0,0,0,327,1675,is.po,,is,,icelandic,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,327,1680,1602,0,0,0,0,327,1680,id.po,,id,,indonesian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,327,1680,1440,0,0,0,0,327,1680,hu.po,,hu,,hungarian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,324,1675,1580,0,0,0,0,324,1675,hr.po,,hr,,croatian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,327,1616,1857,0,0,0,0,327,1616,hi.po,,hi,,hindi,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,323,1675,1577,0,0,0,0,323,1675,he.po,,he,,hebrew,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,326,1615,1689,0,0,0,0,326,1615,gu.po,,gu,,gujarati,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,327,1680,1966,0,0,0,0,327,1680,gl.po,,gl,,galician,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,327,1675,2167,0,0,0,0,327,1675,gd.po,,gd,,scottish gaelic,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,190,410,506,41,172,102,1083,333,1665,ga.po,,ga,,irish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,119,210,218,0,0,193,1395,312,1605,fy.po,,fy,,western frisian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,327,1680,1953,0,0,0,0,327,1680,fur.po,,fur,,friulian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,327,1680,1916,0,0,0,0,327,1680,fr.po,,fr,,french,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,327,1680,1255,0,0,0,0,327,1680,fi.po,,fi,,finnish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,327,1675,1782,0,0,0,0,327,1675,fa.po,,fa,,persian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,327,1675,1364,0,0,0,0,327,1675,eu.po,,eu,,basque,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,288,1502,1215,0,0,0,0,288,1502,et.po,,et,,estonian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,327,1680,1944,0,0,0,0,327,1680,es.po,,es,,spanish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,327,1680,1587,0,0,0,0,327,1680,eo.po,,eo,,esperanto,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,326,1674,1706,0,0,0,0,326,1674,en_gb.po,,en,gb,english,,united kingdom

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,323,1607,1610,0,0,0,0,323,1607,en_ca.po,,en,ca,english,,canada

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,304,1523,1523,0,0,0,0,304,1523,en@shaw.po,shaw,en,,english,shavian,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,327,1680,1762,0,0,0,0,327,1680,el.po,,el,,greek,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,270,1152,585,0,0,0,0,270,1152,dz.po,,dz,,dzongkha,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,327,1680,1653,0,0,0,0,327,1680,de.po,,de,,german,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,324,1675,1549,0,0,0,0,324,1675,da.po,,da,,danish,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,187,706,807,0,0,0,0,187,706,cy.po,,cy,,welsh,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,327,1680,1566,0,0,0,0,327,1680,cs.po,,cs,,czech,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,327,1675,1964,0,0,0,0,327,1675,ca@valencia.po,valencia,ca,,catalan,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,327,1680,1975,0,0,0,0,327,1680,ca.po,,ca,,catalan,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,288,1502,1472,0,0,0,0,288,1502,bs.po,,bs,,bosnian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,183,467,555,0,0,111,973,294,1440,br.po,,br,,breton,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,312,1566,1757,0,0,0,0,312,1566,bn_in.po,,bn,in,bangla,,india

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,305,1527,1615,0,0,0,0,305,1527,bn.po,,bn,,bangla,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,327,1675,1733,0,0,0,0,327,1675,bg.po,,bg,,bulgarian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,285,1255,1103,0,0,0,0,285,1255,be@latin.po,latin,be,,belarusian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,327,1675,1559,0,0,0,0,327,1675,be.po,,be,,belarusian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,87,324,297,28,141,35,92,150,557,az.po,,az,,azerbaijani,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,320,1589,1753,0,0,0,0,320,1589,ast.po,,ast,,asturian,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,339,1746,1770,0,0,0,0,339,1746,as.po,,as,,assamese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,323,1539,1491,0,0,4,141,327,1680,ar.po,,ar,,arabic,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,288,1502,1637,0,0,0,0,288,1502,an.po,,an,,aragonese,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,30,80,68,42,94,78,383,150,557,am.po,,am,,amharic,,

- eog-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,318,1404,1393,0,0,9,271,327,1675,af.po,,af,,afrikaans,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/sv/sv.po,249,2476,2320,0,0,0,0,249,2476,sv.po,,sv,,swedish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/ru/ru.po,51,568,471,10,69,126,1998,187,2635,ru.po,,ru,,russian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,249,2476,2527,0,0,0,0,249,2476,pt_br.po,,pt,br,portuguese,,brazil

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/pl/pl.po,249,2476,1795,0,0,0,0,249,2476,pl.po,,pl,,polish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/ko/ko.po,249,2476,1817,0,0,0,0,249,2476,ko.po,,ko,,korean,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/hu/hu.po,249,2476,2064,0,0,0,0,249,2476,hu.po,,hu,,hungarian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/gl/gl.po,91,215,224,0,0,158,2261,249,2476,gl.po,,gl,,galician,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/fr/fr.po,291,3054,3247,0,0,0,0,291,3054,fr.po,,fr,,french,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/es/es.po,249,2476,2522,0,0,0,0,249,2476,es.po,,es,,spanish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/el/el.po,291,3054,3142,0,0,0,0,291,3054,el.po,,el,,greek,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/de/de.po,249,2476,2302,0,0,0,0,249,2476,de.po,,de,,german,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/cs/cs.po,249,2476,1983,0,0,0,0,249,2476,cs.po,,cs,,czech,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,717,3876,1088,0,0,0,0,717,3876,zh_tw.po,,zh,tw,chinese,,taiwan

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_hk.po,593,2564,827,0,0,0,0,593,2564,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,708,3808,1064,0,0,0,0,708,3808,zh_cn.po,,zh,cn,chinese,,china

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/yo.po,479,1553,1795,95,276,87,533,661,2362,yo.po,,yo,,yoruba,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/wa.po,528,1137,1371,0,0,237,1595,765,2732,wa.po,,wa,,walloon,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/vi.po,495,1757,2381,0,0,0,0,495,1757,vi.po,,vi,,vietnamese,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,539,1807,1653,4,17,121,1049,664,2873,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uz.po,681,2405,2215,0,0,71,599,752,3004,uz.po,,uz,,uzbek,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uk.po,633,3278,2764,0,0,0,0,633,3278,uk.po,,uk,,ukrainian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ug.po,570,2461,2118,0,0,0,0,570,2461,ug.po,,ug,,uyghur,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tr.po,738,4012,3467,0,0,0,0,738,4012,tr.po,,tr,,turkish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tk.po,573,1702,1598,0,0,207,1080,780,2782,tk.po,,tk,,turkmen,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/th.po,597,2618,969,0,0,0,0,597,2618,th.po,,th,,thai,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tg.po,172,265,309,6,10,399,2219,577,2494,tg.po,,tg,,tajik,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/te.po,574,2413,2121,0,0,0,0,574,2413,te.po,,te,,telugu,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ta.po,570,2461,2259,0,0,0,0,570,2461,ta.po,,ta,,tamil,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sv.po,738,4012,3736,0,0,0,0,738,4012,sv.po,,sv,,swedish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sr@latin.po,697,3599,3601,0,0,0,0,697,3599,sr@latin.po,latin,sr,,serbian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sr.po,738,4012,4045,0,0,0,0,738,4012,sr.po,,sr,,serbian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sq.po,755,3011,3382,0,0,0,0,755,3011,sq.po,,sq,,albanian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sl.po,738,4012,3811,0,0,0,0,738,4012,sl.po,,sl,,slovenian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sk.po,613,2652,2594,21,122,74,996,708,3770,sk.po,,sk,,slovak,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/si.po,127,197,282,0,0,756,3864,883,4061,si.po,,si,,sinhala,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/rw.po,141,251,230,588,2753,109,216,838,3220,rw.po,,rw,,kinyarwanda,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ru.po,738,4012,3601,0,0,0,0,738,4012,ru.po,,ru,,russian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ro.po,738,4012,4187,0,0,0,0,738,4012,ro.po,,ro,,romanian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,738,4012,4501,0,0,0,0,738,4012,pt_br.po,,pt,br,portuguese,,brazil

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pt.po,652,2826,2953,1,3,11,44,664,2873,pt.po,,pt,,portuguese,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ps.po,219,401,412,8,12,502,2469,729,2882,ps.po,,ps,,pashto,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pl.po,738,4012,3632,0,0,0,0,738,4012,pl.po,,pl,,polish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pa.po,609,2013,2217,2,54,52,804,663,2871,pa.po,,pa,,punjabi,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/or.po,469,1495,1695,40,184,79,860,588,2539,or.po,,or,,odia,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/oc.po,701,3593,4087,0,0,15,180,716,3773,oc.po,,oc,,occitan,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nn.po,753,3006,2822,0,0,0,0,753,3006,nn.po,,nn,,norwegian nynorsk,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nl.po,738,4012,3995,0,0,0,0,738,4012,nl.po,,nl,,dutch,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ne.po,369,865,917,147,632,125,1816,641,3313,ne.po,,ne,,nepali,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nds.po,468,1047,987,15,52,257,1954,740,3053,nds.po,,nds,,low german,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nb.po,676,3166,3010,1,14,35,577,712,3757,nb.po,,nb,,norwegian bokmål,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ms.po,467,1537,1438,181,669,93,867,741,3073,ms.po,,ms,,malay,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mr.po,574,2413,2356,0,0,0,0,574,2413,mr.po,,mr,,marathi,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mn.po,758,3054,2643,0,0,0,0,758,3054,mn.po,,mn,,mongolian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ml.po,360,988,894,150,763,187,1848,697,3599,ml.po,,ml,,malayalam,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mk.po,613,2199,2300,0,0,0,0,613,2199,mk.po,,mk,,macedonian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mi.po,98,114,166,76,122,591,2496,765,2732,mi.po,,mi,,maori,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mg.po,830,3684,4108,12,99,1,15,843,3798,mg.po,,mg,,malagasy,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mai.po,657,2530,2728,0,0,83,501,740,3031,mai.po,,mai,,maithili,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/lv.po,738,4012,3489,0,0,0,0,738,4012,lv.po,,lv,,latvian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/lt.po,738,4012,3360,0,0,0,0,738,4012,lt.po,,lt,,lithuanian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/li.po,406,1057,1002,223,718,136,957,765,2732,li.po,,li,,limburgish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ku.po,433,1078,1126,40,165,280,1762,753,3005,ku.po,,ku,,kurdish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ko.po,734,3931,3110,0,0,0,0,734,3931,ko.po,,ko,,korean,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/kn.po,574,2413,2097,0,0,0,0,574,2413,kn.po,,kn,,kannada,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/km.po,599,2072,991,2,35,12,92,613,2199,km.po,,km,,khmer,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/kk.po,447,1116,1095,0,0,287,2818,734,3934,kk.po,,kk,,kazakh,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ka.po,729,3010,2578,0,0,2,37,731,3047,ka.po,,ka,,georgian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ja.po,611,2749,919,0,0,0,0,611,2749,ja.po,,ja,,japanese,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/it.po,738,4012,4313,0,0,0,0,738,4012,it.po,,it,,italian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/is.po,266,518,517,28,83,301,1988,595,2589,is.po,,is,,icelandic,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ig.po,536,1949,2038,146,511,70,544,752,3004,ig.po,,ig,,igbo,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/id.po,738,4012,3816,0,0,0,0,738,4012,id.po,,id,,indonesian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hy.po,367,1241,1046,0,0,385,1760,752,3001,hy.po,,hy,,armenian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hu.po,738,4012,3650,0,0,0,0,738,4012,hu.po,,hu,,hungarian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hr.po,717,3876,3561,0,0,0,0,717,3876,hr.po,,hr,,croatian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hi.po,570,2461,2958,0,0,0,0,570,2461,hi.po,,hi,,hindi,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/he.po,578,2810,2649,0,0,0,0,578,2810,he.po,,he,,hebrew,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gv.po,666,2764,3387,44,198,21,82,731,3044,gv.po,,gv,,manx,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gu.po,499,1423,1645,22,167,72,974,593,2564,gu.po,,gu,,gujarati,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gl.po,734,3931,4482,0,0,0,0,734,3931,gl.po,,gl,,galician,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ga.po,413,1062,1264,32,97,133,1336,578,2495,ga.po,,ga,,irish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fur.po,734,3931,4646,0,0,0,0,734,3931,fur.po,,fur,,friulian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fr.po,738,4012,4826,0,0,0,0,738,4012,fr.po,,fr,,french,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fi.po,678,2950,2288,4,17,52,964,734,3931,fi.po,,fi,,finnish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fa.po,664,2873,3187,0,0,0,0,664,2873,fa.po,,fa,,persian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/eu.po,734,3931,3468,0,0,0,0,734,3931,eu.po,,eu,,basque,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/et.po,496,1758,1541,0,0,0,0,496,1758,et.po,,et,,estonian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/es.po,738,4012,4540,0,0,0,0,738,4012,es.po,,es,,spanish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/eo.po,662,2828,2638,1,3,0,0,663,2831,eo.po,,eo,,esperanto,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,738,4012,4032,0,0,0,0,738,4012,en_gb.po,,en,gb,english,,united kingdom

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en_ca.po,651,2291,2298,0,0,0,0,651,2291,en_ca.po,,en,ca,english,,canada

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en@shaw.po,692,2644,2645,41,408,0,0,733,3052,en@shaw.po,shaw,en,,english,shavian,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/el.po,712,3843,4176,20,92,16,105,748,4040,el.po,,el,,greek,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/dz.po,918,4246,2200,0,0,0,0,918,4246,dz.po,,dz,,dzongkha,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/de.po,738,4012,3905,0,0,0,0,738,4012,de.po,,de,,german,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/da.po,738,4012,3769,0,0,0,0,738,4012,da.po,,da,,danish,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/cy.po,844,3788,4130,0,0,0,0,844,3788,cy.po,,cy,,welsh,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/cs.po,738,4012,3853,0,0,0,0,738,4012,cs.po,,cs,,czech,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,696,3589,4224,0,0,0,0,696,3589,ca@valencia.po,valencia,ca,,catalan,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ca.po,714,3697,4316,5,37,19,278,738,4012,ca.po,,ca,,catalan,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bs.po,596,2615,2505,0,0,0,0,596,2615,bs.po,,bs,,bosnian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/br.po,574,1751,1984,0,0,163,1250,737,3001,br.po,,br,,breton,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bn_in.po,643,2291,2660,0,0,0,0,643,2291,bn_in.po,,bn,in,bangla,,india

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bn.po,352,1132,1375,101,382,142,1075,595,2589,bn.po,,bn,,bangla,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bg.po,613,2698,2900,2,54,3,35,618,2787,bg.po,,bg,,bulgarian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/be@latin.po,918,4246,3748,0,0,0,0,918,4246,be@latin.po,latin,be,,belarusian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/be.po,717,3876,3421,0,0,0,0,717,3876,be.po,,be,,belarusian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/az.po,780,2782,2711,0,0,0,0,780,2782,az.po,,az,,azerbaijani,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ast.po,741,3073,3335,0,0,0,0,741,3073,ast.po,,ast,,asturian,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/as.po,594,2592,2854,0,0,0,0,594,2592,as.po,,as,,assamese,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ar.po,584,2328,2196,0,0,32,454,616,2782,ar.po,,ar,,arabic,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/an.po,495,1757,1920,0,0,0,0,495,1757,an.po,,an,,aragonese,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/am.po,197,288,350,251,522,317,1922,765,2732,am.po,,am,,amharic,,

- epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/af.po,604,1952,1976,0,0,144,2088,748,4040,af.po,,af,,afrikaans,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,673,7537,6491,0,0,0,0,673,7537,cs.po,,cs,,czech,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,667,7513,5095,6,24,0,0,673,7537,ko.po,,ko,,korean,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,41,64,73,0,0,111,1703,152,1767,oc.po,,oc,,occitan,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,670,7525,7379,3,12,0,0,673,7537,de.po,,de,,german,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,581,6465,4127,39,707,12,99,632,7271,fi.po,,fi,,finnish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,631,6952,5880,0,0,0,0,631,6952,ru.po,,ru,,russian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,673,7537,8160,0,0,0,0,673,7537,pt_br.po,,pt,br,portuguese,,brazil

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,653,7485,6925,0,0,0,0,653,7485,da.po,,da,,danish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,630,6994,5974,0,0,0,0,630,6994,sl.po,,sl,,slovenian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,399,3713,3629,0,0,240,3669,639,7382,nl.po,,nl,,dutch,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,629,6990,1689,0,0,1,4,630,6994,ja.po,,ja,,japanese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,677,7562,5958,0,0,0,0,677,7562,pl.po,,pl,,polish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,152,1767,1341,0,0,0,0,152,1767,eu.po,,eu,,basque,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,653,7485,7389,0,0,0,0,653,7485,el.po,,el,,greek,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,630,6994,7043,0,0,0,0,630,6994,gl.po,,gl,,galician,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/lv/lv.po,636,7089,5666,0,0,0,0,636,7089,lv.po,,lv,,latvian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/vi/vi.po,204,1651,2028,0,0,9,268,213,1919,vi.po,,vi,,vietnamese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,151,1742,1365,1,25,0,0,152,1767,uk.po,,uk,,ukrainian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,636,7323,6463,0,0,0,0,636,7323,id.po,,id,,indonesian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,154,1753,1691,0,0,0,0,154,1753,bg.po,,bg,,bulgarian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,238,1639,1810,0,0,398,5450,636,7089,ca.po,,ca,,catalan,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,639,7382,8238,0,0,0,0,639,7382,fr.po,,fr,,french,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,213,1919,373,0,0,0,0,213,1919,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,321,4017,3994,245,2608,82,842,648,7467,ro.po,,ro,,romanian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,212,1918,1926,0,0,0,0,212,1918,en_gb.po,,en,gb,english,,united kingdom

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,212,1918,1975,0,0,0,0,212,1918,it.po,,it,,italian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sr/sr.po,48,521,485,0,0,108,1247,156,1768,sr.po,,sr,,serbian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,665,7346,7762,8,173,4,43,677,7562,es.po,,es,,spanish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,213,1919,373,0,0,0,0,213,1919,zh_tw.po,,zh,tw,chinese,,taiwan

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,595,6634,1808,0,0,0,0,595,6634,zh_cn.po,,zh,cn,chinese,,china

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,677,7562,7047,0,0,0,0,677,7562,sv.po,,sv,,swedish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,677,7562,6330,0,0,0,0,677,7562,hu.po,,hu,,hungarian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,23,81,82,0,0,575,6554,598,6635,te.po,,te,,telugu,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,416,1654,1545,0,0,0,0,416,1654,ru.po,,ru,,russian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,247,838,936,24,91,24,91,295,1020,mg.po,,mg,,malagasy,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,204,429,492,8,44,147,1115,359,1588,ga.po,,ga,,irish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,368,1523,1599,0,0,0,0,368,1523,or.po,,or,,odia,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,354,1518,522,0,0,0,0,354,1518,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,400,1595,620,0,0,0,0,400,1595,zh_cn.po,,zh,cn,chinese,,china

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,333,1392,1342,0,0,0,0,333,1392,mn.po,,mn,,mongolian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,364,1435,1434,0,0,0,0,364,1435,nn.po,,nn,,norwegian nynorsk,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,355,1525,1375,0,0,0,0,355,1525,kn.po,,kn,,kannada,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,392,1664,2129,0,0,0,0,392,1664,gd.po,,gd,,scottish gaelic,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,392,1662,1647,0,0,0,0,392,1662,nb.po,,nb,,norwegian bokmål,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,392,1664,1961,0,0,0,0,392,1664,ca@valencia.po,valencia,ca,,catalan,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,218,730,767,0,0,0,0,218,730,cy.po,,cy,,welsh,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,416,1654,2047,0,0,0,0,416,1654,fr.po,,fr,,french,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,242,621,626,6,38,76,603,324,1262,nds.po,,nds,,low german,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,392,1560,1578,0,0,0,0,392,1560,sr@latin.po,latin,sr,,serbian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,355,1525,1620,0,0,0,0,355,1525,as.po,,as,,assamese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,366,1437,1574,0,0,0,0,366,1437,mk.po,,mk,,macedonian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,397,1701,1517,0,0,0,0,397,1701,uk.po,,uk,,ukrainian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,410,1650,571,0,0,0,0,410,1650,zh_tw.po,,zh,tw,chinese,,taiwan

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,291,1048,1192,0,0,0,0,291,1048,sq.po,,sq,,albanian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,366,1437,1618,0,0,0,0,366,1437,ast.po,,ast,,asturian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,416,1654,1610,0,0,0,0,416,1654,pl.po,,pl,,polish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,416,1654,1456,0,0,0,0,416,1654,hu.po,,hu,,hungarian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,416,1654,1600,0,0,0,0,416,1654,id.po,,id,,indonesian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,416,1654,1452,0,0,0,0,416,1654,lt.po,,lt,,lithuanian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,23,25,28,95,522,30,52,148,599,rw.po,,rw,,kinyarwanda,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,355,1525,1678,0,0,0,0,355,1525,gu.po,,gu,,gujarati,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,416,1654,1824,0,0,0,0,416,1654,ro.po,,ro,,romanian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,392,1664,1553,0,0,0,0,392,1664,ne.po,,ne,,nepali,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,410,1650,1673,0,0,0,0,410,1650,en_gb.po,,en,gb,english,,united kingdom

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,125,219,267,0,0,167,785,292,1004,si.po,,si,,sinhala,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,355,1525,1369,0,0,0,0,355,1525,te.po,,te,,telugu,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,416,1654,1674,0,0,0,0,416,1654,sr.po,,sr,,serbian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,368,1523,1269,0,0,0,0,368,1523,ml.po,,ml,,malayalam,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,149,601,800,0,0,0,0,149,601,wa.po,,wa,,walloon,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,416,1654,1930,0,0,0,0,416,1654,fur.po,,fur,,friulian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,358,1287,1092,4,119,0,0,362,1406,zu.po,,zu,,zulu,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,248,746,780,0,0,30,243,278,989,ps.po,,ps,,pashto,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,312,1155,1084,0,0,0,0,312,1155,be@latin.po,latin,be,,belarusian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,416,1654,1681,0,0,0,0,416,1654,de.po,,de,,german,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,251,842,685,0,0,0,0,251,842,ka.po,,ka,,georgian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,416,1654,1617,0,0,0,0,416,1654,cs.po,,cs,,czech,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,397,1701,1920,0,0,0,0,397,1701,pa.po,,pa,,punjabi,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,416,1654,1464,0,0,0,0,416,1654,eu.po,,eu,,basque,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,416,1654,1463,0,0,0,0,416,1654,kk.po,,kk,,kazakh,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,378,1624,1928,0,0,17,76,395,1700,oc.po,,oc,,occitan,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,366,1437,1355,0,0,0,0,366,1437,ms.po,,ms,,malay,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,410,1650,1527,0,0,0,0,410,1650,be.po,,be,,belarusian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,360,1532,1473,0,0,0,0,360,1532,bs.po,,bs,,bosnian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,416,1654,1980,0,0,0,0,416,1654,pt_br.po,,pt,br,portuguese,,brazil

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,345,1429,1469,0,0,10,96,355,1525,af.po,,af,,afrikaans,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,416,1654,1344,0,0,0,0,416,1654,fi.po,,fi,,finnish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,392,1664,1765,0,0,0,0,392,1664,bg.po,,bg,,bulgarian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,393,1698,641,0,0,0,0,393,1698,th.po,,th,,thai,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,355,1525,1311,0,0,0,0,355,1525,ta.po,,ta,,tamil,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ks.po,231,789,821,38,166,9,34,278,989,ks.po,,ks,,kashmiri,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,410,1631,1574,0,0,0,0,410,1631,sl.po,,sl,,slovenian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,366,1437,1440,0,0,0,0,366,1437,en_ca.po,,en,ca,english,,canada

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,416,1654,1916,0,0,0,0,416,1654,es.po,,es,,spanish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,296,872,946,7,37,62,544,365,1453,ku.po,,ku,,kurdish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,410,1650,1551,0,0,0,0,410,1650,ar.po,,ar,,arabic,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,416,1654,1563,0,0,0,0,416,1654,da.po,,da,,danish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,400,1598,1539,6,19,4,33,410,1650,sk.po,,sk,,slovak,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,382,1520,660,0,0,0,0,382,1520,km.po,,km,,khmer,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,248,872,942,0,0,64,283,312,1155,mai.po,,mai,,maithili,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,393,1698,1881,0,0,0,0,393,1698,pt.po,,pt,,portuguese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,405,1589,585,1,4,4,38,410,1631,ja.po,,ja,,japanese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,392,1560,1581,0,0,0,0,392,1560,is.po,,is,,icelandic,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,410,1631,1765,0,0,0,0,410,1631,el.po,,el,,greek,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,355,1525,1688,0,0,0,0,355,1525,bn_in.po,,bn,in,bangla,,india

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,393,1698,1544,0,0,0,0,393,1698,he.po,,he,,hebrew,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,333,1392,1523,0,0,0,0,333,1392,bn.po,,bn,,bangla,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,416,1654,1642,0,0,0,0,416,1654,eo.po,,eo,,esperanto,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,392,1664,1817,0,0,0,0,392,1664,fa.po,,fa,,persian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,355,1525,1817,0,0,0,0,355,1525,hi.po,,hi,,hindi,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,360,1589,1278,0,0,0,0,360,1589,et.po,,et,,estonian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,324,1084,722,6,31,41,378,371,1493,my.po,,my,,burmese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,416,1654,1444,0,0,0,0,416,1654,lv.po,,lv,,latvian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,360,1527,1563,0,0,0,0,360,1527,tg.po,,tg,,tajik,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,199,572,677,4,15,122,673,325,1260,br.po,,br,,breton,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,292,1002,467,0,0,0,0,292,1002,dz.po,,dz,,dzongkha,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,410,1650,1582,0,0,0,0,410,1650,hr.po,,hr,,croatian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,416,1654,1671,0,0,0,0,416,1654,nl.po,,nl,,dutch,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,410,1650,2196,0,0,0,0,410,1650,vi.po,,vi,,vietnamese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,410,1631,1608,0,0,0,0,410,1631,sv.po,,sv,,swedish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,416,1654,1993,0,0,0,0,416,1654,gl.po,,gl,,galician,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,416,1654,1446,0,0,0,0,416,1654,tr.po,,tr,,turkish,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,416,1654,1968,0,0,0,0,416,1654,ca.po,,ca,,catalan,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,303,1180,1181,28,200,0,0,331,1380,en@shaw.po,shaw,en,,english,shavian,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,355,1525,1480,0,0,0,0,355,1525,mr.po,,mr,,marathi,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,356,1521,1690,3,7,0,0,359,1528,an.po,,an,,aragonese,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,416,1654,1806,0,0,0,0,416,1654,it.po,,it,,italian,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,368,1523,1298,0,0,0,0,368,1523,ug.po,,ug,,uyghur,,

- evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,416,1654,1390,0,0,0,0,416,1654,ko.po,,ko,,korean,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1442,7607,2643,0,0,0,0,1442,7607,zh_tw.po,,zh,tw,chinese,,taiwan

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1076,5406,1974,0,0,0,0,1076,5406,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,999,4444,1786,176,1505,7,108,1182,6057,zh_cn.po,,zh,cn,chinese,,china

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,956,4657,4632,3,19,3,16,962,4692,xh.po,,xh,,xhosa,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,651,866,953,554,1199,2928,15005,4133,17070,wa.po,,wa,,walloon,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,1127,5365,7655,0,0,36,302,1163,5667,vi.po,,vi,,vietnamese,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,1074,5398,5219,0,0,0,0,1074,5398,uk.po,,uk,,ukrainian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,1157,5571,5390,0,0,6,96,1163,5667,ug.po,,ug,,uyghur,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,1443,7608,6394,0,0,0,0,1443,7608,tr.po,,tr,,turkish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,1129,5489,2522,0,0,12,40,1141,5529,th.po,,th,,thai,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,1,1,1,0,0,1163,5679,1164,5680,tg.po,,tg,,tajik,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,1104,5314,4640,10,79,6,70,1120,5463,te.po,,te,,telugu,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,1074,5400,4899,0,0,0,0,1074,5400,ta.po,,ta,,tamil,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,1443,7608,7200,0,0,0,0,1443,7608,sv.po,,sv,,swedish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1263,6683,7068,0,0,0,0,1263,6683,sr@latin.po,latin,sr,,serbian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,1443,7608,7948,0,0,0,0,1443,7608,sr.po,,sr,,serbian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,1042,5021,6248,0,0,0,0,1042,5021,sq.po,,sq,,albanian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,1443,7608,7953,0,0,0,0,1443,7608,sl.po,,sl,,slovenian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,1238,6321,6617,4,33,10,80,1252,6434,sk.po,,sk,,slovak,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,113,149,203,0,0,927,4891,1040,5040,si.po,,si,,sinhala,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,57,68,73,702,4191,203,433,962,4692,rw.po,,rw,,kinyarwanda,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,1147,5716,5689,0,0,0,0,1147,5716,ru.po,,ru,,russian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,766,3660,4362,318,1707,359,2241,1443,7608,ro.po,,ro,,romanian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,1443,7608,9125,0,0,0,0,1443,7608,pt_br.po,,pt,br,portuguese,,brazil

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,1158,5824,6731,0,0,0,0,1158,5824,pt.po,,pt,,portuguese,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,1443,7608,7747,0,0,0,0,1443,7608,pl.po,,pl,,polish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,808,3479,4177,302,1734,332,2394,1442,7607,pa.po,,pa,,punjabi,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,1074,5398,5609,0,0,0,0,1074,5398,or.po,,or,,odia,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,1449,7493,9115,0,0,0,0,1449,7493,oc.po,,oc,,occitan,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,1033,4985,4924,0,0,1,3,1034,4988,nn.po,,nn,,norwegian nynorsk,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,1443,7608,7556,0,0,0,0,1443,7608,nl.po,,nl,,dutch,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,703,2797,2973,399,2116,150,1521,1252,6434,ne.po,,ne,,nepali,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,1227,6088,6004,0,0,26,352,1253,6440,nb.po,,nb,,norwegian bokmål,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,597,3008,3200,211,1120,69,376,877,4504,ms.po,,ms,,malay,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,1074,5396,5486,0,0,0,0,1074,5396,mr.po,,mr,,marathi,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,202,585,581,139,737,536,3182,877,4504,mn.po,,mn,,mongolian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,699,2924,2671,338,1691,215,1819,1252,6434,ml.po,,ml,,malayalam,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,1042,5021,5892,0,0,0,0,1042,5021,mk.po,,mk,,macedonian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,106,157,172,0,0,935,4937,1041,5094,mai.po,,mai,,maithili,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,1264,6686,6127,0,0,0,0,1264,6686,lv.po,,lv,,latvian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,1443,7608,6633,0,0,0,0,1443,7608,lt.po,,lt,,lithuanian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,3,3,5,56,67,953,4796,1012,4866,ku.po,,ku,,kurdish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,1442,7607,6661,0,0,0,0,1442,7607,ko.po,,ko,,korean,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,1164,5673,5091,0,0,0,0,1164,5673,kn.po,,kn,,kannada,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,992,4693,2572,0,0,0,0,992,4693,km.po,,km,,khmer,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,532,1636,1596,0,0,910,5971,1442,7607,kk.po,,kk,,kazakh,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,160,295,287,519,3000,339,1611,1018,4906,ka.po,,ka,,georgian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,1023,5039,2210,76,388,48,289,1147,5716,ja.po,,ja,,japanese,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,1264,6686,7461,0,0,0,0,1264,6686,it.po,,it,,italian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,314,766,686,46,154,737,4502,1097,5422,is.po,,is,,icelandic,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,1443,7608,7474,0,0,0,0,1443,7608,id.po,,id,,indonesian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,1443,7608,7303,0,0,0,0,1443,7608,hu.po,,hu,,hungarian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,887,4051,4136,87,584,90,479,1064,5114,hr.po,,hr,,croatian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,1074,5396,6550,0,0,0,0,1074,5396,hi.po,,hi,,hindi,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,846,3709,3883,0,0,117,875,963,4584,he.po,,he,,hebrew,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,1163,5667,6278,0,0,0,0,1163,5667,gu.po,,gu,,gujarati,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,1443,7608,9754,0,0,0,0,1443,7608,gl.po,,gl,,galician,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,290,785,905,134,489,560,3285,984,4559,ga.po,,ga,,irish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,1443,7608,9311,0,0,0,0,1443,7608,fur.po,,fur,,friulian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,1449,7493,9165,0,0,0,0,1449,7493,fr.po,,fr,,french,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,1045,4326,3455,233,1488,171,1679,1449,7493,fi.po,,fi,,finnish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,768,3317,3977,147,945,133,803,1048,5065,fa.po,,fa,,persian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,1355,6654,6282,0,0,88,954,1443,7608,eu.po,,eu,,basque,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,985,4681,4249,0,0,0,0,985,4681,et.po,,et,,estonian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,1443,7608,9375,0,0,0,0,1443,7608,es.po,,es,,spanish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,860,3108,2994,51,288,480,3454,1391,6850,eo.po,,eo,,esperanto,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,1449,7493,7492,0,0,0,0,1449,7493,en_gb.po,,en,gb,english,,united kingdom

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,1041,5044,5044,0,0,0,0,1041,5044,en_ca.po,,en,ca,english,,canada

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_au.po,29,166,187,175,1000,673,3338,877,4504,en_au.po,,en,au,english,,australia

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,716,3166,3167,210,1238,0,0,926,4404,en@shaw.po,shaw,en,,english,shavian,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,1401,6930,7314,17,252,31,311,1449,7493,el.po,,el,,greek,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,1042,5021,2638,0,0,0,0,1042,5021,dz.po,,dz,,dzongkha,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,1443,7608,7539,0,0,0,0,1443,7608,de.po,,de,,german,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,1443,7608,7026,0,0,0,0,1443,7608,da.po,,da,,danish,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,1018,4906,5441,0,0,0,0,1018,4906,cy.po,,cy,,welsh,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,1443,7608,7369,0,0,0,0,1443,7608,cs.po,,cs,,czech,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1252,6434,8901,0,0,0,0,1252,6434,ca@valencia.po,valencia,ca,,catalan,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,1441,7441,9946,0,0,0,0,1441,7441,ca.po,,ca,,catalan,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,1082,5383,5461,0,0,0,0,1082,5383,bs.po,,bs,,bosnian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,1074,5398,5905,0,0,0,0,1074,5398,bn_in.po,,bn,in,bangla,,india

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,997,4910,5506,0,0,0,0,997,4910,bn.po,,bn,,bangla,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,1141,5529,6391,0,0,0,0,1141,5529,bg.po,,bg,,bulgarian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,1166,5681,5467,0,0,0,0,1166,5681,be.po,,be,,belarusian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,717,3438,3215,101,528,59,538,877,4504,az.po,,az,,azerbaijani,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,982,4619,5531,0,0,0,0,982,4619,ast.po,,ast,,asturian,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,1074,5398,5855,0,0,0,0,1074,5398,as.po,,as,,assamese,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,755,3632,3702,197,862,32,177,984,4671,ar.po,,ar,,arabic,,

- evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,73,99,104,137,672,667,3733,877,4504,am.po,,am,,amharic,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/fi.po,207,419,324,1783,4259,4096,33334,6086,38012,fi.po,,fi,,finnish,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ms.po,4877,28305,25657,677,2977,532,6730,6086,38012,ms.po,,ms,,malay,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ru.po,729,3302,2861,3196,9739,2161,24971,6086,38012,ru.po,,ru,,russian,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/pt.po,1853,11784,13364,2073,6846,2160,19382,6086,38012,pt.po,,pt,,portuguese,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/pl.po,2604,12391,11584,1983,6457,1499,19164,6086,38012,pl.po,,pl,,polish,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/gl.po,3879,18175,21481,1098,4311,1109,15526,6086,38012,gl.po,,gl,,galician,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/vi.po,1133,3333,5045,1979,5636,2974,29043,6086,38012,vi.po,,vi,,vietnamese,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ug.po,2058,4663,4763,1644,4415,2384,28934,6086,38012,ug.po,,ug,,uyghur,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/de.po,2563,13583,12358,2068,6889,1455,17540,6086,38012,de.po,,de,,german,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ca.po,3542,13166,17734,1,3,2543,24843,6086,38012,ca.po,,ca,,catalan,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/es.po,4297,26869,31146,327,1668,1462,9475,6086,38012,es.po,,es,,spanish,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/sk.po,2003,9069,8406,2335,7381,1748,21562,6086,38012,sk.po,,sk,,slovak,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/sv.po,5602,35017,27785,345,1703,139,1292,6086,38012,sv.po,,sv,,swedish,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/bs.po,4390,23653,21639,939,3796,757,10563,6086,38012,bs.po,,bs,,bosnian,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/fr.po,1414,4976,5716,2708,8431,1964,24605,6086,38012,fr.po,,fr,,french,,

- exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/uk.po,2102,7418,7022,1764,5067,2220,25527,6086,38012,uk.po,,uk,,ukrainian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,191,1742,267,2,8,0,0,193,1750,zh_cn.po,,zh,cn,chinese,,china

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,28,192,158,0,0,3,143,31,335,te.po,,te,,telugu,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,181,1641,1477,0,0,0,0,181,1641,sv.po,,sv,,swedish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,191,1830,1542,0,0,0,0,191,1830,sl.po,,sl,,slovenian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,191,1829,1517,0,0,0,0,191,1829,ru.po,,ru,,russian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,181,1641,1746,0,0,0,0,181,1641,pt_br.po,,pt,br,portuguese,,brazil

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,181,1641,1209,0,0,0,0,181,1641,pl.po,,pl,,polish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,181,1641,1273,0,0,0,0,181,1641,ko.po,,ko,,korean,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,191,1829,272,0,0,0,0,191,1829,ja.po,,ja,,japanese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/id/id.po,181,1641,1491,0,0,0,0,181,1641,id.po,,id,,indonesian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,181,1641,1344,0,0,0,0,181,1641,hu.po,,hu,,hungarian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,181,1641,1622,0,0,0,0,181,1641,gl.po,,gl,,galician,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,181,1641,1878,0,0,0,0,181,1641,fr.po,,fr,,french,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,166,1346,846,11,221,4,74,181,1641,fi.po,,fi,,finnish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,181,1641,1728,0,0,0,0,181,1641,es.po,,es,,spanish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,181,1641,1768,0,0,0,0,181,1641,el.po,,el,,greek,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,181,1641,1564,0,0,0,0,181,1641,de.po,,de,,german,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/da/da.po,181,1641,1522,0,0,0,0,181,1641,da.po,,da,,danish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,181,1641,1370,0,0,0,0,181,1641,cs.po,,cs,,czech,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,194,1836,1941,0,0,0,0,194,1836,ca.po,,ca,,catalan,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,297,1254,1058,5,20,33,245,335,1519,zu.po,,zu,,zulu,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,276,1207,335,0,0,0,0,276,1207,zh_tw.po,,zh,tw,chinese,,taiwan

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,268,1195,326,0,0,0,0,268,1195,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,275,1201,349,0,0,0,0,275,1201,zh_cn.po,,zh,cn,chinese,,china

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,238,928,788,4,29,2,14,244,971,xh.po,,xh,,xhosa,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,276,1207,1591,0,0,0,0,276,1207,vi.po,,vi,,vietnamese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ur.po,259,1159,1332,0,0,0,0,259,1159,ur.po,,ur,,urdu,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,269,1181,1017,0,0,0,0,269,1181,uk.po,,uk,,ukrainian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,292,1325,996,0,0,0,0,292,1325,ug.po,,ug,,uyghur,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,276,1207,979,0,0,0,0,276,1207,tr.po,,tr,,turkish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,194,702,608,13,77,37,192,244,971,tk.po,,tk,,turkmen,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,267,1187,428,0,0,0,0,267,1187,th.po,,th,,thai,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,268,1195,1160,0,0,0,0,268,1195,tg.po,,tg,,tajik,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,268,1195,1015,0,0,0,0,268,1195,te.po,,te,,telugu,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,268,1195,1039,0,0,0,0,268,1195,ta.po,,ta,,tamil,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,276,1207,1151,0,0,0,0,276,1207,sv.po,,sv,,swedish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,275,1201,1229,0,0,0,0,275,1201,sr@latin.po,latin,sr,,serbian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@ije.po,205,799,766,32,138,7,34,244,971,sr@ije.po,ije,sr,,serbian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,276,1207,1237,0,0,0,0,276,1207,sr.po,,sr,,serbian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,270,1205,1292,0,0,0,0,270,1205,sq.po,,sq,,albanian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,276,1207,1152,0,0,0,0,276,1207,sl.po,,sl,,slovenian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,276,1207,1129,0,0,0,0,276,1207,sk.po,,sk,,slovak,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,206,651,716,0,0,42,417,248,1068,si.po,,si,,sinhala,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,19,20,21,171,838,54,113,244,971,rw.po,,rw,,kinyarwanda,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,276,1207,1045,0,0,0,0,276,1207,ru.po,,ru,,russian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,276,1207,1258,0,0,0,0,276,1207,ro.po,,ro,,romanian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,276,1207,1327,0,0,0,0,276,1207,pt_br.po,,pt,br,portuguese,,brazil

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,275,1206,1244,0,0,0,0,275,1206,pt.po,,pt,,portuguese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,270,1200,1258,1,6,0,0,271,1206,ps.po,,ps,,pashto,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,276,1207,1130,0,0,0,0,276,1207,pl.po,,pl,,polish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,274,1200,1327,0,0,0,0,274,1200,pa.po,,pa,,punjabi,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,270,1198,1305,0,0,0,0,270,1198,or.po,,or,,odia,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,270,1198,1351,0,0,0,0,270,1198,oc.po,,oc,,occitan,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,338,1525,1451,1,1,0,0,339,1526,nn.po,,nn,,norwegian nynorsk,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,276,1207,1185,0,0,0,0,276,1207,nl.po,,nl,,dutch,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,196,616,610,49,272,23,307,268,1195,ne.po,,ne,,nepali,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,146,352,339,0,0,145,966,291,1318,nds.po,,nds,,low german,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,274,1200,1148,0,0,0,0,274,1200,nb.po,,nb,,norwegian bokmål,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,267,1035,440,0,0,38,348,305,1383,my.po,,my,,burmese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,228,872,781,13,77,3,22,244,971,ms.po,,ms,,malay,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,268,1195,1167,0,0,0,0,268,1195,mr.po,,mr,,marathi,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,203,785,658,34,152,7,34,244,971,mn.po,,mn,,mongolian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,292,1325,1034,0,0,0,0,292,1325,ml.po,,ml,,malayalam,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,337,1548,1603,0,0,0,0,337,1548,mk.po,,mk,,macedonian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,226,886,935,31,117,6,175,263,1178,mg.po,,mg,,malagasy,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,235,898,982,0,0,49,369,284,1267,mai.po,,mai,,maithili,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,276,1207,1029,0,0,0,0,276,1207,lv.po,,lv,,latvian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,276,1207,973,0,0,0,0,276,1207,lt.po,,lt,,lithuanian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,233,903,995,2,15,8,29,243,947,ku.po,,ku,,kurdish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,276,1207,975,0,0,0,0,276,1207,ko.po,,ko,,korean,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,268,1195,1057,0,0,0,0,268,1195,kn.po,,kn,,kannada,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,334,1484,620,0,0,3,64,337,1548,km.po,,km,,khmer,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,276,1207,987,0,0,0,0,276,1207,kk.po,,kk,,kazakh,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,239,952,760,0,0,0,0,239,952,ka.po,,ka,,georgian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,276,1207,367,0,0,0,0,276,1207,ja.po,,ja,,japanese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,276,1207,1219,0,0,0,0,276,1207,it.po,,it,,italian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,275,1201,1158,0,0,0,0,275,1201,is.po,,is,,icelandic,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,276,1207,1129,0,0,0,0,276,1207,id.po,,id,,indonesian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,239,955,837,0,0,2,3,241,958,hy.po,,hy,,armenian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,276,1207,1066,0,0,0,0,276,1207,hu.po,,hu,,hungarian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,275,1204,1118,0,0,0,0,275,1204,hr.po,,hr,,croatian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,268,1195,1409,0,0,0,0,268,1195,hi.po,,hi,,hindi,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,269,1181,1086,0,0,0,0,269,1181,he.po,,he,,hebrew,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,270,1198,1319,0,0,0,0,270,1198,gu.po,,gu,,gujarati,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,276,1207,1360,0,0,0,0,276,1207,gl.po,,gl,,galician,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,274,1200,1551,0,0,0,0,274,1200,gd.po,,gd,,scottish gaelic,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,150,412,484,18,75,123,838,291,1325,ga.po,,ga,,irish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,152,470,483,0,0,153,913,305,1383,fy.po,,fy,,western frisian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,276,1207,1391,0,0,0,0,276,1207,fur.po,,fur,,friulian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,276,1207,1404,0,0,0,0,276,1207,fr.po,,fr,,french,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,276,1207,920,0,0,0,0,276,1207,fi.po,,fi,,finnish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,274,1200,1273,0,0,0,0,274,1200,fa.po,,fa,,persian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,274,1200,999,0,0,0,0,274,1200,eu.po,,eu,,basque,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,276,1201,1011,0,0,0,0,276,1201,et.po,,et,,estonian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,276,1207,1303,0,0,0,0,276,1207,es.po,,es,,spanish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,276,1207,1146,0,0,0,0,276,1207,eo.po,,eo,,esperanto,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,275,1201,1228,0,0,0,0,275,1201,en_gb.po,,en,gb,english,,united kingdom

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,253,1084,1093,0,0,0,0,253,1084,en_ca.po,,en,ca,english,,canada

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,243,1043,1043,56,335,0,0,299,1378,en@shaw.po,shaw,en,,english,shavian,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,276,1207,1291,0,0,0,0,276,1207,el.po,,el,,greek,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,259,1159,570,0,0,0,0,259,1159,dz.po,,dz,,dzongkha,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,276,1207,1244,0,0,0,0,276,1207,de.po,,de,,german,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,275,1204,1122,0,0,0,0,275,1204,da.po,,da,,danish,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,242,957,941,0,0,0,0,242,957,cy.po,,cy,,welsh,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/csb.po,21,41,45,0,0,319,1514,340,1555,csb.po,,csb,,kashubian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,276,1207,1116,0,0,0,0,276,1207,cs.po,,cs,,czech,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,274,1200,1384,0,0,0,0,274,1200,ca@valencia.po,valencia,ca,,catalan,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,276,1207,1393,0,0,0,0,276,1207,ca.po,,ca,,catalan,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,268,1195,1160,0,0,0,0,268,1195,bs.po,,bs,,bosnian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,264,1007,1200,0,0,28,318,292,1325,br.po,,br,,breton,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,268,1195,1330,0,0,0,0,268,1195,bn_in.po,,bn,in,bangla,,india

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,297,1370,1466,0,0,0,0,297,1370,bn.po,,bn,,bangla,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,274,1200,1245,0,0,0,0,274,1200,bg.po,,bg,,bulgarian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,284,1267,1127,0,0,0,0,284,1267,be@latin.po,latin,be,,belarusian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,274,1200,1101,0,0,0,0,274,1200,be.po,,be,,belarusian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,228,872,771,13,77,3,22,244,971,az.po,,az,,azerbaijani,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,335,1519,1536,0,0,0,0,335,1519,ast.po,,ast,,asturian,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,270,1198,1309,0,0,0,0,270,1198,as.po,,as,,assamese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,275,1201,1101,0,0,0,0,275,1201,ar.po,,ar,,arabic,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,270,1198,1238,0,0,0,0,270,1198,an.po,,an,,aragonese,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,66,110,142,53,145,125,716,244,971,am.po,,am,,amharic,,

- file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,275,1201,1278,0,0,0,0,275,1201,af.po,,af,,afrikaans,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/lt.po,54,405,378,31,237,154,1926,239,2568,lt.po,,lt,,lithuanian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/hu.po,235,2545,2410,4,23,0,0,239,2568,hu.po,,hu,,hungarian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sl.po,235,2545,2473,4,23,0,0,239,2568,sl.po,,sl,,slovenian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/nl.po,230,2510,2419,6,38,3,20,239,2568,nl.po,,nl,,dutch,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/vi.po,235,2545,3335,3,16,1,7,239,2568,vi.po,,vi,,vietnamese,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/be.po,23,82,78,33,306,183,2180,239,2568,be.po,,be,,belarusian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ko.po,21,86,91,30,228,188,2254,239,2568,ko.po,,ko,,korean,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/rw.po,2,2,2,80,699,157,1867,239,2568,rw.po,,rw,,kinyarwanda,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ms.po,16,55,58,9,54,214,2459,239,2568,ms.po,,ms,,malay,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/hr.po,178,1856,1729,20,220,41,492,239,2568,hr.po,,hr,,croatian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/fi.po,230,2510,2022,7,45,2,13,239,2568,fi.po,,fi,,finnish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/zh_tw.po,42,447,224,57,598,140,1523,239,2568,zh_tw.po,,zh,tw,chinese,,taiwan

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ca.po,56,583,704,63,747,120,1238,239,2568,ca.po,,ca,,catalan,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/zh_cn.po,194,2063,798,15,129,30,376,239,2568,zh_cn.po,,zh,cn,chinese,,china

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sv.po,235,2545,2420,3,16,1,7,239,2568,sv.po,,sv,,swedish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/eo.po,230,2510,2438,7,45,2,13,239,2568,eo.po,,eo,,esperanto,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/uk.po,235,2545,2505,3,16,1,7,239,2568,uk.po,,uk,,ukrainian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sk.po,49,508,510,61,689,129,1371,239,2568,sk.po,,sk,,slovak,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ja.po,180,1866,809,18,208,41,494,239,2568,ja.po,,ja,,japanese,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/fr.po,235,2545,2880,4,23,0,0,239,2568,fr.po,,fr,,french,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ga.po,145,1474,1697,40,504,54,590,239,2568,ga.po,,ga,,irish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/tr.po,222,2422,2054,13,119,4,27,239,2568,tr.po,,tr,,turkish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pt.po,123,1094,1176,61,877,55,597,239,2568,pt.po,,pt,,portuguese,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/nb.po,235,2545,2432,3,16,1,7,239,2568,nb.po,,nb,,norwegian bokmål,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pl.po,235,2545,2423,3,16,1,7,239,2568,pl.po,,pl,,polish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/de.po,230,2510,2486,7,45,2,13,239,2568,de.po,,de,,german,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ru.po,235,2545,2424,3,16,1,7,239,2568,ru.po,,ru,,russian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/et.po,235,2545,2079,3,16,1,7,239,2568,et.po,,et,,estonian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/lg.po,27,103,129,34,315,178,2150,239,2568,lg.po,,lg,,ganda,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/id.po,145,1474,1477,40,504,54,590,239,2568,id.po,,id,,indonesian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/el.po,230,2510,2568,6,38,3,20,239,2568,el.po,,el,,greek,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/bg.po,118,1223,1378,49,603,72,742,239,2568,bg.po,,bg,,bulgarian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/es.po,171,1768,2151,5,32,63,768,239,2568,es.po,,es,,spanish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sr.po,235,2545,2542,3,16,1,7,239,2568,sr.po,,sr,,serbian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ro.po,51,515,534,62,705,126,1348,239,2568,ro.po,,ro,,romanian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/da.po,235,2545,2409,3,16,1,7,239,2568,da.po,,da,,danish,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/it.po,222,2422,2635,13,119,4,27,239,2568,it.po,,it,,italian,,

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pt_br.po,235,2545,2918,3,16,1,7,239,2568,pt_br.po,,pt,br,portuguese,,brazil

- findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/cs.po,235,2545,2385,4,23,0,0,239,2568,cs.po,,cs,,czech,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/zh_tw.po,415,2217,620,0,0,0,0,415,2217,zh_tw.po,,zh,tw,chinese,,taiwan

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/zh_cn.po,391,2082,643,2,13,22,122,415,2217,zh_cn.po,,zh,cn,chinese,,china

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/uk.po,415,2217,2139,0,0,0,0,415,2217,uk.po,,uk,,ukrainian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/tr.po,129,568,542,0,0,286,1649,415,2217,tr.po,,tr,,turkish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/te.po,293,1496,1267,0,0,122,721,415,2217,te.po,,te,,telugu,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ta.po,293,1496,1238,0,0,122,721,415,2217,ta.po,,ta,,tamil,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sv.po,415,2217,2024,0,0,0,0,415,2217,sv.po,,sv,,swedish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sr@latin.po,34,212,207,0,0,381,2005,415,2217,sr@latin.po,latin,sr,,serbian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sr.po,297,1507,1455,0,0,118,710,415,2217,sr.po,,sr,,serbian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sq.po,86,141,152,0,0,329,2076,415,2217,sq.po,,sq,,albanian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sk.po,415,2217,2029,0,0,0,0,415,2217,sk.po,,sk,,slovak,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ru.po,402,2167,1814,0,0,13,50,415,2217,ru.po,,ru,,russian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pt_br.po,414,2209,2474,0,0,1,8,415,2217,pt_br.po,,pt,br,portuguese,,brazil

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pt.po,290,1453,1544,0,0,125,764,415,2217,pt.po,,pt,,portuguese,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pl.po,415,2217,2098,0,0,0,0,415,2217,pl.po,,pl,,polish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pa.po,295,1496,1624,0,0,120,721,415,2217,pa.po,,pa,,punjabi,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/or.po,293,1496,1492,0,0,122,721,415,2217,or.po,,or,,odia,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/nl.po,415,2217,2199,0,0,0,0,415,2217,nl.po,,nl,,dutch,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/mr.po,293,1496,1407,0,0,122,721,415,2217,mr.po,,mr,,marathi,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ml.po,293,1496,1168,0,0,122,721,415,2217,ml.po,,ml,,malayalam,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/lt.po,169,436,402,0,0,246,1781,415,2217,lt.po,,lt,,lithuanian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ko.po,382,2054,1669,0,0,33,163,415,2217,ko.po,,ko,,korean,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/kn.po,293,1496,1253,0,0,122,721,415,2217,kn.po,,kn,,kannada,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ka.po,82,180,170,0,0,333,2037,415,2217,ka.po,,ka,,georgian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ja.po,403,2168,671,0,0,12,49,415,2217,ja.po,,ja,,japanese,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/it.po,406,2142,2229,1,43,8,32,415,2217,it.po,,it,,italian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/id.po,36,135,137,0,0,379,2082,415,2217,id.po,,id,,indonesian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ia.po,4,9,13,0,0,411,2208,415,2217,ia.po,,ia,,interlingua,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/hu.po,415,2217,2067,0,0,0,0,415,2217,hu.po,,hu,,hungarian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/hi.po,293,1496,1676,0,0,122,721,415,2217,hi.po,,hi,,hindi,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/gu.po,293,1496,1558,0,0,122,721,415,2217,gu.po,,gu,,gujarati,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/gl.po,108,434,547,0,0,307,1783,415,2217,gl.po,,gl,,galician,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/fr.po,415,2217,2571,0,0,0,0,415,2217,fr.po,,fr,,french,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/fi.po,302,1124,879,0,0,113,1093,415,2217,fi.po,,fi,,finnish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/eu.po,64,116,118,0,0,351,2101,415,2217,eu.po,,eu,,basque,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/et.po,93,216,206,0,0,322,2001,415,2217,et.po,,et,,estonian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/es.po,415,2217,2440,0,0,0,0,415,2217,es.po,,es,,spanish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/en_us.po,293,1496,1496,67,314,55,407,415,2217,en_us.po,,en,us,english,,united states

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/en_gb.po,203,819,819,0,0,212,1398,415,2217,en_gb.po,,en,gb,english,,united kingdom

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/el.po,125,584,647,0,0,290,1633,415,2217,el.po,,el,,greek,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/de.po,403,2168,2005,0,0,12,49,415,2217,de.po,,de,,german,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/da.po,415,2217,1939,0,0,0,0,415,2217,da.po,,da,,danish,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/cs.po,414,2209,2018,0,0,1,8,415,2217,cs.po,,cs,,czech,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ca.po,415,2217,2631,0,0,0,0,415,2217,ca.po,,ca,,catalan,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/bn_in.po,293,1496,1517,0,0,122,721,415,2217,bn_in.po,,bn,in,bangla,,india

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/bg.po,134,622,664,0,0,281,1595,415,2217,bg.po,,bg,,bulgarian,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/as.po,293,1496,1515,0,0,122,721,415,2217,as.po,,as,,assamese,,

- firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ar.po,34,212,171,0,0,381,2005,415,2217,ar.po,,ar,,arabic,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,816,3989,1533,104,476,38,267,958,4732,zh_tw.po,,zh,tw,chinese,,taiwan

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/uk.po,820,4015,4209,98,434,40,283,958,4732,uk.po,,uk,,ukrainian,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/tr.po,397,1875,1688,309,1434,252,1423,958,4732,tr.po,,tr,,turkish,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/sv.po,515,2372,2282,287,1379,156,981,958,4732,sv.po,,sv,,swedish,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/sk.po,140,509,535,286,1245,532,2978,958,4732,sk.po,,sk,,slovak,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/ru.po,519,2377,2338,253,1202,186,1153,958,4732,ru.po,,ru,,russian,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,657,3109,3574,201,940,100,683,958,4732,pt_br.po,,pt,br,portuguese,,brazil

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/pl.po,958,4732,4769,0,0,0,0,958,4732,pl.po,,pl,,polish,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/id.po,908,4451,4442,34,131,16,150,958,4732,id.po,,id,,indonesian,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/hu.po,527,2452,2443,280,1332,151,948,958,4732,hu.po,,hu,,hungarian,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/gl.po,445,2091,2499,303,1399,210,1242,958,4732,gl.po,,gl,,galician,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/es.po,435,2027,2573,316,1469,207,1236,958,4732,es.po,,es,,spanish,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/de.po,455,2103,2117,289,1367,214,1262,958,4732,de.po,,de,,german,,

- flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/cs.po,871,4061,3965,0,0,87,671,958,4732,cs.po,,cs,,czech,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/nl.po,130,1056,1023,0,0,0,0,130,1056,nl.po,,nl,,dutch,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/el.po,130,1056,1177,0,0,0,0,130,1056,el.po,,el,,greek,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/vi.po,130,1056,1422,0,0,0,0,130,1056,vi.po,,vi,,vietnamese,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fa.po,130,1056,1113,0,0,0,0,130,1056,fa.po,,fa,,persian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_cn.po,130,1056,224,0,0,0,0,130,1056,zh_cn.po,,zh,cn,chinese,,china

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/be.po,130,1056,1001,0,0,0,0,130,1056,be.po,,be,,belarusian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ml.po,111,858,676,0,0,0,0,111,858,ml.po,,ml,,malayalam,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/tr.po,130,1056,880,0,0,0,0,130,1056,tr.po,,tr,,turkish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/he.po,80,517,558,0,0,30,334,110,851,he.po,,he,,hebrew,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/de.po,130,1056,1058,0,0,0,0,130,1056,de.po,,de,,german,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/as.po,123,1003,966,0,0,0,0,123,1003,as.po,,as,,assamese,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fr.po,130,1056,1341,0,0,0,0,130,1056,fr.po,,fr,,french,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/eo.po,36,203,198,5,34,89,819,130,1056,eo.po,,eo,,esperanto,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bs.po,124,1011,953,0,0,0,0,124,1011,bs.po,,bs,,bosnian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ko.po,130,1056,909,0,0,0,0,130,1056,ko.po,,ko,,korean,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pl.po,130,1056,1067,0,0,0,0,130,1056,pl.po,,pl,,polish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ug.po,111,858,778,0,0,0,0,111,858,ug.po,,ug,,uyghur,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/lv.po,130,1056,925,0,0,0,0,130,1056,lv.po,,lv,,latvian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hu.po,130,1056,953,0,0,0,0,130,1056,hu.po,,hu,,hungarian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ca.po,130,1056,1414,0,0,0,0,130,1056,ca.po,,ca,,catalan,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/kk.po,8,10,14,0,0,122,1046,130,1056,kk.po,,kk,,kazakh,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/da.po,130,1056,980,0,0,0,0,130,1056,da.po,,da,,danish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sr.po,130,1056,1072,0,0,0,0,130,1056,sr.po,,sr,,serbian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bn_in.po,123,1003,1004,0,0,0,0,123,1003,bn_in.po,,bn,in,bangla,,india

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sv.po,130,1056,997,0,0,0,0,130,1056,sv.po,,sv,,swedish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ar.po,13,41,40,0,0,96,810,109,851,ar.po,,ar,,arabic,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pa.po,123,1003,1122,0,0,0,0,123,1003,pa.po,,pa,,punjabi,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/te.po,123,1003,812,0,0,0,0,123,1003,te.po,,te,,telugu,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/uk.po,114,947,843,0,0,0,0,114,947,uk.po,,uk,,ukrainian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/cs.po,130,1056,1049,0,0,0,0,130,1056,cs.po,,cs,,czech,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/kn.po,123,1003,845,0,0,0,0,123,1003,kn.po,,kn,,kannada,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/nb.po,113,793,767,2,18,15,245,130,1056,nb.po,,nb,,norwegian bokmål,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/tg.po,6,6,6,0,0,105,852,111,858,tg.po,,tg,,tajik,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hi.po,123,1003,1165,0,0,0,0,123,1003,hi.po,,hi,,hindi,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/it.po,130,1056,1217,0,0,0,0,130,1056,it.po,,it,,italian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/en_gb.po,130,1056,1056,0,0,0,0,130,1056,en_gb.po,,en,gb,english,,united kingdom

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/es.po,130,1056,1344,0,0,0,0,130,1056,es.po,,es,,spanish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ro.po,78,611,778,12,103,33,289,123,1003,ro.po,,ro,,romanian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/oc.po,130,1056,1333,0,0,0,0,130,1056,oc.po,,oc,,occitan,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pt_br.po,130,1056,1252,0,0,0,0,130,1056,pt_br.po,,pt,br,portuguese,,brazil

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ja.po,109,843,315,0,0,1,8,110,851,ja.po,,ja,,japanese,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/eu.po,130,1056,965,0,0,0,0,130,1056,eu.po,,eu,,basque,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_tw.po,130,1056,263,0,0,0,0,130,1056,zh_tw.po,,zh,tw,chinese,,taiwan

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fi.po,34,196,181,1,6,95,854,130,1056,fi.po,,fi,,finnish,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_hk.po,123,1003,257,0,0,0,0,123,1003,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ta.po,123,1003,886,0,0,0,0,123,1003,ta.po,,ta,,tamil,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/or.po,123,1003,952,0,0,0,0,123,1003,or.po,,or,,odia,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pt.po,130,1056,1181,0,0,0,0,130,1056,pt.po,,pt,,portuguese,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ca@valencia.po,123,1003,1322,0,0,0,0,123,1003,ca@valencia.po,valencia,ca,,catalan,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/gu.po,123,1003,1052,0,0,0,0,123,1003,gu.po,,gu,,gujarati,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ru.po,130,1056,995,0,0,0,0,130,1056,ru.po,,ru,,russian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sk.po,130,1056,1093,0,0,0,0,130,1056,sk.po,,sk,,slovak,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bg.po,110,851,1037,0,0,0,0,110,851,bg.po,,bg,,bulgarian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/lt.po,130,1056,868,0,0,0,0,130,1056,lt.po,,lt,,lithuanian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/gl.po,130,1056,1366,0,0,0,0,130,1056,gl.po,,gl,,galician,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/id.po,130,1056,1026,0,0,0,0,130,1056,id.po,,id,,indonesian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/mr.po,123,1003,876,0,0,0,0,123,1003,mr.po,,mr,,marathi,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sr@latin.po,130,1056,1072,0,0,0,0,130,1056,sr@latin.po,latin,sr,,serbian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sl.po,130,1056,1022,0,0,0,0,130,1056,sl.po,,sl,,slovenian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fur.po,130,1056,1319,0,0,0,0,130,1056,fur.po,,fur,,friulian,,

- folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hr.po,95,735,667,3,37,32,284,130,1056,hr.po,,hr,,croatian,,

- fontconfig-2.13.1-6.fc30.src.rpm.stats.csv,po-conf/zh_cn.po,29,157,66,0,0,0,0,29,157,zh_cn.po,,zh,cn,chinese,,china

- fontconfig-2.13.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,106,756,375,0,0,0,0,106,756,zh_cn.po,,zh,cn,chinese,,china

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pt_br.po,57,419,452,0,0,0,0,57,419,pt_br.po,,pt,br,portuguese,,brazil

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ja.po,57,419,79,0,0,0,0,57,419,ja.po,,ja,,japanese,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/da.po,57,419,347,0,0,0,0,57,419,da.po,,da,,danish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nl.po,57,419,412,0,0,0,0,57,419,nl.po,,nl,,dutch,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,57,419,57,419,he.po,,he,,hebrew,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,57,419,57,419,sq.po,,sq,,albanian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/tr.po,57,419,352,0,0,0,0,57,419,tr.po,,tr,,turkish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,57,419,57,419,mr.po,,mr,,marathi,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_cn.po,57,419,90,0,0,0,0,57,419,zh_cn.po,,zh,cn,chinese,,china

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/de.po,57,419,454,0,0,0,0,57,419,de.po,,de,,german,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,57,419,57,419,be.po,,be,,belarusian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/it.po,57,419,376,0,0,0,0,57,419,it.po,,it,,italian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,57,419,57,419,bn_in.po,,bn,in,bangla,,india

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,57,419,57,419,te.po,,te,,telugu,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,57,419,57,419,vi.po,,vi,,vietnamese,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/cs.po,57,419,384,0,0,0,0,57,419,cs.po,,cs,,czech,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,57,419,57,419,ka.po,,ka,,georgian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,57,419,57,419,ast.po,,ast,,asturian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,57,419,57,419,kk.po,,kk,,kazakh,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/eo.po,23,151,144,0,0,34,268,57,419,eo.po,,eo,,esperanto,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hr.po,57,419,395,0,0,0,0,57,419,hr.po,,hr,,croatian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,57,419,57,419,cy.po,,cy,,welsh,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/bg.po,25,163,164,0,0,32,256,57,419,bg.po,,bg,,bulgarian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,57,419,57,419,ms.po,,ms,,malay,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,57,419,57,419,hi.po,,hi,,hindi,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/oc.po,57,419,411,0,0,0,0,57,419,oc.po,,oc,,occitan,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sr.po,57,419,408,0,0,0,0,57,419,sr.po,,sr,,serbian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,57,419,57,419,az.po,,az,,azerbaijani,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pt.po,57,419,435,0,0,0,0,57,419,pt.po,,pt,,portuguese,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ko.po,57,419,259,0,0,0,0,57,419,ko.po,,ko,,korean,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ro.po,23,151,183,0,0,34,268,57,419,ro.po,,ro,,romanian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pl.po,57,419,398,0,0,0,0,57,419,pl.po,,pl,,polish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,57,419,57,419,th.po,,th,,thai,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,57,419,57,419,ga.po,,ga,,irish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,57,419,57,419,ta.po,,ta,,tamil,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_tw.po,57,419,90,0,0,0,0,57,419,zh_tw.po,,zh,tw,chinese,,taiwan

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/lv.po,57,419,359,0,0,0,0,57,419,lv.po,,lv,,latvian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sk.po,57,419,337,0,0,0,0,57,419,sk.po,,sk,,slovak,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,57,419,57,419,or.po,,or,,odia,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,57,419,57,419,eu.po,,eu,,basque,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ar.po,23,151,113,0,0,34,268,57,419,ar.po,,ar,,arabic,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fur.po,57,419,577,0,0,0,0,57,419,fur.po,,fur,,friulian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,57,419,57,419,lt.po,,lt,,lithuanian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fi.po,28,205,127,0,0,29,214,57,419,fi.po,,fi,,finnish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fo.po,23,151,138,0,0,34,268,57,419,fo.po,,fo,,faroese,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ca.po,57,419,417,0,0,0,0,57,419,ca.po,,ca,,catalan,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/en_gb.po,57,419,419,0,0,0,0,57,419,en_gb.po,,en,gb,english,,united kingdom

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,57,419,57,419,fa.po,,fa,,persian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,57,419,57,419,ca@valencia.po,valencia,ca,,catalan,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/id.po,57,419,403,0,0,0,0,57,419,id.po,,id,,indonesian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,57,419,57,419,kn.po,,kn,,kannada,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,57,419,57,419,ml.po,,ml,,malayalam,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,57,419,57,419,wa.po,,wa,,walloon,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,57,419,57,419,sr@latin.po,latin,sr,,serbian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/el.po,57,419,500,0,0,0,0,57,419,el.po,,el,,greek,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,57,419,57,419,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sv.po,57,419,344,0,0,0,0,57,419,sv.po,,sv,,swedish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/uk.po,57,419,412,0,0,0,0,57,419,uk.po,,uk,,ukrainian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,57,419,57,419,et.po,,et,,estonian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,57,419,57,419,nb.po,,nb,,norwegian bokmål,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,57,419,57,419,gu.po,,gu,,gujarati,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/es.po,57,419,461,0,0,0,0,57,419,es.po,,es,,spanish,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pa.po,28,183,193,0,0,29,236,57,419,pa.po,,pa,,punjabi,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,57,419,57,419,as.po,,as,,assamese,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/gl.po,57,419,515,0,0,0,0,57,419,gl.po,,gl,,galician,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,57,419,57,419,nn.po,,nn,,norwegian nynorsk,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ia.po,57,419,448,0,0,0,0,57,419,ia.po,,ia,,interlingua,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fr.po,57,419,435,0,0,0,0,57,419,fr.po,,fr,,french,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hu.po,57,419,364,0,0,0,0,57,419,hu.po,,hu,,hungarian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sl.po,57,419,367,0,0,0,0,57,419,sl.po,,sl,,slovenian,,

- fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ru.po,57,419,393,0,0,0,0,57,419,ru.po,,ru,,russian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,229,1115,309,0,0,0,0,229,1115,zh_tw.po,,zh,tw,chinese,,taiwan

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,280,1371,362,0,0,0,0,280,1371,zh_cn.po,,zh,cn,chinese,,china

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/uk.po,286,1389,1436,0,0,0,0,286,1389,uk.po,,uk,,ukrainian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/tr.po,53,164,183,0,0,0,0,53,164,tr.po,,tr,,turkish,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sv.po,242,1169,1162,0,0,0,0,242,1169,sv.po,,sv,,swedish,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sr.po,181,724,723,0,0,0,0,181,724,sr.po,,sr,,serbian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sk.po,91,386,389,0,0,0,0,91,386,sk.po,,sk,,slovak,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ru.po,154,591,568,0,0,0,0,154,591,ru.po,,ru,,russian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,286,1389,1603,0,0,0,0,286,1389,pt_br.po,,pt,br,portuguese,,brazil

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/pl.po,286,1389,1440,0,0,0,0,286,1389,pl.po,,pl,,polish,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/oc.po,36,99,138,0,0,0,0,36,99,oc.po,,oc,,occitan,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/nl.po,103,439,468,0,0,0,0,103,439,nl.po,,nl,,dutch,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/lt.po,276,1211,1272,0,0,0,0,276,1211,lt.po,,lt,,lithuanian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ky.po,13,15,15,0,0,0,0,13,15,ky.po,,ky,,kyrgyz,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ko.po,280,1371,1130,0,0,0,0,280,1371,ko.po,,ko,,korean,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/kk.po,8,8,9,0,0,0,0,8,8,kk.po,,kk,,kazakh,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/it.po,286,1389,1526,0,0,0,0,286,1389,it.po,,it,,italian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/id.po,181,724,713,0,0,0,0,181,724,id.po,,id,,indonesian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hu.po,284,1371,1237,0,0,0,0,284,1371,hu.po,,hu,,hungarian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hr.po,182,732,705,0,0,0,0,182,732,hr.po,,hr,,croatian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hi.po,18,88,115,0,0,0,0,18,88,hi.po,,hi,,hindi,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/he.po,25,102,97,0,0,0,0,25,102,he.po,,he,,hebrew,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fur.po,159,656,865,0,0,0,0,159,656,fur.po,,fur,,friulian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fr.po,18,88,126,0,0,0,0,18,88,fr.po,,fr,,french,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fi.po,145,722,529,0,0,0,0,145,722,fi.po,,fi,,finnish,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/eu.po,10,12,13,0,0,0,0,10,12,eu.po,,eu,,basque,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/eo.po,19,24,23,0,0,0,0,19,24,eo.po,,eo,,esperanto,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,247,1205,1205,0,0,0,0,247,1205,en_gb.po,,en,gb,english,,united kingdom

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/de.po,214,1003,949,0,0,0,0,214,1003,de.po,,de,,german,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/da.po,286,1389,1297,0,0,0,0,286,1389,da.po,,da,,danish,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/cs.po,229,1115,1126,0,0,0,0,229,1115,cs.po,,cs,,czech,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ca.po,280,1371,1774,0,0,0,0,280,1371,ca.po,,ca,,catalan,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ast.po,15,16,17,0,0,0,0,15,16,ast.po,,ast,,asturian,,

- fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/af.po,94,205,242,0,0,0,0,94,205,af.po,,af,,afrikaans,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ms.po,5,36,32,6,41,734,4684,745,4761,ms.po,,ms,,malay,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,745,4761,1552,0,0,0,0,745,4761,zh_cn.po,,zh,cn,chinese,,china

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/sv.po,745,4761,4845,0,0,0,0,745,4761,sv.po,,sv,,swedish,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/pl.po,564,3425,3588,64,474,117,862,745,4761,pl.po,,pl,,polish,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/pt_br.po,745,4761,5405,0,0,0,0,745,4761,pt_br.po,,pt,br,portuguese,,brazil

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/id.po,658,4100,4143,69,517,18,144,745,4761,id.po,,id,,indonesian,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/vi.po,745,4761,7301,0,0,0,0,745,4761,vi.po,,vi,,vietnamese,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/es.po,359,2356,3101,165,994,221,1411,745,4761,es.po,,es,,spanish,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/fi.po,727,4591,3943,12,114,6,56,745,4761,fi.po,,fi,,finnish,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/da.po,451,2813,2820,95,609,199,1339,745,4761,da.po,,da,,danish,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/fr.po,745,4761,5553,0,0,0,0,745,4761,fr.po,,fr,,french,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/de.po,743,4709,5241,2,52,0,0,745,4761,de.po,,de,,german,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ja.po,389,2507,1273,125,782,231,1472,745,4761,ja.po,,ja,,japanese,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ca.po,681,4272,5542,52,399,12,90,745,4761,ca.po,,ca,,catalan,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/nl.po,681,4272,4319,52,399,12,90,745,4761,nl.po,,nl,,dutch,,

- gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/it.po,745,4761,5251,0,0,0,0,745,4761,it.po,,it,,italian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/cs.po,30,127,133,0,0,0,0,30,127,cs.po,,cs,,czech,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/eu.po,33,159,159,0,0,0,0,33,159,eu.po,,eu,,basque,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/hu.po,30,127,134,0,0,0,0,30,127,hu.po,,hu,,hungarian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,32,154,72,0,0,0,0,32,154,zh_cn.po,,zh,cn,chinese,,china

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/nb.po,20,76,80,0,0,12,78,32,154,nb.po,,nb,,norwegian bokmål,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/sr.po,34,162,173,0,0,0,0,34,162,sr.po,,sr,,serbian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/gl.po,32,154,202,0,0,0,0,32,154,gl.po,,gl,,galician,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/sr@latin.po,34,162,173,0,0,0,0,34,162,sr@latin.po,latin,sr,,serbian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/lt.po,34,162,148,0,0,0,0,34,162,lt.po,,lt,,lithuanian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/da.po,34,162,168,0,0,0,0,34,162,da.po,,da,,danish,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/oc.po,33,159,200,0,0,0,0,33,159,oc.po,,oc,,occitan,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/ru.po,34,162,164,0,0,0,0,34,162,ru.po,,ru,,russian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/fr.po,30,127,161,0,0,0,0,30,127,fr.po,,fr,,french,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/tr.po,34,162,147,0,0,0,0,34,162,tr.po,,tr,,turkish,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/es.po,30,127,159,0,0,0,0,30,127,es.po,,es,,spanish,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/pt_br.po,30,127,147,0,0,0,0,30,127,pt_br.po,,pt,br,portuguese,,brazil

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/fur.po,34,162,198,0,0,0,0,34,162,fur.po,,fur,,friulian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/pl.po,30,127,140,0,0,0,0,30,127,pl.po,,pl,,polish,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/id.po,30,127,137,0,0,0,0,30,127,id.po,,id,,indonesian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/sl.po,34,162,181,0,0,0,0,34,162,sl.po,,sl,,slovenian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/tg.po,32,152,171,0,0,0,0,32,152,tg.po,,tg,,tajik,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/bs.po,32,154,150,0,0,0,0,32,154,bs.po,,bs,,bosnian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/el.po,34,162,178,0,0,0,0,34,162,el.po,,el,,greek,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/lv.po,32,154,146,0,0,0,0,32,154,lv.po,,lv,,latvian,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/de.po,30,127,141,0,0,0,0,30,127,de.po,,de,,german,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/pt.po,34,162,179,0,0,0,0,34,162,pt.po,,pt,,portuguese,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/sv.po,30,127,126,0,0,0,0,30,127,sv.po,,sv,,swedish,,

- gcab-1.1-6.fc30.src.rpm.stats.csv,po/fi.po,24,101,83,0,0,6,26,30,127,fi.po,,fi,,finnish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/vi.po,4685,27633,39374,1422,10155,7223,67638,13330,105426,vi.po,,vi,,vietnamese,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/ja.po,2444,14520,7092,5109,35405,5777,55501,13330,105426,ja.po,,ja,,japanese,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/hr.po,123,527,499,189,926,13018,103973,13330,105426,hr.po,,hr,,croatian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/sv.po,12396,97476,90747,689,5428,245,2522,13330,105426,sv.po,,sv,,swedish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/sr.po,2728,18280,17693,6640,48523,3962,38623,13330,105426,sr.po,,sr,,serbian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/el.po,42,172,188,4216,25475,9072,79779,13330,105426,el.po,,el,,greek,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/es.po,9669,71464,89919,2820,25141,841,8821,13330,105426,es.po,,es,,spanish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/zh_cn.po,4695,31747,10198,6953,55791,1682,17888,13330,105426,zh_cn.po,,zh,cn,chinese,,china

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/nl.po,837,4443,4498,5926,41350,6567,59633,13330,105426,nl.po,,nl,,dutch,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/fr.po,13330,105426,131010,0,0,0,0,13330,105426,fr.po,,fr,,french,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/id.po,3219,22150,22362,6810,51253,3301,32023,13330,105426,id.po,,id,,indonesian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/fi.po,2076,12614,9796,8552,63831,2702,28981,13330,105426,fi.po,,fi,,finnish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/tr.po,2543,16562,14477,6962,51058,3825,37806,13330,105426,tr.po,,tr,,turkish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/da.po,1990,11888,10897,6216,43252,5124,50286,13330,105426,da.po,,da,,danish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/zh_tw.po,2313,14698,6463,8955,69940,2062,20788,13330,105426,zh_tw.po,,zh,tw,chinese,,taiwan

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/de.po,12396,97476,90762,690,5433,244,2517,13330,105426,de.po,,de,,german,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/uk.po,1020,4810,4901,0,0,12310,100616,13330,105426,uk.po,,uk,,ukrainian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/be.po,65,222,216,2346,13376,10919,91828,13330,105426,be.po,,be,,belarusian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/ru.po,11321,86870,82235,674,5287,1335,13269,13330,105426,ru.po,,ru,,russian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/vi.po,211,1340,2142,1,5,4,18,216,1363,vi.po,,vi,,vietnamese,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ja.po,188,1148,556,20,167,8,48,216,1363,ja.po,,ja,,japanese,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/pt_br.po,216,1363,1575,0,0,0,0,216,1363,pt_br.po,,pt,br,portuguese,,brazil

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/sv.po,216,1363,1300,0,0,0,0,216,1363,sv.po,,sv,,swedish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/sr.po,207,1309,1286,4,30,5,24,216,1363,sr.po,,sr,,serbian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/el.po,5,13,16,73,380,138,970,216,1363,el.po,,el,,greek,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/es.po,211,1340,1677,1,5,4,18,216,1363,es.po,,es,,spanish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/zh_cn.po,183,1112,440,22,175,11,76,216,1363,zh_cn.po,,zh,cn,chinese,,china

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/nl.po,205,1299,1352,5,37,6,27,216,1363,nl.po,,nl,,dutch,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/fr.po,216,1363,1717,0,0,0,0,216,1363,fr.po,,fr,,french,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/id.po,182,1105,1114,23,182,11,76,216,1363,id.po,,id,,indonesian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/fi.po,216,1363,1079,0,0,0,0,216,1363,fi.po,,fi,,finnish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/tr.po,185,1122,986,22,187,9,54,216,1363,tr.po,,tr,,turkish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/da.po,216,1363,1304,0,0,0,0,216,1363,da.po,,da,,danish,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/zh_tw.po,203,1282,480,6,46,7,35,216,1363,zh_tw.po,,zh,tw,chinese,,taiwan

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/eo.po,216,1363,1396,0,0,0,0,216,1363,eo.po,,eo,,esperanto,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/de.po,216,1363,1256,0,0,0,0,216,1363,de.po,,de,,german,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/uk.po,216,1363,1345,0,0,0,0,216,1363,uk.po,,uk,,ukrainian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/be.po,4,12,12,27,139,185,1212,216,1363,be.po,,be,,belarusian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ca.po,151,932,1126,41,264,24,167,216,1363,ca.po,,ca,,catalan,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ru.po,216,1363,1320,0,0,0,0,216,1363,ru.po,,ru,,russian,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libstdc++-v3/po/fr.po,4,5,6,0,0,0,0,4,5,fr.po,,fr,,french,,

- gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libstdc++-v3/po/de.po,4,5,4,0,0,0,0,4,5,de.po,,de,,german,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ca.po,496,4074,5384,0,0,0,0,496,4074,ca.po,,ca,,catalan,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/cs.po,497,4088,3994,0,0,0,0,497,4088,cs.po,,cs,,czech,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/uk.po,497,4088,3802,0,0,0,0,497,4088,uk.po,,uk,,ukrainian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sr@latin.po,497,4088,4232,0,0,0,0,497,4088,sr@latin.po,latin,sr,,serbian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sq.po,485,4024,4807,0,0,0,0,485,4024,sq.po,,sq,,albanian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en_gb.po,497,4088,4088,0,0,0,0,497,4088,en_gb.po,,en,gb,english,,united kingdom

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ms.po,345,2295,2161,33,242,83,1417,461,3954,ms.po,,ms,,malay,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/tr.po,497,4088,3404,0,0,0,0,497,4088,tr.po,,tr,,turkish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ar.po,474,3940,3574,9,91,1,4,484,4035,ar.po,,ar,,arabic,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ja.po,496,4074,1646,0,0,0,0,496,4074,ja.po,,ja,,japanese,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sl.po,497,4088,4084,0,0,0,0,497,4088,sl.po,,sl,,slovenian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/he.po,497,4088,4087,0,0,0,0,497,4088,he.po,,he,,hebrew,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pa.po,497,4088,4701,0,0,0,0,497,4088,pa.po,,pa,,punjabi,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/de.po,497,4088,4533,0,0,0,0,497,4088,de.po,,de,,german,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/az.po,397,3479,3208,31,234,33,241,461,3954,az.po,,az,,azerbaijani,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ast.po,497,4088,4700,0,0,0,0,497,4088,ast.po,,ast,,asturian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/eu.po,497,4088,3796,0,0,0,0,497,4088,eu.po,,eu,,basque,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bs.po,443,3832,3670,11,72,7,50,461,3954,bs.po,,bs,,bosnian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bn.po,485,4024,4139,0,0,0,0,485,4024,bn.po,,bn,,bangla,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fr.po,497,4088,5075,0,0,0,0,497,4088,fr.po,,fr,,french,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hr.po,415,3478,3446,6,52,51,432,472,3962,hr.po,,hr,,croatian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/gu.po,497,4088,4445,0,0,0,0,497,4088,gu.po,,gu,,gujarati,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sv.po,497,4088,3991,0,0,0,0,497,4088,sv.po,,sv,,swedish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pl.po,496,4074,4023,0,0,0,0,496,4074,pl.po,,pl,,polish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_hk.po,497,4088,1300,0,0,0,0,497,4088,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/or.po,497,4088,4141,0,0,0,0,497,4088,or.po,,or,,odia,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/te.po,497,4088,3604,0,0,0,0,497,4088,te.po,,te,,telugu,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fi.po,497,4088,3293,0,0,0,0,497,4088,fi.po,,fi,,finnish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_tw.po,497,4088,1300,0,0,0,0,497,4088,zh_tw.po,,zh,tw,chinese,,taiwan

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/yi.po,1,1,1,0,0,460,3953,461,3954,yi.po,,yi,,yiddish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mk.po,477,4004,4344,0,0,0,0,477,4004,mk.po,,mk,,macedonian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ne.po,480,4026,3967,0,0,1,6,481,4032,ne.po,,ne,,nepali,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/be.po,497,4088,3838,0,0,0,0,497,4088,be.po,,be,,belarusian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/lv.po,496,4074,3481,0,0,0,0,496,4074,lv.po,,lv,,latvian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/th.po,497,4088,1820,0,0,0,0,497,4088,th.po,,th,,thai,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/id.po,497,4088,4008,0,0,0,0,497,4088,id.po,,id,,indonesian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/es.po,496,4074,5057,0,0,0,0,496,4074,es.po,,es,,spanish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nl.po,497,4088,4205,0,0,0,0,497,4088,nl.po,,nl,,dutch,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fa.po,444,3752,4159,4,24,13,178,461,3954,fa.po,,fa,,persian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hu.po,497,4088,4032,0,0,0,0,497,4088,hu.po,,hu,,hungarian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/xh.po,443,3832,3244,11,72,7,50,461,3954,xh.po,,xh,,xhosa,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/da.po,497,4088,3891,0,0,0,0,497,4088,da.po,,da,,danish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pt_br.po,497,4088,4748,0,0,0,0,497,4088,pt_br.po,,pt,br,portuguese,,brazil

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bn_in.po,485,4024,4183,0,0,0,0,485,4024,bn_in.po,,bn,in,bangla,,india

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mr.po,485,4024,3849,0,0,0,0,485,4024,mr.po,,mr,,marathi,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hi.po,496,4074,4733,0,0,0,0,496,4074,hi.po,,hi,,hindi,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/lt.po,497,4088,3544,0,0,0,0,497,4088,lt.po,,lt,,lithuanian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/kn.po,484,4035,3566,0,0,0,0,484,4035,kn.po,,kn,,kannada,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/vi.po,485,4024,5953,5,25,7,39,497,4088,vi.po,,vi,,vietnamese,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ug.po,497,4088,3801,0,0,0,0,497,4088,ug.po,,ug,,uyghur,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/rw.po,3,3,3,428,3832,30,119,461,3954,rw.po,,rw,,kinyarwanda,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/km.po,497,4088,1957,0,0,0,0,497,4088,km.po,,km,,khmer,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ca@valencia.po,496,4074,5380,0,0,0,0,496,4074,ca@valencia.po,valencia,ca,,catalan,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/cy.po,484,4035,4233,0,0,0,0,484,4035,cy.po,,cy,,welsh,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nn.po,477,4004,4022,0,0,0,0,477,4004,nn.po,,nn,,norwegian nynorsk,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ku.po,9,10,12,0,0,452,3944,461,3954,ku.po,,ku,,kurdish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/as.po,497,4088,4103,0,0,0,0,497,4088,as.po,,as,,assamese,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/eo.po,114,553,576,2,19,380,3502,496,4074,eo.po,,eo,,esperanto,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mai.po,429,3565,3838,0,0,47,421,476,3986,mai.po,,mai,,maithili,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nb.po,497,4088,4003,0,0,0,0,497,4088,nb.po,,nb,,norwegian bokmål,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/el.po,496,4074,4400,0,0,0,0,496,4074,el.po,,el,,greek,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mn.po,443,3832,3414,11,72,7,50,461,3954,mn.po,,mn,,mongolian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ta.po,497,4088,3251,0,0,0,0,497,4088,ta.po,,ta,,tamil,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ro.po,485,4024,4546,0,0,0,0,485,4024,ro.po,,ro,,romanian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/si.po,11,22,29,0,0,470,4010,481,4032,si.po,,si,,sinhala,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hy.po,483,4025,3888,0,0,0,0,483,4025,hy.po,,hy,,armenian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_cn.po,497,4088,1124,0,0,0,0,497,4088,zh_cn.po,,zh,cn,chinese,,china

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ka.po,481,4032,3302,0,0,0,0,481,4032,ka.po,,ka,,georgian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en_ca.po,481,4032,4030,0,0,0,0,481,4032,en_ca.po,,en,ca,english,,canada

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/am.po,19,40,40,2,9,440,3905,461,3954,am.po,,am,,amharic,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/gl.po,497,4088,5218,0,0,0,0,497,4088,gl.po,,gl,,galician,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sk.po,461,3957,3742,0,0,16,47,477,4004,sk.po,,sk,,slovak,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/dz.po,477,4004,2148,0,0,0,0,477,4004,dz.po,,dz,,dzongkha,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/it.po,497,4088,4609,0,0,0,0,497,4088,it.po,,it,,italian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sr.po,497,4088,4232,0,0,0,0,497,4088,sr.po,,sr,,serbian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/oc.po,45,188,228,0,0,426,3767,471,3955,oc.po,,oc,,occitan,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ml.po,496,4074,3459,0,0,0,0,496,4074,ml.po,,ml,,malayalam,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ru.po,497,4088,3972,0,0,0,0,497,4088,ru.po,,ru,,russian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pt.po,497,4088,4675,0,0,0,0,497,4088,pt.po,,pt,,portuguese,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/is.po,178,1159,1217,22,133,261,2662,461,3954,is.po,,is,,icelandic,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ga.po,61,264,277,16,89,384,3601,461,3954,ga.po,,ga,,irish,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/et.po,393,2728,2310,0,0,90,1286,483,4014,et.po,,et,,estonian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mg.po,477,3998,4428,2,19,0,0,479,4017,mg.po,,mg,,malagasy,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ko.po,497,4088,3534,0,0,0,0,497,4088,ko.po,,ko,,korean,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bg.po,497,4088,4854,0,0,0,0,497,4088,bg.po,,bg,,bulgarian,,

- gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en@shaw.po,484,4035,4035,0,0,0,0,484,4035,en@shaw.po,shaw,en,,english,shavian,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/lt.po,255,704,617,0,0,0,0,255,704,lt.po,,lt,,lithuanian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ca.po,254,700,870,0,0,0,0,254,700,ca.po,,ca,,catalan,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pl.po,255,704,665,0,0,0,0,255,704,pl.po,,pl,,polish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/kn.po,59,115,110,71,205,97,302,227,622,kn.po,,kn,,kannada,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ast.po,64,141,170,71,193,92,288,227,622,ast.po,,ast,,asturian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/cs.po,255,704,672,0,0,0,0,255,704,cs.po,,cs,,czech,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,254,700,872,0,0,0,0,254,700,ca@valencia.po,valencia,ca,,catalan,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ne.po,67,105,118,160,449,27,146,254,700,ne.po,,ne,,nepali,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en_ca.po,0,0,0,10,35,217,587,227,622,en_ca.po,,en,ca,english,,canada

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/de.po,255,704,666,0,0,0,0,255,704,de.po,,de,,german,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/lv.po,255,704,644,0,0,0,0,255,704,lv.po,,lv,,latvian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sq.po,6,11,10,48,159,173,452,227,622,sq.po,,sq,,albanian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/te.po,181,468,412,17,50,44,160,242,678,te.po,,te,,telugu,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/si.po,0,0,0,5,9,222,613,227,622,si.po,,si,,sinhala,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/da.po,255,704,640,0,0,0,0,255,704,da.po,,da,,danish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/oc.po,254,700,809,0,0,0,0,254,700,oc.po,,oc,,occitan,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sl.po,255,704,687,0,0,0,0,255,704,sl.po,,sl,,slovenian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/id.po,255,704,716,0,0,0,0,255,704,id.po,,id,,indonesian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/gl.po,255,704,828,0,0,0,0,255,704,gl.po,,gl,,galician,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ru.po,254,700,645,0,0,0,0,254,700,ru.po,,ru,,russian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sk.po,255,704,679,0,0,0,0,255,704,sk.po,,sk,,slovak,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/uk.po,242,678,602,0,0,0,0,242,678,uk.po,,uk,,ukrainian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hr.po,255,704,656,0,0,0,0,255,704,hr.po,,hr,,croatian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_tw.po,255,704,317,0,0,0,0,255,704,zh_tw.po,,zh,tw,chinese,,taiwan

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pt_br.po,255,704,812,0,0,0,0,255,704,pt_br.po,,pt,br,portuguese,,brazil

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bg.po,241,677,767,0,0,0,0,241,677,bg.po,,bg,,bulgarian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_hk.po,254,700,315,0,0,0,0,254,700,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/he.po,254,700,676,0,0,0,0,254,700,he.po,,he,,hebrew,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/tr.po,255,704,662,0,0,0,0,255,704,tr.po,,tr,,turkish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/be@latin.po,59,115,105,71,205,97,302,227,622,be@latin.po,latin,be,,belarusian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ga.po,7,15,15,15,45,205,562,227,622,ga.po,,ga,,irish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bn_in.po,59,115,113,71,205,97,302,227,622,bn_in.po,,bn,in,bangla,,india

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sr@latin.po,255,704,685,0,0,0,0,255,704,sr@latin.po,latin,sr,,serbian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mr.po,59,115,113,71,205,97,302,227,622,mr.po,,mr,,marathi,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ta.po,242,678,630,0,0,0,0,242,678,ta.po,,ta,,tamil,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,5,9,222,613,227,622,cy.po,,cy,,welsh,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/or.po,60,116,117,70,201,97,305,227,622,or.po,,or,,odia,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nb.po,254,700,682,0,0,0,0,254,700,nb.po,,nb,,norwegian bokmål,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/it.po,255,704,751,0,0,0,0,255,704,it.po,,it,,italian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,1,4,226,618,227,622,rw.po,,rw,,kinyarwanda,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ar.po,143,375,369,48,162,36,85,227,622,ar.po,,ar,,arabic,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/az.po,0,0,0,3,7,224,615,227,622,az.po,,az,,azerbaijani,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bn.po,79,175,183,64,184,84,263,227,622,bn.po,,bn,,bangla,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fr.po,255,704,841,0,0,0,0,255,704,fr.po,,fr,,french,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ml.po,195,461,415,9,43,38,174,242,678,ml.po,,ml,,malayalam,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fi.po,208,531,444,8,42,39,131,255,704,fi.po,,fi,,finnish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pa.po,254,700,759,0,0,0,0,254,700,pa.po,,pa,,punjabi,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pt.po,254,700,787,0,0,0,0,254,700,pt.po,,pt,,portuguese,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,5,9,222,613,227,622,mn.po,,mn,,mongolian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nl.po,255,704,669,0,0,0,0,255,704,nl.po,,nl,,dutch,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hi.po,242,677,798,0,0,0,0,242,677,hi.po,,hi,,hindi,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hu.po,255,704,617,0,0,0,0,255,704,hu.po,,hu,,hungarian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/be.po,254,700,663,0,0,0,0,254,700,be.po,,be,,belarusian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mk.po,6,11,10,48,159,173,452,227,622,mk.po,,mk,,macedonian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fur.po,255,704,789,0,0,0,0,255,704,fur.po,,fur,,friulian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en_gb.po,255,704,706,0,0,0,0,255,704,en_gb.po,,en,gb,english,,united kingdom

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/es.po,255,704,873,0,0,0,0,255,704,es.po,,es,,spanish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,254,700,329,0,0,0,0,254,700,zh_cn.po,,zh,cn,chinese,,china

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/th.po,254,700,327,0,0,0,0,254,700,th.po,,th,,thai,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,3,7,224,615,227,622,xh.po,,xh,,xhosa,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/af.po,72,157,136,66,186,89,279,227,622,af.po,,af,,afrikaans,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/vi.po,254,700,982,0,0,0,0,254,700,vi.po,,vi,,vietnamese,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ja.po,240,669,295,0,0,2,2,242,671,ja.po,,ja,,japanese,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ro.po,255,704,793,0,0,0,0,255,704,ro.po,,ro,,romanian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/tg.po,62,77,88,1,4,179,596,242,677,tg.po,,tg,,tajik,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bs.po,254,700,676,0,0,0,0,254,700,bs.po,,bs,,bosnian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en@shaw.po,52,99,99,81,229,94,294,227,622,en@shaw.po,shaw,en,,english,shavian,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nn.po,76,161,142,66,199,85,262,227,622,nn.po,,nn,,norwegian nynorsk,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/eo.po,177,431,400,11,41,66,228,254,700,eo.po,,eo,,esperanto,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/kk.po,95,189,175,0,0,159,511,254,700,kk.po,,kk,,kazakh,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ko.po,254,700,648,0,0,0,0,254,700,ko.po,,ko,,korean,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/as.po,254,700,719,0,0,0,0,254,700,as.po,,as,,assamese,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/et.po,79,178,160,61,176,87,268,227,622,et.po,,et,,estonian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fa.po,254,700,779,0,0,0,0,254,700,fa.po,,fa,,persian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,227,622,227,622,is.po,,is,,icelandic,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,2,3,225,619,227,622,ka.po,,ka,,georgian,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/gu.po,76,157,172,64,197,87,268,227,622,gu.po,,gu,,gujarati,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,5,9,222,613,227,622,mg.po,,mg,,malagasy,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/el.po,255,704,738,0,0,0,0,255,704,el.po,,el,,greek,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/eu.po,254,700,642,0,0,0,0,254,700,eu.po,,eu,,basque,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ug.po,242,677,643,0,0,0,0,242,677,ug.po,,ug,,uyghur,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mai.po,25,33,33,22,38,180,551,227,622,mai.po,,mai,,maithili,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ms.po,54,106,100,66,172,107,344,227,622,ms.po,,ms,,malay,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/dz.po,1,1,1,21,67,205,554,227,622,dz.po,,dz,,dzongkha,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sv.po,255,704,608,0,0,0,0,255,704,sv.po,,sv,,swedish,,

- gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sr.po,255,704,685,0,0,0,0,255,704,sr.po,,sr,,serbian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/uk.po,1692,11391,12006,0,0,0,0,1692,11391,uk.po,,uk,,ukrainian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ja.po,1013,6811,4307,0,0,286,1419,1299,8230,ja.po,,ja,,japanese,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/sr.po,1398,9119,9435,0,0,0,0,1398,9119,sr.po,,sr,,serbian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/fr.po,1692,11391,13903,0,0,0,0,1692,11391,fr.po,,fr,,french,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ro.po,592,4098,4407,0,0,0,0,592,4098,ro.po,,ro,,romanian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/id.po,1312,8369,8501,0,0,0,0,1312,8369,id.po,,id,,indonesian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/da.po,1398,9119,8504,0,0,0,0,1398,9119,da.po,,da,,danish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/fi.po,1398,9119,7687,0,0,0,0,1398,9119,fi.po,,fi,,finnish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/pt.po,1692,11391,12183,0,0,0,0,1692,11391,pt.po,,pt,,portuguese,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/tr.po,592,4098,3794,0,0,0,0,592,4098,tr.po,,tr,,turkish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/sv.po,1398,9119,8364,0,0,0,0,1398,9119,sv.po,,sv,,swedish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/hr.po,79,195,199,0,0,1233,8174,1312,8369,hr.po,,hr,,croatian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/es.po,1771,11953,13950,0,0,0,0,1771,11953,es.po,,es,,spanish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/rw.po,1,2,2,508,3879,83,217,592,4098,rw.po,,rw,,kinyarwanda,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/zh_cn.po,214,935,437,521,2842,663,5342,1398,9119,zh_cn.po,,zh,cn,chinese,,china

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ru.po,1692,11391,11334,0,0,0,0,1692,11391,ru.po,,ru,,russian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/vi.po,1312,8369,12106,0,0,0,0,1312,8369,vi.po,,vi,,vietnamese,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/uk.po,453,2685,2795,0,0,0,0,453,2685,uk.po,,uk,,ukrainian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/it.po,234,1371,1595,0,0,0,0,234,1371,it.po,,it,,italian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/ga.po,287,1602,1830,0,0,0,0,287,1602,ga.po,,ga,,irish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/de.po,453,2685,2640,0,0,0,0,453,2685,de.po,,de,,german,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/sr.po,287,1602,1611,0,0,0,0,287,1602,sr.po,,sr,,serbian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/fr.po,362,2108,2378,0,0,0,0,362,2108,fr.po,,fr,,french,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/ro.po,148,863,909,0,0,0,0,148,863,ro.po,,ro,,romanian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/id.po,292,1632,1687,0,0,0,0,292,1632,id.po,,id,,indonesian,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/nl.po,234,1371,1419,0,0,0,0,234,1371,nl.po,,nl,,dutch,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/da.po,179,968,946,0,0,55,403,234,1371,da.po,,da,,danish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/fi.po,287,1602,1393,0,0,0,0,287,1602,fi.po,,fi,,finnish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/tr.po,148,863,783,0,0,0,0,148,863,tr.po,,tr,,turkish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/sv.po,453,2685,2485,0,0,0,0,453,2685,sv.po,,sv,,swedish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/es.po,370,2145,2527,0,0,0,0,370,2145,es.po,,es,,spanish,,

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/zh_cn.po,219,1192,525,108,650,43,303,370,2145,zh_cn.po,,zh,cn,chinese,,china

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/pt_br.po,453,2685,3051,0,0,0,0,453,2685,pt_br.po,,pt,br,portuguese,,brazil

- gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/vi.po,292,1632,2494,0,0,0,0,292,1632,vi.po,,vi,,vietnamese,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/da.po,205,739,686,4,19,14,55,223,813,da.po,,da,,danish,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/ja.po,78,246,143,53,224,92,343,223,813,ja.po,,ja,,japanese,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/fr.po,205,739,982,4,19,14,55,223,813,fr.po,,fr,,french,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/pt_br.po,220,800,1003,1,7,2,6,223,813,pt_br.po,,pt,br,portuguese,,brazil

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/fi.po,165,582,512,30,134,28,97,223,813,fi.po,,fi,,finnish,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/uk.po,220,800,903,1,7,2,6,223,813,uk.po,,uk,,ukrainian,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/sv.po,205,739,747,4,19,14,55,223,813,sv.po,,sv,,swedish,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/de.po,165,582,585,30,134,28,97,223,813,de.po,,de,,german,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/vi.po,220,800,1292,1,7,2,6,223,813,vi.po,,vi,,vietnamese,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/eo.po,205,739,749,4,19,14,55,223,813,eo.po,,eo,,esperanto,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/pl.po,220,800,861,1,7,2,6,223,813,pl.po,,pl,,polish,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/sr.po,205,739,810,4,19,14,55,223,813,sr.po,,sr,,serbian,,

- gdbm-1.18-4.fc30.src.rpm.stats.csv,po/es.po,205,739,813,4,19,14,55,223,813,es.po,,es,,spanish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,212,1415,488,0,0,0,0,212,1415,zh_tw.po,,zh,tw,chinese,,taiwan

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,203,1360,484,0,0,0,0,203,1360,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,208,1393,482,0,0,0,0,208,1393,zh_cn.po,,zh,cn,chinese,,china

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/yi.po,118,792,751,73,466,11,90,202,1348,yi.po,,yi,,yiddish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/xh.po,151,987,880,45,294,6,67,202,1348,xh.po,,xh,,xhosa,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/wa.po,134,910,1377,32,181,36,257,202,1348,wa.po,,wa,,walloon,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/vi.po,202,1351,1831,0,0,0,0,202,1351,vi.po,,vi,,vietnamese,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,28,158,137,6,30,168,1160,202,1348,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uz.po,28,158,137,6,30,168,1160,202,1348,uz.po,,uz,,uzbek,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uk.po,203,1360,1432,0,0,0,0,203,1360,uk.po,,uk,,ukrainian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ug.po,202,1354,1107,0,0,0,0,202,1354,ug.po,,ug,,uyghur,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tt.po,67,388,269,25,118,110,842,202,1348,tt.po,,tt,,tatar,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tr.po,212,1415,1157,0,0,0,0,212,1415,tr.po,,tr,,turkish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tk.po,18,92,81,26,119,158,1137,202,1348,tk.po,,tk,,turkmen,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/th.po,203,1360,553,0,0,0,0,203,1360,th.po,,th,,thai,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tg.po,2,9,12,0,0,200,1345,202,1354,tg.po,,tg,,tajik,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/te.po,202,1354,1098,0,0,0,0,202,1354,te.po,,te,,telugu,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ta.po,197,1288,1079,5,60,0,0,202,1348,ta.po,,ta,,tamil,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sv.po,212,1415,1355,0,0,0,0,212,1415,sv.po,,sv,,swedish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,211,1409,1518,0,0,0,0,211,1409,sr@latin.po,latin,sr,,serbian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr@ije.po,137,915,884,59,376,6,57,202,1348,sr@ije.po,ije,sr,,serbian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr.po,212,1415,1527,0,0,0,0,212,1415,sr.po,,sr,,serbian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sq.po,185,1208,1474,12,89,5,51,202,1348,sq.po,,sq,,albanian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sl.po,212,1415,1486,0,0,0,0,212,1415,sl.po,,sl,,slovenian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sk.po,212,1415,1417,0,0,0,0,212,1415,sk.po,,sk,,slovak,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/si.po,151,995,995,35,204,16,149,202,1348,si.po,,si,,sinhala,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ru.po,208,1393,1505,0,0,0,0,208,1393,ru.po,,ru,,russian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ro.po,212,1415,1671,0,0,0,0,212,1415,ro.po,,ro,,romanian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,212,1415,1765,0,0,0,0,212,1415,pt_br.po,,pt,br,portuguese,,brazil

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pt.po,207,1382,1537,0,0,0,0,207,1382,pt.po,,pt,,portuguese,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ps.po,25,120,137,4,19,173,1209,202,1348,ps.po,,ps,,pashto,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pl.po,212,1415,1491,0,0,0,0,212,1415,pl.po,,pl,,polish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pa.po,203,1360,1608,0,0,0,0,203,1360,pa.po,,pa,,punjabi,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/or.po,201,1345,1293,0,0,0,0,201,1345,or.po,,or,,odia,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/oc.po,211,1409,1808,0,0,0,0,211,1409,oc.po,,oc,,occitan,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nso.po,137,915,1487,59,376,6,57,202,1348,nso.po,,nso,,northern sotho,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nn.po,185,1208,1176,12,89,5,51,202,1348,nn.po,,nn,,norwegian nynorsk,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nl.po,212,1415,1357,0,0,0,0,212,1415,nl.po,,nl,,dutch,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ne.po,158,1061,1021,39,236,5,51,202,1348,ne.po,,ne,,nepali,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nds.po,49,257,283,1,3,152,1088,202,1348,nds.po,,nds,,low german,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nb.po,211,1409,1351,0,0,0,0,211,1409,nb.po,,nb,,norwegian bokmål,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/my.po,184,1192,942,12,89,6,67,202,1348,my.po,,my,,burmese,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ms.po,132,870,827,56,355,14,123,202,1348,ms.po,,ms,,malay,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mr.po,197,1288,1322,5,60,0,0,202,1348,mr.po,,mr,,marathi,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mn.po,137,915,859,59,376,6,57,202,1348,mn.po,,mn,,mongolian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ml.po,202,1354,1111,0,0,0,0,202,1354,ml.po,,ml,,malayalam,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mk.po,163,1102,1311,34,195,5,51,202,1348,mk.po,,mk,,macedonian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mi.po,118,741,839,58,359,26,248,202,1348,mi.po,,mi,,maori,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mai.po,184,1192,1283,12,89,6,67,202,1348,mai.po,,mai,,maithili,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/lv.po,212,1415,1262,0,0,0,0,212,1415,lv.po,,lv,,latvian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/lt.po,212,1415,1239,0,0,0,0,212,1415,lt.po,,lt,,lithuanian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/li.po,118,792,749,73,466,11,90,202,1348,li.po,,li,,limburgish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ku.po,177,1171,1263,20,126,5,51,202,1348,ku.po,,ku,,kurdish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ko.po,212,1415,1217,0,0,0,0,212,1415,ko.po,,ko,,korean,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/kn.po,186,1213,1047,11,84,5,51,202,1348,kn.po,,kn,,kannada,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/km.po,192,1245,598,4,27,4,66,200,1338,km.po,,km,,khmer,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/kk.po,61,267,257,0,0,151,1148,212,1415,kk.po,,kk,,kazakh,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ka.po,185,1208,995,12,89,5,51,202,1348,ka.po,,ka,,georgian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ja.po,202,1354,518,0,0,0,0,202,1354,ja.po,,ja,,japanese,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/it.po,212,1415,1608,0,0,0,0,212,1415,it.po,,it,,italian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/is.po,212,1415,1376,0,0,0,0,212,1415,is.po,,is,,icelandic,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/io.po,57,299,276,25,117,120,932,202,1348,io.po,,io,,ido,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/id.po,212,1415,1401,0,0,0,0,212,1415,id.po,,id,,indonesian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ia.po,6,49,42,29,173,167,1126,202,1348,ia.po,,ia,,interlingua,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hy.po,194,1250,1187,8,98,0,0,202,1348,hy.po,,hy,,armenian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hu.po,212,1415,1300,0,0,0,0,212,1415,hu.po,,hu,,hungarian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hr.po,212,1415,1351,0,0,0,0,212,1415,hr.po,,hr,,croatian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hi.po,202,1354,1605,0,0,0,0,202,1354,hi.po,,hi,,hindi,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/he.po,211,1409,1349,0,0,0,0,211,1409,he.po,,he,,hebrew,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/gu.po,184,1192,1226,12,89,6,67,202,1348,gu.po,,gu,,gujarati,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/gl.po,212,1415,1920,0,0,0,0,212,1415,gl.po,,gl,,galician,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ga.po,172,1060,1278,5,50,25,238,202,1348,ga.po,,ga,,irish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fur.po,212,1415,1851,0,0,0,0,212,1415,fur.po,,fur,,friulian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fr.po,212,1415,1797,0,0,0,0,212,1415,fr.po,,fr,,french,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fi.po,148,872,665,42,420,21,117,211,1409,fi.po,,fi,,finnish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fa.po,150,991,1035,45,294,7,63,202,1348,fa.po,,fa,,persian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/eu.po,212,1415,1358,0,0,0,0,212,1415,eu.po,,eu,,basque,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/et.po,203,1360,1095,0,0,0,0,203,1360,et.po,,et,,estonian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/es.po,212,1415,1924,0,0,0,0,212,1415,es.po,,es,,spanish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/eo.po,163,1201,1057,4,41,41,151,208,1393,eo.po,,eo,,esperanto,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,211,1409,1409,0,0,0,0,211,1409,en_gb.po,,en,gb,english,,united kingdom

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,175,1166,1168,22,131,5,51,202,1348,en_ca.po,,en,ca,english,,canada

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,174,1158,1158,28,190,0,0,202,1348,en@shaw.po,shaw,en,,english,shavian,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/el.po,212,1415,1660,0,0,0,0,212,1415,el.po,,el,,greek,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/dz.po,162,1095,573,35,202,5,51,202,1348,dz.po,,dz,,dzongkha,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/de.po,212,1415,1398,0,0,0,0,212,1415,de.po,,de,,german,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/da.po,212,1415,1314,0,0,0,0,212,1415,da.po,,da,,danish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/cy.po,175,1162,1357,22,135,5,51,202,1348,cy.po,,cy,,welsh,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/csb.po,66,481,474,4,43,131,821,201,1345,csb.po,,csb,,kashubian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/cs.po,212,1415,1450,0,0,0,0,212,1415,cs.po,,cs,,czech,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/crh.po,202,1354,1118,0,0,0,0,202,1354,crh.po,,crh,,crimean turkish,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,211,1409,1916,0,0,0,0,211,1409,ca@valencia.po,valencia,ca,,catalan,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ca.po,211,1409,1917,0,0,0,0,211,1409,ca.po,,ca,,catalan,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bs.po,228,1478,1532,0,0,0,0,228,1478,bs.po,,bs,,bosnian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/br.po,53,264,326,7,39,142,1045,202,1348,br.po,,br,,breton,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,197,1288,1310,5,60,0,0,202,1348,bn_in.po,,bn,in,bangla,,india

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bn.po,195,1266,1254,7,82,0,0,202,1348,bn.po,,bn,,bangla,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bg.po,205,1372,1774,0,0,0,0,205,1372,bg.po,,bg,,bulgarian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,185,1208,1205,12,89,5,51,202,1348,be@latin.po,latin,be,,belarusian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/be.po,211,1409,1436,0,0,0,0,211,1409,be.po,,be,,belarusian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/az.po,137,915,795,59,376,6,57,202,1348,az.po,,az,,azerbaijani,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ast.po,197,1288,1581,5,60,0,0,202,1348,ast.po,,ast,,asturian,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/as.po,203,1360,1264,0,0,0,0,203,1360,as.po,,as,,assamese,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ar.po,195,1266,1236,7,82,0,0,202,1348,ar.po,,ar,,arabic,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ang.po,42,223,183,32,163,128,962,202,1348,ang.po,,ang,,old english,,

- gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/af.po,183,1180,1152,8,72,11,96,202,1348,af.po,,af,,afrikaans,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/id/id.po,355,9360,8302,0,0,0,0,355,9360,id.po,,id,,indonesian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/pt_br/pt_br.po,35,114,137,3,30,316,9161,354,9305,pt_br.po,,pt,br,portuguese,,brazil

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/de/de.po,355,9360,8559,0,0,0,0,355,9360,de.po,,de,,german,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/sl/sl.po,39,51,51,0,0,329,9133,368,9184,sl.po,,sl,,slovenian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/gl/gl.po,287,6022,6295,0,0,68,3338,355,9360,gl.po,,gl,,galician,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ca/ca.po,354,9346,9902,1,14,0,0,355,9360,ca.po,,ca,,catalan,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/el/el.po,355,9360,9757,0,0,0,0,355,9360,el.po,,el,,greek,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/oc/oc.po,5,5,5,0,0,1229,30404,1234,30409,oc.po,,oc,,occitan,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/es/es.po,355,9360,10345,0,0,0,0,355,9360,es.po,,es,,spanish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/sv/sv.po,355,9360,8129,0,0,0,0,355,9360,sv.po,,sv,,swedish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/uk/uk.po,863,14012,11584,127,4651,95,5569,1085,24232,uk.po,,uk,,ukrainian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/tr/tr.po,41,156,151,0,0,314,9204,355,9360,tr.po,,tr,,turkish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/cs/cs.po,355,9360,8300,0,0,0,0,355,9360,cs.po,,cs,,czech,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/zh_cn/zh_cn.po,355,9360,1812,0,0,0,0,355,9360,zh_cn.po,,zh,cn,chinese,,china

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/it/it.po,68,1304,1351,0,0,248,6350,316,7654,it.po,,it,,italian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ko/ko.po,411,502,503,11,24,788,28731,1210,29257,ko.po,,ko,,korean,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/en_gb/en_gb.po,333,7968,7974,0,0,0,0,333,7968,en_gb.po,,en,gb,english,,united kingdom

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/fr/fr.po,355,9360,10190,0,0,0,0,355,9360,fr.po,,fr,,french,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ru/ru.po,293,6757,5318,17,946,44,1595,354,9298,ru.po,,ru,,russian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/te/te.po,22,52,52,0,0,348,9227,370,9279,te.po,,te,,telugu,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ro/ro.po,355,9360,9532,0,0,0,0,355,9360,ro.po,,ro,,romanian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/hu/hu.po,30,645,504,0,0,325,8715,355,9360,hu.po,,hu,,hungarian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en_gb.po,84,622,622,0,0,0,0,84,622,en_gb.po,,en,gb,english,,united kingdom

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/da.po,88,629,558,0,0,0,0,88,629,da.po,,da,,danish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zu.po,7,21,22,35,224,45,405,87,650,zu.po,,zu,,zulu,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/he.po,84,622,607,0,0,0,0,84,622,he.po,,he,,hebrew,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ko.po,88,629,478,0,0,0,0,88,629,ko.po,,ko,,korean,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mai.po,42,205,220,19,145,26,300,87,650,mai.po,,mai,,maithili,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kn.po,78,566,445,3,15,6,69,87,650,kn.po,,kn,,kannada,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fa.po,85,626,734,0,0,0,0,85,626,fa.po,,fa,,persian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/be@latin.po,38,171,170,21,129,28,350,87,650,be@latin.po,latin,be,,belarusian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ga.po,40,173,218,5,26,42,451,87,650,ga.po,,ga,,irish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kab.po,87,650,752,0,0,0,0,87,650,kab.po,,kab,,kabyle,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uk.po,84,622,524,0,0,0,0,84,622,uk.po,,uk,,ukrainian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/tg.po,87,650,659,0,0,0,0,87,650,tg.po,,tg,,tajik,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bn.po,49,258,280,12,57,26,335,87,650,bn.po,,bn,,bangla,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/it.po,88,629,702,0,0,0,0,88,629,it.po,,it,,italian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/km.po,80,578,216,3,15,4,57,87,650,km.po,,km,,khmer,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bg.po,85,626,694,0,0,0,0,85,626,bg.po,,bg,,bulgarian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fr.po,88,629,744,0,0,0,0,88,629,fr.po,,fr,,french,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bs.po,87,650,629,0,0,0,0,87,650,bs.po,,bs,,bosnian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ku.po,31,121,122,16,97,40,432,87,650,ku.po,,ku,,kurdish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/eo.po,88,629,580,0,0,0,0,88,629,eo.po,,eo,,esperanto,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/el.po,88,629,684,0,0,0,0,88,629,el.po,,el,,greek,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gd.po,88,629,851,0,0,0,0,88,629,gd.po,,gd,,scottish gaelic,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sv.po,88,629,567,0,0,0,0,88,629,sv.po,,sv,,swedish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fy.po,22,93,80,11,52,54,505,87,650,fy.po,,fy,,western frisian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/xh.po,7,21,26,35,224,45,405,87,650,xh.po,,xh,,xhosa,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nso.po,7,21,37,35,224,45,405,87,650,nso.po,,nso,,northern sotho,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mg.po,34,159,174,19,142,34,349,87,650,mg.po,,mg,,malagasy,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ms.po,81,619,574,4,19,2,12,87,650,ms.po,,ms,,malay,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/csb.po,25,112,117,10,46,52,492,87,650,csb.po,,csb,,kashubian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,45,228,184,4,19,38,403,87,650,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gl.po,88,629,817,0,0,0,0,88,629,gl.po,,gl,,galician,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hi.po,80,578,697,3,15,4,57,87,650,hi.po,,hi,,hindi,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/si.po,20,116,110,21,143,46,391,87,650,si.po,,si,,sinhala,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ta.po,81,619,488,3,15,3,16,87,650,ta.po,,ta,,tamil,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hu.po,88,629,555,0,0,0,0,88,629,hu.po,,hu,,hungarian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/eu.po,88,629,557,0,0,0,0,88,629,eu.po,,eu,,basque,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mr.po,81,619,533,3,15,3,16,87,650,mr.po,,mr,,marathi,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/lt.po,88,629,512,0,0,0,0,88,629,lt.po,,lt,,lithuanian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/af.po,88,629,627,0,0,0,0,88,629,af.po,,af,,afrikaans,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sr.po,88,629,656,0,0,0,0,88,629,sr.po,,sr,,serbian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/es.po,88,629,811,0,0,0,0,88,629,es.po,,es,,spanish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ky.po,67,524,422,7,41,13,85,87,650,ky.po,,ky,,kyrgyz,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uz.po,8,17,15,4,21,75,612,87,650,uz.po,,uz,,uzbek,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sk.po,88,629,609,0,0,0,0,88,629,sk.po,,sk,,slovak,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/be.po,88,629,577,0,0,0,0,88,629,be.po,,be,,belarusian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/id.po,88,629,592,0,0,0,0,88,629,id.po,,id,,indonesian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sq.po,37,175,207,23,176,27,299,87,650,sq.po,,sq,,albanian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/is.po,88,629,636,0,0,0,0,88,629,is.po,,is,,icelandic,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en@shaw.po,28,119,119,33,196,26,335,87,650,en@shaw.po,shaw,en,,english,shavian,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ro.po,88,629,667,0,0,0,0,88,629,ro.po,,ro,,romanian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/rw.po,1,1,2,39,239,47,410,87,650,rw.po,,rw,,kinyarwanda,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ne.po,85,626,520,0,0,0,0,85,626,ne.po,,ne,,nepali,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/crh.po,73,514,437,5,64,9,72,87,650,crh.po,,crh,,crimean turkish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/de.po,88,629,617,0,0,0,0,88,629,de.po,,de,,german,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/tr.po,88,629,549,0,0,0,0,88,629,tr.po,,tr,,turkish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sl.po,88,629,612,0,0,0,0,88,629,sl.po,,sl,,slovenian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nl.po,88,629,571,0,0,0,0,88,629,nl.po,,nl,,dutch,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/az.po,7,21,27,35,224,45,405,87,650,az.po,,az,,azerbaijani,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_hk.po,87,650,161,0,0,0,0,87,650,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hr.po,88,629,577,0,0,0,0,88,629,hr.po,,hr,,croatian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/th.po,87,650,197,0,0,0,0,87,650,th.po,,th,,thai,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/br.po,44,218,269,17,97,26,335,87,650,br.po,,br,,breton,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/et.po,88,629,505,0,0,0,0,88,629,et.po,,et,,estonian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mn.po,7,21,21,35,224,45,405,87,650,mn.po,,mn,,mongolian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/wa.po,3,8,17,16,74,68,568,87,650,wa.po,,wa,,walloon,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ug.po,75,558,454,4,23,8,69,87,650,ug.po,,ug,,uyghur,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/vi.po,88,629,879,0,0,0,0,88,629,vi.po,,vi,,vietnamese,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sr@latin.po,88,629,656,0,0,0,0,88,629,sr@latin.po,latin,sr,,serbian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/an.po,87,650,790,0,0,0,0,87,650,an.po,,an,,aragonese,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kk.po,88,629,539,0,0,0,0,88,629,kk.po,,kk,,kazakh,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,88,629,788,0,0,0,0,88,629,pt_br.po,,pt,br,portuguese,,brazil

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,88,629,157,0,0,0,0,88,629,zh_cn.po,,zh,cn,chinese,,china

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/oc.po,88,629,734,0,0,0,0,88,629,oc.po,,oc,,occitan,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gv.po,41,206,246,16,91,30,353,87,650,gv.po,,gv,,manx,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/cy.po,8,30,33,33,217,46,403,87,650,cy.po,,cy,,welsh,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pt.po,84,622,711,0,0,0,0,84,622,pt.po,,pt,,portuguese,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nb.po,85,626,577,0,0,0,0,85,626,nb.po,,nb,,norwegian bokmål,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bn_in.po,80,578,602,3,15,4,57,87,650,bn_in.po,,bn,in,bangla,,india

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ml.po,88,629,480,0,0,0,0,88,629,ml.po,,ml,,malayalam,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,1,2,86,648,87,650,mi.po,,mi,,maori,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nds.po,24,87,87,6,26,57,537,87,650,nds.po,,nds,,low german,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ja.po,87,626,171,0,0,1,3,88,629,ja.po,,ja,,japanese,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ar.po,87,620,531,1,9,0,0,88,629,ar.po,,ar,,arabic,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gu.po,84,622,636,0,0,0,0,84,622,gu.po,,gu,,gujarati,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fur.po,88,629,764,0,0,0,0,88,629,fur.po,,fur,,friulian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/lv.po,88,629,527,0,0,0,0,88,629,lv.po,,lv,,latvian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hy.po,1,1,1,9,40,77,609,87,650,hy.po,,hy,,armenian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ka.po,4,6,7,38,212,45,432,87,650,ka.po,,ka,,georgian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,85,626,799,0,0,0,0,85,626,ca@valencia.po,valencia,ca,,catalan,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/cs.po,88,629,557,0,0,0,0,88,629,cs.po,,cs,,czech,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en_ca.po,8,30,31,33,217,46,403,87,650,en_ca.po,,en,ca,english,,canada

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ast.po,57,352,403,13,89,17,209,87,650,ast.po,,ast,,asturian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mk.po,60,422,490,14,95,13,133,87,650,mk.po,,mk,,macedonian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fi.po,88,629,441,0,0,0,0,88,629,fi.po,,fi,,finnish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pl.po,88,629,585,0,0,0,0,88,629,pl.po,,pl,,polish,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ca.po,88,629,802,0,0,0,0,88,629,ca.po,,ca,,catalan,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pa.po,88,629,722,0,0,0,0,88,629,pa.po,,pa,,punjabi,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/dz.po,12,50,22,37,236,38,364,87,650,dz.po,,dz,,dzongkha,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/te.po,81,619,487,3,15,3,16,87,650,te.po,,te,,telugu,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/as.po,81,619,593,3,15,3,16,87,650,as.po,,as,,assamese,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/or.po,81,619,585,3,15,3,16,87,650,or.po,,or,,odia,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nn.po,50,299,265,17,85,20,266,87,650,nn.po,,nn,,norwegian nynorsk,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ru.po,88,629,574,0,0,0,0,88,629,ru.po,,ru,,russian,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,88,629,160,0,0,0,0,88,629,zh_tw.po,,zh,tw,chinese,,taiwan

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ps.po,27,109,124,12,76,48,465,87,650,ps.po,,ps,,pashto,,

- gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/am.po,2,2,3,5,9,80,639,87,650,am.po,,am,,amharic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,433,5312,1030,0,0,0,0,433,5312,zh_tw.po,,zh,tw,chinese,,taiwan

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,436,5390,1035,0,0,0,0,436,5390,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,581,6612,1204,0,0,0,0,581,6612,zh_cn.po,,zh,cn,chinese,,china

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,552,6577,5320,0,0,0,0,552,6577,uk.po,,uk,,ukrainian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/th/th.po,219,2555,778,0,0,456,5022,675,7577,th.po,,th,,thai,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,15,29,30,0,0,580,7436,595,7465,te.po,,te,,telugu,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,580,6562,6086,0,0,0,0,580,6562,sv.po,,sv,,swedish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,600,7570,6316,0,0,0,0,600,7570,sl.po,,sl,,slovenian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,580,6559,5328,0,0,0,0,580,6559,ru.po,,ru,,russian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,580,6559,6440,0,0,0,0,580,6559,ro.po,,ro,,romanian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,580,6559,6907,0,0,0,0,580,6559,pt_br.po,,pt,br,portuguese,,brazil

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,580,6562,5098,0,0,0,0,580,6562,pl.po,,pl,,polish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,96,141,165,0,0,592,7615,688,7756,oc.po,,oc,,occitan,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/lv/lv.po,581,6603,5046,0,0,0,0,581,6603,lv.po,,lv,,latvian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,692,7740,5726,0,0,0,0,692,7740,ko.po,,ko,,korean,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,71,316,168,164,1181,366,6089,601,7586,ja.po,,ja,,japanese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,675,7613,7707,0,0,0,0,675,7613,it.po,,it,,italian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,581,6603,5951,0,0,0,0,581,6603,id.po,,id,,indonesian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,580,6562,5469,0,0,0,0,580,6562,hu.po,,hu,,hungarian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,580,6559,6456,0,0,0,0,580,6559,gl.po,,gl,,galician,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,580,6559,7117,0,0,0,0,580,6559,fr.po,,fr,,french,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,211,2280,1403,133,1567,208,2730,552,6577,fi.po,,fi,,finnish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,675,7577,5738,0,0,0,0,675,7577,eu.po,,eu,,basque,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,580,6559,6779,0,0,0,0,580,6559,es.po,,es,,spanish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,581,6612,6702,0,0,0,0,581,6612,el.po,,el,,greek,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,580,6559,6298,0,0,0,0,580,6559,de.po,,de,,german,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,670,7555,7171,0,0,0,0,670,7555,da.po,,da,,danish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,580,6559,5867,0,0,0,0,580,6559,cs.po,,cs,,czech,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,671,7557,8440,3,13,1,7,675,7577,ca.po,,ca,,catalan,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,595,7465,6650,0,0,0,0,595,7465,bg.po,,bg,,bulgarian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ar/ar.po,513,4492,3525,3,62,153,2637,669,7191,ar.po,,ar,,arabic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,727,4279,979,0,0,0,0,727,4279,zh_tw.po,,zh,tw,chinese,,taiwan

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,682,4080,930,0,0,0,0,682,4080,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,721,4267,1051,0,0,0,0,721,4267,zh_cn.po,,zh,cn,chinese,,china

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,999,4120,3612,17,73,3,12,1019,4205,xh.po,,xh,,xhosa,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,501,2030,2528,128,511,391,1665,1020,4206,wa.po,,wa,,walloon,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,726,4278,5307,0,0,0,0,726,4278,vi.po,,vi,,vietnamese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,722,4266,3754,0,0,0,0,722,4266,uk.po,,uk,,ukrainian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,754,4362,3285,0,0,0,0,754,4362,ug.po,,ug,,uyghur,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,727,4279,3412,0,0,0,0,727,4279,tr.po,,tr,,turkish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,526,2502,2118,179,906,315,798,1020,4206,tk.po,,tk,,turkmen,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,722,4266,1225,0,0,0,0,722,4266,th.po,,th,,thai,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,150,214,257,1,1,603,4147,754,4362,tg.po,,tg,,tajik,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,683,4083,3336,0,0,0,0,683,4083,te.po,,te,,telugu,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,684,4084,3444,0,0,0,0,684,4084,ta.po,,ta,,tamil,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,727,4279,4044,0,0,0,0,727,4279,sv.po,,sv,,swedish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,721,4267,4427,0,0,0,0,721,4267,sr@latin.po,latin,sr,,serbian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,726,4278,4434,0,0,0,0,726,4278,sr.po,,sr,,serbian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,1093,4942,5720,0,0,0,0,1093,4942,sq.po,,sq,,albanian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,727,4279,4169,0,0,0,0,727,4279,sl.po,,sl,,slovenian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,721,4267,4036,0,0,0,0,721,4267,sk.po,,sk,,slovak,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,659,1941,2161,0,0,443,3122,1102,5063,si.po,,si,,sinhala,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,202,244,252,648,3615,170,347,1020,4206,rw.po,,rw,,kinyarwanda,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,726,4278,3713,0,0,0,0,726,4278,ru.po,,ru,,russian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,727,4279,4696,0,0,0,0,727,4279,ro.po,,ro,,romanian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,726,4278,4795,0,0,0,0,726,4278,pt_br.po,,pt,br,portuguese,,brazil

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,722,4266,4599,0,0,0,0,722,4266,pt.po,,pt,,portuguese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,622,1929,2072,0,0,475,3081,1097,5010,ps.po,,ps,,pashto,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,727,4279,4056,0,0,0,0,727,4279,pl.po,,pl,,polish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,720,4220,4558,0,0,0,0,720,4220,pa.po,,pa,,punjabi,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,684,4084,4096,0,0,0,0,684,4084,or.po,,or,,odia,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,721,4267,4839,0,0,0,0,721,4267,oc.po,,oc,,occitan,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,655,3549,3368,1,1,92,799,748,4349,nn.po,,nn,,norwegian nynorsk,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,726,4278,4222,0,0,0,0,726,4278,nl.po,,nl,,dutch,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,477,2356,2329,219,1497,26,413,722,4266,ne.po,,ne,,nepali,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,239,438,408,0,0,861,4515,1100,4953,nds.po,,nds,,low german,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,721,4271,4034,0,0,0,0,721,4271,nb.po,,nb,,norwegian bokmål,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,475,1513,1137,0,0,633,3491,1108,5004,my.po,,my,,burmese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,541,2390,2105,176,884,303,932,1020,4206,ms.po,,ms,,malay,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,683,4083,3807,0,0,0,0,683,4083,mr.po,,mr,,marathi,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,507,2180,1901,211,1293,301,732,1019,4205,mn.po,,mn,,mongolian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,721,4271,3425,0,0,0,0,721,4271,ml.po,,ml,,malayalam,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,739,4316,4378,0,0,0,0,739,4316,mk.po,,mk,,macedonian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,54,68,74,131,232,835,3906,1020,4206,mi.po,,mi,,maori,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,1032,4328,4766,14,45,0,0,1046,4373,mg.po,,mg,,malagasy,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,1104,4965,5469,0,0,0,0,1104,4965,mai.po,,mai,,maithili,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,726,4278,3700,0,0,0,0,726,4278,lv.po,,lv,,latvian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,726,4278,3570,0,0,0,0,726,4278,lt.po,,lt,,lithuanian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ln.po,724,4280,4594,0,0,0,0,724,4280,ln.po,,ln,,lingala,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/la.po,8,9,16,0,0,1085,4933,1093,4942,la.po,,la,,latin,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,297,676,760,19,39,786,4348,1102,5063,ku.po,,ku,,kurdish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,726,4278,3070,0,0,0,0,726,4278,ko.po,,ko,,korean,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,684,4084,3430,0,0,0,0,684,4084,kn.po,,kn,,kannada,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,751,4360,1654,0,0,0,0,751,4360,km.po,,km,,khmer,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,669,3162,2540,0,0,57,1116,726,4278,kk.po,,kk,,kazakh,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,311,491,475,371,1693,352,2099,1034,4283,ka.po,,ka,,georgian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,726,4278,1001,0,0,0,0,726,4278,ja.po,,ja,,japanese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,726,4278,4460,0,0,0,0,726,4278,it.po,,it,,italian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,713,3933,3647,0,0,8,338,721,4271,is.po,,is,,icelandic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,727,4279,3938,0,0,0,0,727,4279,id.po,,id,,indonesian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,156,415,357,0,0,877,3917,1033,4332,hy.po,,hy,,armenian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,727,4279,3670,0,0,0,0,727,4279,hu.po,,hu,,hungarian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,721,4271,4078,0,0,0,0,721,4271,hr.po,,hr,,croatian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,683,4083,4844,0,0,0,0,683,4083,hi.po,,hi,,hindi,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,722,4266,3803,0,0,0,0,722,4266,he.po,,he,,hebrew,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,712,4184,4421,0,0,0,0,712,4184,gu.po,,gu,,gujarati,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,727,4279,4824,0,0,0,0,727,4279,gl.po,,gl,,galician,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,721,4267,6000,0,0,0,0,721,4267,gd.po,,gd,,scottish gaelic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,397,996,1124,35,158,315,3122,747,4276,ga.po,,ga,,irish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,726,4278,4913,0,0,0,0,726,4278,fur.po,,fur,,friulian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,727,4279,4917,0,0,0,0,727,4279,fr.po,,fr,,french,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,726,4278,3165,0,0,0,0,726,4278,fi.po,,fi,,finnish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,722,4266,4793,0,0,0,0,722,4266,fa.po,,fa,,persian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,726,4278,3477,0,0,0,0,726,4278,eu.po,,eu,,basque,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,747,4276,3369,0,0,0,0,747,4276,et.po,,et,,estonian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,727,4279,4808,0,0,0,0,727,4279,es.po,,es,,spanish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,710,4084,3756,0,0,0,0,710,4084,eo.po,,eo,,esperanto,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,721,4267,4294,0,0,0,0,721,4267,en_gb.po,,en,gb,english,,united kingdom

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,1028,4339,4344,0,0,0,0,1028,4339,en_ca.po,,en,ca,english,,canada

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,1110,5063,5069,0,0,0,0,1110,5063,en@shaw.po,shaw,en,,english,shavian,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,727,4279,4479,0,0,0,0,727,4279,el.po,,el,,greek,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,1099,4983,2458,0,0,0,0,1099,4983,dz.po,,dz,,dzongkha,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,727,4279,4260,0,0,0,0,727,4279,de.po,,de,,german,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,726,4278,3909,0,0,0,0,726,4278,da.po,,da,,danish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,953,3827,4389,100,747,50,388,1103,4962,cy.po,,cy,,welsh,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,726,4278,4091,0,0,0,0,726,4278,cs.po,,cs,,czech,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,754,4362,3447,0,0,0,0,754,4362,crh.po,,crh,,crimean turkish,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,722,4266,4981,0,0,0,0,722,4266,ca@valencia.po,valencia,ca,,catalan,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,727,4279,4998,0,0,0,0,727,4279,ca.po,,ca,,catalan,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,685,4087,4003,0,0,0,0,685,4087,bs.po,,bs,,bosnian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,787,2495,2806,103,787,214,1681,1104,4963,br.po,,br,,breton,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,684,4084,4396,0,0,0,0,684,4084,bn_in.po,,bn,in,bangla,,india

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1107,5003,5417,0,0,0,0,1107,5003,bn.po,,bn,,bangla,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,722,4266,4420,0,0,0,0,722,4266,bg.po,,bg,,bulgarian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,1099,4948,4656,0,0,0,0,1099,4948,be@latin.po,latin,be,,belarusian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,721,4271,3896,0,0,0,0,721,4271,be.po,,be,,belarusian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,548,2626,2196,176,884,296,696,1020,4206,az.po,,az,,azerbaijani,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,734,4323,4477,0,0,0,0,734,4323,ast.po,,ast,,asturian,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,684,4084,4244,0,0,0,0,684,4084,as.po,,as,,assamese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,721,4265,4174,0,0,0,0,721,4265,ar.po,,ar,,arabic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,688,4104,4705,0,0,0,0,688,4104,an.po,,an,,aragonese,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,257,521,547,203,553,560,3132,1020,4206,am.po,,am,,amharic,,

- gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,683,3317,3347,41,824,3,138,727,4279,af.po,,af,,afrikaans,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sr.po,1504,7291,7040,0,0,0,0,1504,7291,sr.po,,sr,,serbian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/uk.po,1344,4646,4344,149,505,264,3304,1757,8455,uk.po,,uk,,ukrainian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/el.po,1805,8737,8935,0,0,0,0,1805,8737,el.po,,el,,greek,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/de.po,1609,6737,5861,75,491,121,1509,1805,8737,de.po,,de,,german,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/zh_cn.po,747,4149,1646,134,460,70,788,951,5397,zh_cn.po,,zh,cn,chinese,,china

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/tr.po,614,2379,2085,34,64,765,4492,1413,6935,tr.po,,tr,,turkish,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/da.po,1852,9021,8014,0,0,0,0,1852,9021,da.po,,da,,danish,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sl.po,1566,6646,6275,39,299,189,1749,1794,8694,sl.po,,sl,,slovenian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/it.po,1860,9095,9775,0,0,0,0,1860,9095,it.po,,it,,italian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/mr.po,1490,6617,5826,11,51,256,1787,1757,8455,mr.po,,mr,,marathi,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pt.po,1504,7265,8037,6,66,7,57,1517,7388,pt.po,,pt,,portuguese,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ca.po,1719,8130,9848,0,0,0,0,1719,8130,ca.po,,ca,,catalan,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sv.po,1855,9050,7846,0,0,0,0,1855,9050,sv.po,,sv,,swedish,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/oc.po,1292,5922,6708,0,0,196,1298,1488,7220,oc.po,,oc,,occitan,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/eo.po,127,178,173,106,209,1478,7709,1711,8096,eo.po,,eo,,esperanto,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sk.po,68,151,159,0,0,1416,7018,1484,7169,sk.po,,sk,,slovak,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/nb.po,122,187,177,626,1556,747,5495,1495,7238,nb.po,,nb,,norwegian bokmål,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/es.po,1860,9095,10856,0,0,0,0,1860,9095,es.po,,es,,spanish,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pt_br.po,1764,8483,9471,0,0,1,2,1765,8485,pt_br.po,,pt,br,portuguese,,brazil

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ko.po,148,345,285,105,247,698,4805,951,5397,ko.po,,ko,,korean,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/eu.po,1719,8130,6866,0,0,0,0,1719,8130,eu.po,,eu,,basque,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pl.po,1874,9139,8537,0,0,0,0,1874,9139,pl.po,,pl,,polish,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/en_gb.po,596,3578,3578,196,913,159,906,951,5397,en_gb.po,,en,gb,english,,united kingdom

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/fr.po,1186,5686,6517,2,55,241,1264,1429,7005,fr.po,,fr,,french,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/is.po,345,626,600,0,0,1139,6543,1484,7169,is.po,,is,,icelandic,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/lv.po,1418,5684,5158,111,758,218,1963,1747,8405,lv.po,,lv,,latvian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/id.po,76,115,110,313,714,562,4568,951,5397,id.po,,id,,indonesian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ru.po,1078,2944,2870,124,434,645,5605,1847,8983,ru.po,,ru,,russian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/bs.po,1327,6792,6166,0,0,0,0,1327,6792,bs.po,,bs,,bosnian,,

- gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/gl.po,170,283,325,132,287,649,4827,951,5397,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/fi.po,42,514,417,0,0,0,0,42,514,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pt_br.po,42,514,566,0,0,0,0,42,514,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/bg.po,42,514,522,0,0,0,0,42,514,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/it.po,42,514,536,0,0,0,0,42,514,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/da.po,41,509,463,1,5,0,0,42,514,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/uk.po,42,514,490,0,0,0,0,42,514,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/hr.po,42,514,483,0,0,0,0,42,514,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ro.po,25,320,334,14,150,3,44,42,514,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/vi.po,42,514,739,0,0,0,0,42,514,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/de.po,42,514,505,0,0,0,0,42,514,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/en@quot.po,42,514,514,0,0,0,0,42,514,en@quot.po,quot,en,,english,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pl.po,42,514,477,0,0,0,0,42,514,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/id.po,39,428,406,3,86,0,0,42,514,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/et.po,7,18,20,18,295,17,201,42,514,et.po,,et,,estonian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sr.po,42,514,493,0,0,0,0,42,514,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ga.po,28,364,355,14,150,0,0,42,514,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_tw.po,42,514,197,0,0,0,0,42,514,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sv.po,42,514,470,0,0,0,0,42,514,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sk.po,42,514,522,0,0,0,0,42,514,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/el.po,6,16,18,19,297,17,201,42,514,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_hk.po,27,324,126,14,150,1,40,42,514,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sl.po,42,514,455,0,0,0,0,42,514,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/es.po,42,514,600,0,0,0,0,42,514,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/fr.po,42,514,537,0,0,0,0,42,514,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pt.po,28,364,424,14,150,0,0,42,514,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ko.po,42,514,411,0,0,0,0,42,514,ko.po,,ko,,korean,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/hu.po,42,514,486,0,0,0,0,42,514,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/tr.po,41,509,443,1,5,0,0,42,514,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/gl.po,42,514,551,0,0,0,0,42,514,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nb.po,42,514,479,0,0,0,0,42,514,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/en@boldquot.po,42,514,514,0,0,0,0,42,514,en@boldquot.po,boldquot,en,,english,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/cs.po,42,514,492,0,0,0,0,42,514,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nn.po,28,364,363,14,150,0,0,42,514,nn.po,,nn,,norwegian nynorsk,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ca.po,42,514,553,0,0,0,0,42,514,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_cn.po,41,440,155,1,74,0,0,42,514,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ja.po,42,514,265,0,0,0,0,42,514,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/eo.po,42,514,508,0,0,0,0,42,514,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/be.po,14,150,142,16,161,12,203,42,514,be.po,,be,,belarusian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ru.po,42,514,478,0,0,0,0,42,514,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nl.po,42,514,508,0,0,0,0,42,514,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/fi.po,4,15,11,0,0,0,0,4,15,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pt_br.po,4,15,16,0,0,0,0,4,15,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/bg.po,4,15,16,0,0,0,0,4,15,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ast.po,4,15,16,0,0,0,0,4,15,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/it.po,4,15,20,0,0,0,0,4,15,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/af.po,4,15,13,0,0,0,0,4,15,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/da.po,4,15,14,0,0,0,0,4,15,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/uk.po,4,15,14,0,0,0,0,4,15,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/hr.po,4,15,15,0,0,0,0,4,15,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ro.po,4,15,14,0,0,0,0,4,15,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/vi.po,4,15,22,0,0,0,0,4,15,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/de.po,4,15,13,0,0,0,0,4,15,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pl.po,4,15,17,0,0,0,0,4,15,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/id.po,4,15,14,0,0,0,0,4,15,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sr.po,4,15,15,0,0,0,0,4,15,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ga.po,4,15,21,0,0,0,0,4,15,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_tw.po,4,15,5,0,0,0,0,4,15,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sv.po,4,15,12,0,0,0,0,4,15,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sk.po,4,15,15,0,0,0,0,4,15,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/el.po,4,15,17,0,0,0,0,4,15,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_hk.po,4,15,5,0,0,0,0,4,15,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sl.po,4,15,14,0,0,0,0,4,15,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/es.po,4,15,18,0,0,0,0,4,15,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/fr.po,4,15,20,0,0,0,0,4,15,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pt.po,4,15,19,0,0,0,0,4,15,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/hu.po,4,15,14,0,0,0,0,4,15,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ms.po,4,15,14,0,0,0,0,4,15,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/tr.po,4,15,14,0,0,0,0,4,15,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/gl.po,4,15,16,0,0,0,0,4,15,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/nb.po,4,15,13,0,0,0,0,4,15,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/cs.po,4,15,14,0,0,0,0,4,15,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ca.po,4,15,17,0,0,0,0,4,15,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_cn.po,4,15,6,0,0,0,0,4,15,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ja.po,4,15,8,0,0,0,0,4,15,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/eo.po,4,15,13,0,0,0,0,4,15,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ru.po,4,15,15,0,0,0,0,4,15,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/nl.po,4,15,12,0,0,0,0,4,15,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ky.po,4,15,15,0,0,0,0,4,15,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/lv.po,4,15,15,0,0,0,0,4,15,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/mt.po,4,15,17,0,0,0,0,4,15,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/fi.po,9,37,27,0,0,0,0,9,37,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pt_br.po,9,37,38,0,0,0,0,9,37,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/bg.po,9,37,39,0,0,0,0,9,37,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ast.po,1,2,2,1,10,7,25,9,37,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/it.po,9,37,42,0,0,0,0,9,37,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/af.po,1,2,2,1,10,7,25,9,37,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/da.po,9,37,32,0,0,0,0,9,37,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/uk.po,9,37,33,0,0,0,0,9,37,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/hr.po,9,37,39,0,0,0,0,9,37,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ro.po,9,37,38,0,0,0,0,9,37,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/vi.po,9,37,50,0,0,0,0,9,37,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/de.po,9,37,35,0,0,0,0,9,37,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pl.po,9,37,35,0,0,0,0,9,37,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/id.po,1,2,2,1,10,7,25,9,37,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sr.po,9,37,41,0,0,0,0,9,37,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ga.po,1,2,4,1,10,7,25,9,37,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_tw.po,9,37,15,0,0,0,0,9,37,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sv.po,9,37,34,0,0,0,0,9,37,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sk.po,9,37,35,0,0,0,0,9,37,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/el.po,1,2,3,1,10,7,25,9,37,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_hk.po,1,2,1,1,10,7,25,9,37,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sl.po,9,37,32,0,0,0,0,9,37,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/es.po,9,37,38,0,0,0,0,9,37,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/fr.po,9,37,47,0,0,0,0,9,37,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pt.po,1,2,2,1,10,7,25,9,37,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/hu.po,9,37,31,0,0,0,0,9,37,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ms.po,9,37,37,0,0,0,0,9,37,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/tr.po,1,2,2,1,10,7,25,9,37,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/gl.po,2,4,5,1,10,6,23,9,37,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/nb.po,9,37,34,0,0,0,0,9,37,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/cs.po,9,37,38,0,0,0,0,9,37,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ca.po,9,37,43,0,0,0,0,9,37,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_cn.po,9,37,14,0,0,0,0,9,37,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ja.po,9,37,14,0,0,0,0,9,37,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/eo.po,9,37,39,0,0,0,0,9,37,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ru.po,9,37,33,0,0,0,0,9,37,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/nl.po,9,37,38,0,0,0,0,9,37,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ky.po,1,2,2,1,10,7,25,9,37,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/lv.po,1,2,2,1,10,7,25,9,37,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/mt.po,1,2,3,1,10,7,25,9,37,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/fi.po,3,18,12,0,0,0,0,3,18,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pt_br.po,3,18,20,0,0,0,0,3,18,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/bg.po,3,18,17,0,0,0,0,3,18,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ast.po,3,18,18,0,0,0,0,3,18,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/it.po,3,18,22,0,0,0,0,3,18,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/af.po,3,18,14,0,0,0,0,3,18,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/da.po,3,18,16,0,0,0,0,3,18,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/uk.po,3,18,18,0,0,0,0,3,18,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/hr.po,3,18,18,0,0,0,0,3,18,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ro.po,3,18,16,0,0,0,0,3,18,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/vi.po,3,18,25,0,0,0,0,3,18,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/de.po,3,18,16,0,0,0,0,3,18,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pl.po,3,18,18,0,0,0,0,3,18,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/id.po,3,18,16,0,0,0,0,3,18,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sr.po,3,18,18,0,0,0,0,3,18,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ga.po,3,18,22,0,0,0,0,3,18,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_tw.po,3,18,5,0,0,0,0,3,18,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sv.po,3,18,16,0,0,0,0,3,18,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sk.po,3,18,18,0,0,0,0,3,18,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/el.po,3,18,19,0,0,0,0,3,18,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_hk.po,3,18,5,0,0,0,0,3,18,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sl.po,3,18,16,0,0,0,0,3,18,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/es.po,3,18,20,0,0,0,0,3,18,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/fr.po,3,18,23,0,0,0,0,3,18,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pt.po,3,18,26,0,0,0,0,3,18,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/hu.po,3,18,16,0,0,0,0,3,18,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ms.po,3,18,16,0,0,0,0,3,18,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/tr.po,3,18,16,0,0,0,0,3,18,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/gl.po,3,18,20,0,0,0,0,3,18,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/nb.po,3,18,16,0,0,0,0,3,18,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/cs.po,3,18,16,0,0,0,0,3,18,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ca.po,3,18,22,0,0,0,0,3,18,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_cn.po,3,18,7,0,0,0,0,3,18,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ja.po,3,18,8,0,0,0,0,3,18,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/eo.po,3,18,20,0,0,0,0,3,18,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ru.po,3,18,18,0,0,0,0,3,18,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/nl.po,3,18,16,0,0,0,0,3,18,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ky.po,3,18,18,0,0,0,0,3,18,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/lv.po,3,18,18,0,0,0,0,3,18,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/mt.po,3,18,17,0,0,0,0,3,18,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/fi.po,18,98,66,0,0,0,0,18,98,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pt_br.po,18,98,106,0,0,0,0,18,98,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/bg.po,18,98,94,0,0,0,0,18,98,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ast.po,10,63,64,1,10,7,25,18,98,ast.po,,ast,,asturian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/it.po,18,98,120,0,0,0,0,18,98,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/af.po,10,63,49,1,10,7,25,18,98,af.po,,af,,afrikaans,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/da.po,18,98,86,0,0,0,0,18,98,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/uk.po,18,98,93,0,0,0,0,18,98,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/hr.po,18,98,100,0,0,0,0,18,98,hr.po,,hr,,croatian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ro.po,18,98,92,0,0,0,0,18,98,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/vi.po,18,98,135,0,0,0,0,18,98,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/de.po,18,98,88,0,0,0,0,18,98,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pl.po,18,98,98,0,0,0,0,18,98,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/id.po,10,63,56,1,10,7,25,18,98,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sr.po,18,98,102,0,0,0,0,18,98,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ga.po,10,63,75,1,10,7,25,18,98,ga.po,,ga,,irish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_tw.po,18,98,31,0,0,0,0,18,98,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sv.po,18,98,86,0,0,0,0,18,98,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sk.po,18,98,96,0,0,0,0,18,98,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/el.po,10,63,65,1,10,7,25,18,98,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_hk.po,10,63,17,1,10,7,25,18,98,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sl.po,18,98,86,0,0,0,0,18,98,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/es.po,18,98,108,0,0,0,0,18,98,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/fr.po,18,98,124,0,0,0,0,18,98,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pt.po,10,63,91,1,10,7,25,18,98,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/hu.po,18,98,85,0,0,0,0,18,98,hu.po,,hu,,hungarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ms.po,18,98,91,0,0,0,0,18,98,ms.po,,ms,,malay,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/tr.po,10,63,56,1,10,7,25,18,98,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/gl.po,11,65,73,1,10,6,23,18,98,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/nb.po,18,98,87,0,0,0,0,18,98,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/cs.po,18,98,92,0,0,0,0,18,98,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ca.po,18,98,118,0,0,0,0,18,98,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_cn.po,18,98,37,0,0,0,0,18,98,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ja.po,18,98,38,0,0,0,0,18,98,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/eo.po,18,98,104,0,0,0,0,18,98,eo.po,,eo,,esperanto,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ru.po,18,98,94,0,0,0,0,18,98,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/nl.po,18,98,90,0,0,0,0,18,98,nl.po,,nl,,dutch,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ky.po,10,63,63,1,10,7,25,18,98,ky.po,,ky,,kyrgyz,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/lv.po,10,63,63,1,10,7,25,18,98,lv.po,,lv,,latvian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/mt.po,10,63,59,1,10,7,25,18,98,mt.po,,mt,,maltese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/eu.po,380,2940,2707,176,1782,143,2120,699,6842,eu.po,,eu,,basque,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/fi.po,633,6487,5031,30,158,36,197,699,6842,fi.po,,fi,,finnish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pt_br.po,696,6822,7619,3,20,0,0,699,6842,pt_br.po,,pt,br,portuguese,,brazil

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/bg.po,699,6842,7154,0,0,0,0,699,6842,bg.po,,bg,,bulgarian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/it.po,627,6444,7016,28,145,44,253,699,6842,it.po,,it,,italian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/da.po,548,5535,4932,91,910,60,397,699,6842,da.po,,da,,danish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/uk.po,699,6842,6375,0,0,0,0,699,6842,uk.po,,uk,,ukrainian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ro.po,396,3765,3989,193,2185,110,892,699,6842,ro.po,,ro,,romanian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/vi.po,699,6842,9852,0,0,0,0,699,6842,vi.po,,vi,,vietnamese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pa.po,210,1136,1271,65,383,424,5323,699,6842,pa.po,,pa,,punjabi,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/de.po,633,6487,6420,30,158,36,197,699,6842,de.po,,de,,german,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/en@quot.po,699,6842,6842,0,0,0,0,699,6842,en@quot.po,quot,en,,english,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pl.po,699,6842,6467,0,0,0,0,699,6842,pl.po,,pl,,polish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/id.po,544,5523,5301,94,923,61,396,699,6842,id.po,,id,,indonesian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/et.po,55,332,324,136,1220,508,5290,699,6842,et.po,,et,,estonian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sr.po,699,6842,6419,0,0,0,0,699,6842,sr.po,,sr,,serbian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/zh_tw.po,402,3657,1503,163,1940,134,1245,699,6842,zh_tw.po,,zh,tw,chinese,,taiwan

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sv.po,699,6842,5998,0,0,0,0,699,6842,sv.po,,sv,,swedish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sk.po,699,6842,6453,0,0,0,0,699,6842,sk.po,,sk,,slovak,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/el.po,35,184,214,143,1265,521,5393,699,6842,el.po,,el,,greek,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sl.po,696,6822,6590,3,20,0,0,699,6842,sl.po,,sl,,slovenian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/es.po,696,6822,8306,3,20,0,0,699,6842,es.po,,es,,spanish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/fr.po,699,6842,8174,0,0,0,0,699,6842,fr.po,,fr,,french,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pt.po,29,151,176,85,757,585,5934,699,6842,pt.po,,pt,,portuguese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ko.po,699,6842,5626,0,0,0,0,699,6842,ko.po,,ko,,korean,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/tr.po,493,5031,4203,131,1285,75,526,699,6842,tr.po,,tr,,turkish,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/gl.po,199,1349,1624,35,336,465,5157,699,6842,gl.po,,gl,,galician,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nb.po,55,332,315,136,1220,508,5290,699,6842,nb.po,,nb,,norwegian bokmål,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/en@boldquot.po,699,6842,6869,0,0,0,0,699,6842,en@boldquot.po,boldquot,en,,english,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/cs.po,55,332,354,109,1036,535,5474,699,6842,cs.po,,cs,,czech,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nn.po,94,881,789,100,903,505,5058,699,6842,nn.po,,nn,,norwegian nynorsk,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ca.po,633,6487,7775,30,158,36,197,699,6842,ca.po,,ca,,catalan,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/zh_cn.po,633,6487,2233,30,158,36,197,699,6842,zh_cn.po,,zh,cn,chinese,,china

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ja.po,699,6842,3176,0,0,0,0,699,6842,ja.po,,ja,,japanese,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/be.po,151,1154,1104,136,1197,412,4491,699,6842,be.po,,be,,belarusian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ru.po,617,6356,5904,36,205,46,281,699,6842,ru.po,,ru,,russian,,

- gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nl.po,422,3220,3070,8,38,269,3584,699,6842,nl.po,,nl,,dutch,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/zh_cn.po,366,1755,665,7,18,17,60,390,1833,zh_cn.po,,zh,cn,chinese,,china

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/vi.po,543,2517,3958,0,0,0,0,543,2517,vi.po,,vi,,vietnamese,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/sv.po,547,2534,2614,0,0,0,0,547,2534,sv.po,,sv,,swedish,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/ru.po,520,2359,2239,0,0,0,0,520,2359,ru.po,,ru,,russian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/pt_pt.po,550,2546,2885,0,0,0,0,550,2546,pt_pt.po,,pt,pt,portuguese,,portugal

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/pt_br.po,520,2359,2659,0,0,0,0,520,2359,pt_br.po,,pt,br,portuguese,,brazil

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/nb.po,474,1882,1982,0,0,39,443,513,2325,nb.po,,nb,,norwegian bokmål,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/ja.po,546,2532,896,0,0,1,2,547,2534,ja.po,,ja,,japanese,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/it.po,519,2358,2830,0,0,1,1,520,2359,it.po,,it,,italian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/hu.po,514,2328,2367,0,0,0,0,514,2328,hu.po,,hu,,hungarian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/fr.po,520,2359,2916,0,0,0,0,520,2359,fr.po,,fr,,french,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/el.po,381,1827,1982,4,9,6,6,391,1842,el.po,,el,,greek,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/de.po,520,2359,2430,0,0,0,0,520,2359,de.po,,de,,german,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/bg.po,565,2607,3145,0,0,0,0,565,2607,bg.po,,bg,,bulgarian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/zh_cn.po,34,70,34,0,0,0,0,34,70,zh_cn.po,,zh,cn,chinese,,china

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/pt_pt.po,67,119,127,0,0,0,0,67,119,pt_pt.po,,pt,pt,portuguese,,portugal

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/pt_br.po,37,62,54,0,0,1,13,38,75,pt_br.po,,pt,br,portuguese,,brazil

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/it.po,37,74,195,0,0,0,0,37,74,it.po,,it,,italian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/fr.po,36,61,51,0,0,1,13,37,74,fr.po,,fr,,french,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/el.po,36,60,57,1,2,1,13,38,75,el.po,,el,,greek,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/de.po,38,75,159,0,0,0,0,38,75,de.po,,de,,german,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/bg.po,67,119,120,0,0,0,0,67,119,bg.po,,bg,,bulgarian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/vi.po,307,1135,1820,0,0,0,0,307,1135,vi.po,,vi,,vietnamese,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/sv.po,311,1143,1160,0,0,0,0,311,1143,sv.po,,sv,,swedish,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ru.po,317,1167,1198,0,0,0,0,317,1167,ru.po,,ru,,russian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/pt_pt.po,311,1143,1351,0,0,0,0,311,1143,pt_pt.po,,pt,pt,portuguese,,portugal

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/pt_br.po,279,970,1113,16,116,12,49,307,1135,pt_br.po,,pt,br,portuguese,,brazil

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ja.po,311,1143,515,0,0,0,0,311,1143,ja.po,,ja,,japanese,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/it.po,274,963,1181,17,119,16,53,307,1135,it.po,,it,,italian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/hu.po,277,976,1025,18,121,12,38,307,1135,hu.po,,hu,,hungarian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/fr.po,311,1143,1470,0,0,0,0,311,1143,fr.po,,fr,,french,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/es.po,184,634,780,46,179,77,322,307,1135,es.po,,es,,spanish,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/de.po,307,1135,1107,0,0,0,0,307,1135,de.po,,de,,german,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ca.po,307,1135,1494,0,0,0,0,307,1135,ca.po,,ca,,catalan,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/bg.po,311,1143,1320,0,0,0,0,311,1143,bg.po,,bg,,bulgarian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,4363,29326,11460,0,0,0,0,4363,29326,zh_cn.po,,zh,cn,chinese,,china

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/vi.po,4187,28089,41616,0,0,0,0,4187,28089,vi.po,,vi,,vietnamese,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/sv.po,4363,29326,28133,0,0,0,0,4363,29326,sv.po,,sv,,swedish,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/ru.po,3366,22514,23326,0,0,594,4111,3960,26625,ru.po,,ru,,russian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/pt_pt.po,3198,21526,24299,0,0,0,0,3198,21526,pt_pt.po,,pt,pt,portuguese,,portugal

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/ko.po,3608,24346,21312,0,0,0,0,3608,24346,ko.po,,ko,,korean,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/it.po,2347,15566,17960,583,3156,1433,10604,4363,29326,it.po,,it,,italian,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/is.po,14,81,80,0,0,0,0,14,81,is.po,,is,,icelandic,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/fr.po,4363,29326,34255,0,0,0,0,4363,29326,fr.po,,fr,,french,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/es.po,4363,29326,33250,0,0,0,0,4363,29326,es.po,,es,,spanish,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/el.po,1038,7892,9184,0,0,3325,21434,4363,29326,el.po,,el,,greek,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/de.po,4363,29326,29980,0,0,0,0,4363,29326,de.po,,de,,german,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/ca.po,3450,22883,27720,417,2655,318,2545,4185,28083,ca.po,,ca,,catalan,,

- git-2.21.0-1.fc30.src.rpm.stats.csv,po/bg.po,4363,29326,35754,0,0,0,0,4363,29326,bg.po,,bg,,bulgarian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,988,5877,1967,114,938,37,291,1139,7106,zh_tw.po,,zh,tw,chinese,,taiwan

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,905,5703,1802,0,0,0,0,905,5703,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,1067,6647,2046,0,0,0,0,1067,6647,zh_cn.po,,zh,cn,chinese,,china

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/yi.po,105,688,692,127,715,515,3374,747,4777,yi.po,,yi,,yiddish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/xh.po,131,902,729,142,769,474,3106,747,4777,xh.po,,xh,,xhosa,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/wa.po,68,281,386,123,657,556,3839,747,4777,wa.po,,wa,,walloon,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/vi.po,916,5762,8063,0,0,0,0,916,5762,vi.po,,vi,,vietnamese,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/uk.po,903,5675,5555,0,0,0,0,903,5675,uk.po,,uk,,ukrainian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ug.po,860,5426,5080,0,0,4,38,864,5464,ug.po,,ug,,uyghur,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tt.po,81,345,297,101,513,565,3919,747,4777,tt.po,,tt,,tatar,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tr.po,1150,7157,6248,0,0,0,0,1150,7157,tr.po,,tr,,turkish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tl.po,150,1021,1212,129,676,468,3080,747,4777,tl.po,,tl,,tagalog,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/th.po,1066,6642,2868,0,0,0,0,1066,6642,th.po,,th,,thai,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tg.po,79,119,115,27,101,758,5244,864,5464,tg.po,,tg,,tajik,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/te.po,905,5703,4929,0,0,0,0,905,5703,te.po,,te,,telugu,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ta.po,905,5703,4992,0,0,0,0,905,5703,ta.po,,ta,,tamil,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sv.po,1150,7157,6851,0,0,0,0,1150,7157,sv.po,,sv,,swedish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1131,7036,7206,0,0,0,0,1131,7036,sr@latin.po,latin,sr,,serbian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@ije.po,106,706,648,134,736,507,3335,747,4777,sr@ije.po,ije,sr,,serbian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr.po,1150,7157,7326,0,0,0,0,1150,7157,sr.po,,sr,,serbian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sq.po,358,2080,2542,98,476,291,2221,747,4777,sq.po,,sq,,albanian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sl.po,1150,7157,7302,0,0,0,0,1150,7157,sl.po,,sl,,slovenian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sk.po,1092,6591,6603,39,446,8,69,1139,7106,sk.po,,sk,,slovak,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/si.po,97,385,417,115,566,535,3826,747,4777,si.po,,si,,sinhala,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/rw.po,32,36,44,239,1640,476,3101,747,4777,rw.po,,rw,,kinyarwanda,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ru.po,1050,6425,6351,51,374,30,237,1131,7036,ru.po,,ru,,russian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ro.po,1150,7157,8307,0,0,0,0,1150,7157,ro.po,,ro,,romanian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,1150,7157,8335,0,0,0,0,1150,7157,pt_br.po,,pt,br,portuguese,,brazil

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pt.po,1060,6469,7445,0,0,6,173,1066,6642,pt.po,,pt,,portuguese,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ps.po,131,466,588,69,305,547,4006,747,4777,ps.po,,ps,,pashto,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pl.po,1150,7157,7321,0,0,0,0,1150,7157,pl.po,,pl,,polish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pa.po,910,5725,6481,0,0,0,0,910,5725,pa.po,,pa,,punjabi,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/or.po,905,5703,5749,0,0,0,0,905,5703,or.po,,or,,odia,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/oc.po,1066,6642,8396,0,0,0,0,1066,6642,oc.po,,oc,,occitan,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nn.po,362,2080,2137,89,460,296,2237,747,4777,nn.po,,nn,,norwegian nynorsk,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nl.po,665,2857,2879,260,2059,225,2241,1150,7157,nl.po,,nl,,dutch,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ne.po,403,1706,1792,403,2232,301,3018,1107,6956,ne.po,,ne,,nepali,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nds.po,96,259,278,39,201,612,4317,747,4777,nds.po,,nds,,low german,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nb.po,1088,6534,6548,1,8,38,476,1127,7018,nb.po,,nb,,norwegian bokmål,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ms.po,105,698,651,135,744,507,3335,747,4777,ms.po,,ms,,malay,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mr.po,905,5703,5424,0,0,0,0,905,5703,mr.po,,mr,,marathi,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mn.po,131,902,774,142,769,474,3106,747,4777,mn.po,,mn,,mongolian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ml.po,587,3073,2653,42,333,235,2058,864,5464,ml.po,,ml,,malayalam,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mk.po,347,2025,2333,104,515,296,2237,747,4777,mk.po,,mk,,macedonian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mg.po,164,1135,1210,121,630,462,3012,747,4777,mg.po,,mg,,malagasy,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mai.po,287,1667,1866,93,452,367,2658,747,4777,mai.po,,mai,,maithili,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/lv.po,1131,7036,6454,0,0,0,0,1131,7036,lv.po,,lv,,latvian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/lt.po,1150,7157,6167,0,0,0,0,1150,7157,lt.po,,lt,,lithuanian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ku.po,41,71,77,90,442,616,4264,747,4777,ku.po,,ku,,kurdish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ko.po,1150,7157,6265,0,0,0,0,1150,7157,ko.po,,ko,,korean,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/kn.po,904,5697,5056,0,0,0,0,904,5697,kn.po,,kn,,kannada,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/kk.po,339,1072,1019,0,0,811,6085,1150,7157,kk.po,,kk,,kazakh,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ka.po,193,1287,1058,120,605,434,2885,747,4777,ka.po,,ka,,georgian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ja.po,671,4078,1761,92,660,101,731,864,5469,ja.po,,ja,,japanese,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/it.po,1150,7157,8125,0,0,0,0,1150,7157,it.po,,it,,italian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/is.po,163,788,744,160,917,589,4034,912,5739,is.po,,is,,icelandic,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/id.po,1150,7157,7261,0,0,0,0,1150,7157,id.po,,id,,indonesian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hy.po,643,4085,3998,42,304,62,388,747,4777,hy.po,,hy,,armenian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hu.po,1150,7157,6987,0,0,0,0,1150,7157,hu.po,,hu,,hungarian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hr.po,178,1017,968,0,0,652,4237,830,5254,hr.po,,hr,,croatian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hi.po,905,5703,6753,0,0,0,0,905,5703,hi.po,,hi,,hindi,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/he.po,1127,7018,7022,0,0,0,0,1127,7018,he.po,,he,,hebrew,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gu.po,904,5697,6111,0,0,0,0,904,5697,gu.po,,gu,,gujarati,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gl.po,1150,7157,8981,0,0,0,0,1150,7157,gl.po,,gl,,galician,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gd.po,149,400,516,0,0,958,6556,1107,6956,gd.po,,gd,,scottish gaelic,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ga.po,189,628,758,48,219,534,3954,771,4801,ga.po,,ga,,irish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fur.po,649,3158,3872,5,38,496,3961,1150,7157,fur.po,,fur,,friulian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fr.po,1150,7157,9044,0,0,0,0,1150,7157,fr.po,,fr,,french,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fi.po,662,3319,2746,280,2275,189,1442,1131,7036,fi.po,,fi,,finnish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fa.po,492,2602,2979,38,244,291,2375,821,5221,fa.po,,fa,,persian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/eu.po,1150,7157,6782,0,0,0,0,1150,7157,eu.po,,eu,,basque,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/et.po,536,2825,2459,151,897,444,3314,1131,7036,et.po,,et,,estonian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/es.po,1150,7157,9086,0,0,0,0,1150,7157,es.po,,es,,spanish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/eo.po,626,3373,3327,245,2038,202,1324,1073,6735,eo.po,,eo,,esperanto,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,1131,7036,7055,0,0,0,0,1131,7036,en_gb.po,,en,gb,english,,united kingdom

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,771,4801,4804,0,0,0,0,771,4801,en_ca.po,,en,ca,english,,canada

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,423,2582,2581,66,377,258,1818,747,4777,en@shaw.po,shaw,en,,english,shavian,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/el.po,717,3615,3831,300,2566,122,925,1139,7106,el.po,,el,,greek,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/dz.po,166,1138,621,123,637,458,3002,747,4777,dz.po,,dz,,dzongkha,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/de.po,1150,7157,7281,0,0,0,0,1150,7157,de.po,,de,,german,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/da.po,1150,7157,6955,0,0,0,0,1150,7157,da.po,,da,,danish,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/cy.po,270,1620,1788,101,503,376,2654,747,4777,cy.po,,cy,,welsh,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/cs.po,1150,7157,6893,0,0,0,0,1150,7157,cs.po,,cs,,czech,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,1107,6956,9502,0,0,0,0,1107,6956,ca@valencia.po,valencia,ca,,catalan,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ca.po,1150,7157,9780,0,0,0,0,1150,7157,ca.po,,ca,,catalan,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bs.po,904,5697,5735,0,0,0,0,904,5697,bs.po,,bs,,bosnian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,915,5750,5872,0,0,0,0,915,5750,bn_in.po,,bn,in,bangla,,india

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bn.po,447,2552,2699,57,301,243,1924,747,4777,bn.po,,bn,,bangla,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bg.po,914,5755,6494,0,0,0,0,914,5755,bg.po,,bg,,bulgarian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,347,2025,1955,104,515,296,2237,747,4777,be@latin.po,latin,be,,belarusian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/be.po,865,5478,5365,0,0,0,0,865,5478,be.po,,be,,belarusian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/az.po,104,696,627,135,744,508,3337,747,4777,az.po,,az,,azerbaijani,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ast.po,433,2489,3154,66,335,248,1953,747,4777,ast.po,,ast,,asturian,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/as.po,905,5703,5806,0,0,0,0,905,5703,as.po,,as,,assamese,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ar.po,431,2303,2337,0,0,408,2992,839,5295,ar.po,,ar,,arabic,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/an.po,864,5464,7395,0,0,1,5,865,5469,an.po,,an,,aragonese,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/am.po,37,51,54,86,414,624,4312,747,4777,am.po,,am,,amharic,,

- glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/af.po,137,351,407,46,261,588,4189,771,4801,af.po,,af,,afrikaans,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/zh_tw.po,1353,7306,3114,68,449,47,351,1468,8106,zh_tw.po,,zh,tw,chinese,,taiwan

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/zh_cn.po,1411,7698,2974,43,261,14,147,1468,8106,zh_cn.po,,zh,cn,chinese,,china

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/vi.po,1454,7955,12531,8,116,6,35,1468,8106,vi.po,,vi,,vietnamese,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/uk.po,1468,8106,8801,0,0,0,0,1468,8106,uk.po,,uk,,ukrainian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/tr.po,1243,6403,5786,169,1157,56,546,1468,8106,tr.po,,tr,,turkish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/sv.po,1454,7955,7658,8,116,6,35,1468,8106,sv.po,,sv,,swedish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/sl.po,528,2715,2838,359,1630,581,3761,1468,8106,sl.po,,sl,,slovenian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/sk.po,1023,5033,5258,227,1275,218,1798,1468,8106,sk.po,,sk,,slovak,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/rw.po,14,19,21,1090,5891,364,2196,1468,8106,rw.po,,rw,,kinyarwanda,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/ru.po,1468,8106,8127,0,0,0,0,1468,8106,ru.po,,ru,,russian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/pt_br.po,1468,8106,9787,0,0,0,0,1468,8106,pt_br.po,,pt,br,portuguese,,brazil

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/pl.po,1468,8106,8456,0,0,0,0,1468,8106,pl.po,,pl,,polish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/nl.po,1440,7884,8015,19,176,9,46,1468,8106,nl.po,,nl,,dutch,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/nb.po,697,3102,3004,413,2299,358,2705,1468,8106,nb.po,,nb,,norwegian bokmål,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/lt.po,401,1592,1428,377,1749,690,4765,1468,8106,lt.po,,lt,,lithuanian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/ko.po,1440,7884,7437,19,176,9,46,1468,8106,ko.po,,ko,,korean,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/ja.po,1292,6937,3022,110,724,66,445,1468,8106,ja.po,,ja,,japanese,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/it.po,1299,6976,8217,106,705,63,425,1468,8106,it.po,,it,,italian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/id.po,1237,6657,6991,141,793,90,656,1468,8106,id.po,,id,,indonesian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/ia.po,522,3263,4173,39,261,907,4582,1468,8106,ia.po,,ia,,interlingua,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/hu.po,381,1560,1603,81,343,1006,6203,1468,8106,hu.po,,hu,,hungarian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/hr.po,1468,8106,8854,0,0,0,0,1468,8106,hr.po,,hr,,croatian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/gl.po,1010,4955,6261,239,1354,219,1797,1468,8106,gl.po,,gl,,galician,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/fr.po,1431,7805,10074,26,233,11,68,1468,8106,fr.po,,fr,,french,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/fi.po,1215,5965,5129,127,998,126,1143,1468,8106,fi.po,,fi,,finnish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/es.po,1374,7466,10167,57,350,37,290,1468,8106,es.po,,es,,spanish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/eo.po,836,3486,3419,45,218,587,4402,1468,8106,eo.po,,eo,,esperanto,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/en_gb.po,10,64,64,0,0,1078,5305,1088,5369,en_gb.po,,en,gb,english,,united kingdom

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/el.po,704,3078,3615,374,2040,390,2988,1468,8106,el.po,,el,,greek,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/de.po,1468,8106,9036,0,0,0,0,1468,8106,de.po,,de,,german,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/da.po,1237,6657,6407,140,789,91,660,1468,8106,da.po,,da,,danish,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/cs.po,1468,8106,8249,0,0,0,0,1468,8106,cs.po,,cs,,czech,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/ca.po,1391,7579,10861,51,314,26,213,1468,8106,ca.po,,ca,,catalan,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/bg.po,1468,8106,9940,0,0,0,0,1468,8106,bg.po,,bg,,bulgarian,,

- glibc-2.29-9.fc30.src.rpm.stats.csv,po/be.po,526,2713,2656,2,11,940,5382,1468,8106,be.po,,be,,belarusian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,271,102,0,0,0,0,41,271,zh_tw.po,,zh,tw,chinese,,taiwan

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,29,161,70,0,0,0,0,29,161,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,38,250,91,0,0,0,0,38,250,zh_cn.po,,zh,cn,chinese,,china

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/vi.po,29,161,218,0,0,0,0,29,161,vi.po,,vi,,vietnamese,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/uk.po,24,135,125,0,0,0,0,24,135,uk.po,,uk,,ukrainian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ug.po,29,161,137,0,0,0,0,29,161,ug.po,,ug,,uyghur,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/tr.po,42,278,213,0,0,0,0,42,278,tr.po,,tr,,turkish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/th.po,29,161,74,0,0,0,0,29,161,th.po,,th,,thai,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/tg.po,29,161,168,0,0,0,0,29,161,tg.po,,tg,,tajik,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/te.po,28,153,140,0,0,0,0,28,153,te.po,,te,,telugu,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ta.po,16,86,81,0,0,0,0,16,86,ta.po,,ta,,tamil,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sv.po,42,278,262,0,0,0,0,42,278,sv.po,,sv,,swedish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,36,229,276,0,0,0,0,36,229,sr@latin.po,latin,sr,,serbian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sr.po,42,278,329,0,0,0,0,42,278,sr.po,,sr,,serbian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sl.po,42,278,334,0,0,0,0,42,278,sl.po,,sl,,slovenian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sk.po,37,247,308,0,0,2,11,39,258,sk.po,,sk,,slovak,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ru.po,41,271,277,0,0,0,0,41,271,ru.po,,ru,,russian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ro.po,42,278,362,0,0,0,0,42,278,ro.po,,ro,,romanian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,42,278,325,0,0,0,0,42,278,pt_br.po,,pt,br,portuguese,,brazil

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pt.po,28,157,181,0,0,0,0,28,157,pt.po,,pt,,portuguese,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pl.po,42,278,306,0,0,0,0,42,278,pl.po,,pl,,polish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pa.po,29,161,193,0,0,0,0,29,161,pa.po,,pa,,punjabi,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/or.po,24,135,137,0,0,0,0,24,135,or.po,,or,,odia,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/oc.po,36,229,305,0,0,2,21,38,250,oc.po,,oc,,occitan,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/nl.po,42,278,256,0,0,0,0,42,278,nl.po,,nl,,dutch,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ne.po,24,139,120,0,0,5,24,29,163,ne.po,,ne,,nepali,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/nb.po,32,174,159,0,0,4,55,36,229,nb.po,,nb,,norwegian bokmål,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/mr.po,24,135,124,0,0,0,0,24,135,mr.po,,mr,,marathi,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ml.po,29,163,137,0,0,0,0,29,163,ml.po,,ml,,malayalam,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/lv.po,42,278,282,0,0,0,0,42,278,lv.po,,lv,,latvian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/lt.po,42,278,276,0,0,0,0,42,278,lt.po,,lt,,lithuanian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ko.po,42,278,226,0,0,0,0,42,278,ko.po,,ko,,korean,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/kn.po,16,86,84,0,0,0,0,16,86,kn.po,,kn,,kannada,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/km.po,24,135,80,0,0,0,0,24,135,km.po,,km,,khmer,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/kk.po,28,153,145,0,0,13,118,41,271,kk.po,,kk,,kazakh,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ja.po,28,157,68,0,0,0,0,28,157,ja.po,,ja,,japanese,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/it.po,42,278,327,0,0,0,0,42,278,it.po,,it,,italian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/id.po,42,278,270,0,0,0,0,42,278,id.po,,id,,indonesian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hu.po,42,278,275,0,0,0,0,42,278,hu.po,,hu,,hungarian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hr.po,42,278,276,0,0,0,0,42,278,hr.po,,hr,,croatian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hi.po,29,161,195,0,0,0,0,29,161,hi.po,,hi,,hindi,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/he.po,32,171,165,0,0,4,58,36,229,he.po,,he,,hebrew,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gu.po,16,86,110,0,0,0,0,16,86,gu.po,,gu,,gujarati,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gl.po,42,278,382,0,0,0,0,42,278,gl.po,,gl,,galician,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gd.po,29,163,214,0,0,0,0,29,163,gd.po,,gd,,scottish gaelic,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fur.po,42,278,361,0,0,0,0,42,278,fur.po,,fur,,friulian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fr.po,41,271,367,0,0,0,0,41,271,fr.po,,fr,,french,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fi.po,29,165,126,0,0,12,106,41,271,fi.po,,fi,,finnish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fa.po,29,163,191,0,0,0,0,29,163,fa.po,,fa,,persian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/eu.po,42,278,261,0,0,0,0,42,278,eu.po,,eu,,basque,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/et.po,29,161,128,0,0,0,0,29,161,et.po,,et,,estonian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/es.po,42,278,352,0,0,0,0,42,278,es.po,,es,,spanish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/eo.po,22,123,123,2,11,5,29,29,163,eo.po,,eo,,esperanto,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,28,157,157,0,0,0,0,28,157,en_gb.po,,en,gb,english,,united kingdom

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,1,4,4,0,0,0,0,1,4,en_ca.po,,en,ca,english,,canada

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/el.po,29,163,178,0,0,0,0,29,163,el.po,,el,,greek,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/de.po,42,278,295,0,0,0,0,42,278,de.po,,de,,german,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/da.po,42,278,266,0,0,0,0,42,278,da.po,,da,,danish,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/cs.po,42,278,297,0,0,0,0,42,278,cs.po,,cs,,czech,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,29,163,249,0,0,0,0,29,163,ca@valencia.po,valencia,ca,,catalan,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ca.po,41,271,415,0,0,0,0,41,271,ca.po,,ca,,catalan,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bs.po,28,157,154,0,0,0,0,28,157,bs.po,,bs,,bosnian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,16,86,98,0,0,0,0,16,86,bn_in.po,,bn,in,bangla,,india

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bg.po,29,163,199,0,0,0,0,29,163,bg.po,,bg,,bulgarian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/be.po,39,258,245,0,0,0,0,39,258,be.po,,be,,belarusian,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/as.po,29,161,155,0,0,0,0,29,161,as.po,,as,,assamese,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ar.po,28,153,161,0,0,0,0,28,153,ar.po,,ar,,arabic,,

- glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/an.po,29,161,199,0,0,0,0,29,161,an.po,,an,,aragonese,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sk.po,73,396,404,0,0,0,0,73,396,sk.po,,sk,,slovak,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/es.po,73,396,483,0,0,0,0,73,396,es.po,,es,,spanish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/he.po,71,391,354,0,0,2,5,73,396,he.po,,he,,hebrew,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/cs.po,73,396,375,0,0,0,0,73,396,cs.po,,cs,,czech,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,71,391,132,0,0,2,5,73,396,zh_cn.po,,zh,cn,chinese,,china

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/as.po,43,285,296,4,15,26,96,73,396,as.po,,as,,assamese,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/kk.po,7,8,9,0,0,66,388,73,396,kk.po,,kk,,kazakh,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/tr.po,73,396,320,0,0,0,0,73,396,tr.po,,tr,,turkish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ko.po,43,280,245,4,15,26,101,73,396,ko.po,,ko,,korean,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/da.po,73,396,381,0,0,0,0,73,396,da.po,,da,,danish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sr.po,73,396,412,0,0,0,0,73,396,sr.po,,sr,,serbian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,73,396,128,0,0,0,0,73,396,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,73,396,443,0,0,0,0,73,396,pt_br.po,,pt,br,portuguese,,brazil

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nl.po,73,396,425,0,0,0,0,73,396,nl.po,,nl,,dutch,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/id.po,73,396,390,0,0,0,0,73,396,id.po,,id,,indonesian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sv.po,73,396,380,0,0,0,0,73,396,sv.po,,sv,,swedish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ja.po,73,396,143,0,0,0,0,73,396,ja.po,,ja,,japanese,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ca.po,73,396,502,0,0,0,0,73,396,ca.po,,ca,,catalan,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nn.po,17,108,96,0,0,56,288,73,396,nn.po,,nn,,norwegian nynorsk,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/bn_in.po,43,280,298,4,15,26,101,73,396,bn_in.po,,bn,in,bangla,,india

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/kn.po,44,296,270,4,15,25,85,73,396,kn.po,,kn,,kannada,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fur.po,71,391,464,0,0,2,5,73,396,fur.po,,fur,,friulian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ar.po,12,14,16,9,32,52,350,73,396,ar.po,,ar,,arabic,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/de.po,71,391,399,0,0,2,5,73,396,de.po,,de,,german,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/it.po,71,391,424,0,0,2,5,73,396,it.po,,it,,italian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/el.po,1,5,5,0,0,72,391,73,396,el.po,,el,,greek,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ru.po,73,396,361,0,0,0,0,73,396,ru.po,,ru,,russian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/hi.po,43,280,331,4,15,26,101,73,396,hi.po,,hi,,hindi,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ta.po,43,280,251,4,15,26,101,73,396,ta.po,,ta,,tamil,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fi.po,62,264,200,0,0,11,132,73,396,fi.po,,fi,,finnish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,5,5,0,0,72,391,73,396,sr@latin.po,latin,sr,,serbian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,1,5,5,0,0,72,391,73,396,en_gb.po,,en,gb,english,,united kingdom

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pa.po,43,280,334,4,15,26,101,73,396,pa.po,,pa,,punjabi,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nb.po,1,5,6,0,0,72,391,73,396,nb.po,,nb,,norwegian bokmål,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fr.po,73,396,475,0,0,0,0,73,396,fr.po,,fr,,french,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fa.po,1,5,5,0,0,72,391,73,396,fa.po,,fa,,persian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/mr.po,73,396,365,0,0,0,0,73,396,mr.po,,mr,,marathi,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/bs.po,4,9,8,0,0,69,387,73,396,bs.po,,bs,,bosnian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/km.po,55,342,148,4,15,14,39,73,396,km.po,,km,,khmer,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pl.po,73,396,399,0,0,0,0,73,396,pl.po,,pl,,polish,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/gu.po,44,296,320,4,15,25,85,73,396,gu.po,,gu,,gujarati,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/or.po,43,280,273,4,15,26,101,73,396,or.po,,or,,odia,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/uk.po,73,396,416,0,0,0,0,73,396,uk.po,,uk,,ukrainian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/hu.po,73,396,356,0,0,0,0,73,396,hu.po,,hu,,hungarian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sq.po,73,396,501,0,0,0,0,73,396,sq.po,,sq,,albanian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pt.po,2,6,8,0,0,71,390,73,396,pt.po,,pt,,portuguese,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ml.po,43,280,217,4,15,26,101,73,396,ml.po,,ml,,malayalam,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ast.po,2,2,2,0,0,71,394,73,396,ast.po,,ast,,asturian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/et.po,7,7,7,0,0,66,389,73,396,et.po,,et,,estonian,,

- gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/te.po,44,296,246,4,15,25,85,73,396,te.po,,te,,telugu,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,16,31,18,0,0,0,0,16,31,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,18,30,19,0,0,0,0,18,30,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,16,31,16,0,0,0,0,16,31,zh_cn.po,,zh,cn,chinese,,china

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,18,30,32,0,0,0,0,18,30,xh.po,,xh,,xhosa,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,18,29,48,0,0,0,0,18,29,vi.po,,vi,,vietnamese,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,18,24,28,0,0,0,0,18,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,7,14,11,0,0,2,4,9,18,uz.po,,uz,,uzbek,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,18,29,27,0,0,0,0,18,29,uk.po,,uk,,ukrainian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,18,24,30,0,0,0,0,18,24,ug.po,,ug,,uyghur,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,16,31,33,0,0,0,0,16,31,tr.po,,tr,,turkish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,18,24,20,0,0,0,0,18,24,th.po,,th,,thai,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,18,29,28,0,0,0,0,18,29,tg.po,,tg,,tajik,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,18,30,29,0,0,0,0,18,30,te.po,,te,,telugu,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,18,30,27,0,0,0,0,18,30,ta.po,,ta,,tamil,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,16,31,31,0,0,0,0,16,31,sv.po,,sv,,swedish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,16,31,33,0,0,0,0,16,31,sr@latin.po,latin,sr,,serbian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,16,31,33,0,0,0,0,16,31,sr.po,,sr,,serbian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,17,23,24,0,0,0,0,17,23,sq.po,,sq,,albanian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,15,26,27,0,0,0,0,15,26,sl.po,,sl,,slovenian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,16,31,35,0,0,0,0,16,31,sk.po,,sk,,slovak,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,9,18,19,0,0,0,0,9,18,si.po,,si,,sinhala,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,0,0,10,35,10,35,rw.po,,rw,,kinyarwanda,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,16,31,31,0,0,0,0,16,31,ru.po,,ru,,russian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,16,31,38,0,0,0,0,16,31,ro.po,,ro,,romanian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,16,31,41,0,0,0,0,16,31,pt_br.po,,pt,br,portuguese,,brazil

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,18,29,34,0,0,0,0,18,29,pt.po,,pt,,portuguese,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,9,18,25,0,0,0,0,9,18,ps.po,,ps,,pashto,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,15,26,27,0,0,0,0,15,26,pl.po,,pl,,polish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,18,29,37,0,0,0,0,18,29,pa.po,,pa,,punjabi,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,18,30,33,0,0,0,0,18,30,or.po,,or,,odia,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,16,31,36,0,0,0,0,16,31,oc.po,,oc,,occitan,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,17,23,21,0,0,0,0,17,23,nn.po,,nn,,norwegian nynorsk,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,16,31,30,0,0,0,0,16,31,nl.po,,nl,,dutch,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,18,29,29,0,0,0,0,18,29,ne.po,,ne,,nepali,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,17,23,22,0,0,0,0,17,23,nds.po,,nds,,low german,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,18,29,24,0,0,0,0,18,29,nb.po,,nb,,norwegian bokmål,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,15,20,23,0,0,2,3,17,23,ms.po,,ms,,malay,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,18,30,28,0,0,0,0,18,30,mr.po,,mr,,marathi,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,17,23,23,0,0,0,0,17,23,mn.po,,mn,,mongolian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,16,31,30,0,0,0,0,16,31,ml.po,,ml,,malayalam,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,17,23,21,0,0,0,0,17,23,mk.po,,mk,,macedonian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,17,23,22,0,0,0,0,17,23,mg.po,,mg,,malagasy,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,8,16,18,1,2,0,0,9,18,mai.po,,mai,,maithili,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,16,31,31,0,0,0,0,16,31,lv.po,,lv,,latvian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,15,26,25,0,0,0,0,15,26,lt.po,,lt,,lithuanian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,16,22,21,1,1,1,1,18,24,ky.po,,ky,,kyrgyz,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,18,24,24,0,0,0,0,18,24,ku.po,,ku,,kurdish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,16,31,33,0,0,0,0,16,31,ko.po,,ko,,korean,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,18,30,28,0,0,0,0,18,30,kn.po,,kn,,kannada,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,18,30,21,0,0,0,0,18,30,km.po,,km,,khmer,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,15,26,27,0,0,0,0,15,26,kk.po,,kk,,kazakh,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,9,18,18,0,0,0,0,9,18,ka.po,,ka,,georgian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,18,30,20,0,0,0,0,18,30,ja.po,,ja,,japanese,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,16,31,33,0,0,0,0,16,31,it.po,,it,,italian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,16,31,29,0,0,0,0,16,31,is.po,,is,,icelandic,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,15,26,31,0,0,0,0,15,26,id.po,,id,,indonesian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,17,23,22,0,0,0,0,17,23,hy.po,,hy,,armenian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,15,26,25,0,0,0,0,15,26,hu.po,,hu,,hungarian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,16,31,35,0,0,0,0,16,31,hr.po,,hr,,croatian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,18,30,33,0,0,0,0,18,30,hi.po,,hi,,hindi,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,18,29,34,0,0,0,0,18,29,he.po,,he,,hebrew,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,18,30,30,0,0,0,0,18,30,gu.po,,gu,,gujarati,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,16,31,37,0,0,0,0,16,31,gl.po,,gl,,galician,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,18,29,28,0,0,0,0,18,29,gd.po,,gd,,scottish gaelic,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,18,30,31,0,0,0,0,18,30,ga.po,,ga,,irish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,17,23,21,0,0,0,0,17,23,fy.po,,fy,,western frisian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,15,26,33,0,0,0,0,15,26,fur.po,,fur,,friulian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,15,26,34,0,0,0,0,15,26,fr.po,,fr,,french,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,16,31,28,0,0,0,0,16,31,fi.po,,fi,,finnish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,18,29,29,0,0,0,0,18,29,fa.po,,fa,,persian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,18,29,32,0,0,0,0,18,29,eu.po,,eu,,basque,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,16,31,29,0,0,0,0,16,31,et.po,,et,,estonian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,15,26,32,0,0,0,0,15,26,es.po,,es,,spanish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,16,31,32,0,0,0,0,16,31,eo.po,,eo,,esperanto,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,16,31,31,0,0,0,0,16,31,en_gb.po,,en,gb,english,,united kingdom

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,9,18,19,0,0,0,0,9,18,en_ca.po,,en,ca,english,,canada

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,17,23,23,0,0,0,0,17,23,en@shaw.po,shaw,en,,english,shavian,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,16,31,28,0,0,0,0,16,31,el.po,,el,,greek,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,9,18,11,0,0,0,0,9,18,dz.po,,dz,,dzongkha,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,16,31,28,0,0,0,0,16,31,de.po,,de,,german,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,16,31,29,0,0,0,0,16,31,da.po,,da,,danish,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,17,23,29,0,0,0,0,17,23,cy.po,,cy,,welsh,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,15,26,28,0,0,0,0,15,26,cs.po,,cs,,czech,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,18,29,37,0,0,0,0,18,29,ca@valencia.po,valencia,ca,,catalan,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,16,31,38,0,0,0,0,16,31,ca.po,,ca,,catalan,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,18,30,29,0,0,0,0,18,30,bs.po,,bs,,bosnian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,17,23,31,0,0,0,0,17,23,bn_in.po,,bn,in,bangla,,india

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,17,29,38,0,0,0,0,17,29,bn.po,,bn,,bangla,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,18,29,31,0,0,0,0,18,29,bg.po,,bg,,bulgarian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,16,22,20,0,0,1,1,17,23,be@latin.po,latin,be,,belarusian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,18,29,26,0,0,0,0,18,29,be.po,,be,,belarusian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,17,23,22,0,0,0,0,17,23,ast.po,,ast,,asturian,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,18,30,29,0,0,0,0,18,30,as.po,,as,,assamese,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,18,30,29,0,0,0,0,18,30,ar.po,,ar,,arabic,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,18,30,31,0,0,0,0,18,30,an.po,,an,,aragonese,,

- gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,13,22,20,0,0,3,9,16,31,af.po,,af,,afrikaans,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,192,663,574,0,0,0,0,192,663,zu.po,,zu,,zulu,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,111,373,139,0,0,0,0,111,373,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,102,308,132,0,0,0,0,102,308,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,111,373,139,0,0,0,0,111,373,zh_cn.po,,zh,cn,chinese,,china

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,174,596,511,1,3,0,0,175,599,xh.po,,xh,,xhosa,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,111,373,504,0,0,0,0,111,373,vi.po,,vi,,vietnamese,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,110,372,334,0,0,0,0,110,372,uk.po,,uk,,ukrainian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,95,303,266,0,0,0,0,95,303,ug.po,,ug,,uyghur,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,111,373,324,0,0,0,0,111,373,tr.po,,tr,,turkish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,110,372,169,0,0,0,0,110,372,th.po,,th,,thai,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,102,309,340,0,0,0,0,102,309,tg.po,,tg,,tajik,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,102,309,286,0,0,0,0,102,309,te.po,,te,,telugu,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,102,309,276,0,0,0,0,102,309,ta.po,,ta,,tamil,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,111,373,337,0,0,0,0,111,373,sv.po,,sv,,swedish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,111,373,392,0,0,0,0,111,373,sr@latin.po,latin,sr,,serbian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,111,373,392,0,0,0,0,111,373,sr.po,,sr,,serbian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,111,373,391,0,0,0,0,111,373,sl.po,,sl,,slovenian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,111,373,389,0,0,0,0,111,373,sk.po,,sk,,slovak,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,111,373,340,0,0,0,0,111,373,ru.po,,ru,,russian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,111,373,382,0,0,0,0,111,373,ro.po,,ro,,romanian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,111,373,413,0,0,0,0,111,373,pt_br.po,,pt,br,portuguese,,brazil

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,110,372,383,0,0,0,0,110,372,pt.po,,pt,,portuguese,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,111,373,370,0,0,0,0,111,373,pl.po,,pl,,polish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,111,373,419,0,0,0,0,111,373,pa.po,,pa,,punjabi,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,102,309,333,0,0,0,0,102,309,or.po,,or,,odia,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,106,349,385,0,0,4,23,110,372,oc.po,,oc,,occitan,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,177,646,620,0,0,4,18,181,664,nn.po,,nn,,norwegian nynorsk,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,111,373,355,0,0,0,0,111,373,nl.po,,nl,,dutch,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,13,15,18,67,144,22,150,102,309,ne.po,,ne,,nepali,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,111,373,362,0,0,0,0,111,373,nb.po,,nb,,norwegian bokmål,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,160,519,486,2,9,29,169,191,697,ms.po,,ms,,malay,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,102,309,309,0,0,0,0,102,309,mr.po,,mr,,marathi,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,87,230,231,0,0,68,284,155,514,mn.po,,mn,,mongolian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,111,373,320,0,0,0,0,111,373,ml.po,,ml,,malayalam,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,175,599,654,0,0,0,0,175,599,mk.po,,mk,,macedonian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,37,63,75,0,0,120,530,157,593,mai.po,,mai,,maithili,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,111,373,343,0,0,0,0,111,373,lv.po,,lv,,latvian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,111,373,329,0,0,0,0,111,373,lt.po,,lt,,lithuanian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,188,650,720,0,0,4,12,192,662,ku.po,,ku,,kurdish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,111,373,289,0,0,0,0,111,373,ko.po,,ko,,korean,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,102,309,296,0,0,0,0,102,309,kn.po,,kn,,kannada,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,144,460,257,0,0,0,0,144,460,km.po,,km,,khmer,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,111,373,329,0,0,0,0,111,373,kk.po,,kk,,kazakh,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,118,321,284,0,0,37,193,155,514,ka.po,,ka,,georgian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,111,373,153,0,0,0,0,111,373,ja.po,,ja,,japanese,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,111,373,358,0,0,0,0,111,373,it.po,,it,,italian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,111,373,359,0,0,0,0,111,373,is.po,,is,,icelandic,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,111,373,334,0,0,0,0,111,373,id.po,,id,,indonesian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,181,664,631,0,0,0,0,181,664,hy.po,,hy,,armenian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,111,373,325,0,0,0,0,111,373,hu.po,,hu,,hungarian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,111,373,357,0,0,0,0,111,373,hr.po,,hr,,croatian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,102,309,361,0,0,0,0,102,309,hi.po,,hi,,hindi,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,110,372,345,0,0,0,0,110,372,he.po,,he,,hebrew,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,102,309,355,0,0,0,0,102,309,gu.po,,gu,,gujarati,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,111,373,388,0,0,0,0,111,373,gl.po,,gl,,galician,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,111,373,493,0,0,0,0,111,373,gd.po,,gd,,scottish gaelic,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,70,156,204,0,0,26,154,96,310,ga.po,,ga,,irish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,13,15,20,0,0,142,499,155,514,fy.po,,fy,,western frisian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,111,373,407,0,0,0,0,111,373,fur.po,,fur,,friulian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,111,373,423,0,0,0,0,111,373,fr.po,,fr,,french,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,115,398,302,0,0,0,0,115,398,fi.po,,fi,,finnish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,111,373,411,0,0,0,0,111,373,fa.po,,fa,,persian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,111,373,315,0,0,0,0,111,373,eu.po,,eu,,basque,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,96,310,257,0,0,0,0,96,310,et.po,,et,,estonian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,111,373,396,0,0,0,0,111,373,es.po,,es,,spanish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,111,373,359,0,0,0,0,111,373,eo.po,,eo,,esperanto,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,110,372,372,0,0,0,0,110,372,en_gb.po,,en,gb,english,,united kingdom

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,121,419,419,66,256,0,0,187,675,en@shaw.po,shaw,en,,english,shavian,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,111,373,390,0,0,0,0,111,373,el.po,,el,,greek,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,111,373,379,0,0,0,0,111,373,de.po,,de,,german,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,111,373,345,0,0,0,0,111,373,da.po,,da,,danish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,111,373,392,0,0,0,0,111,373,cs.po,,cs,,czech,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,95,303,272,0,0,0,0,95,303,crh.po,,crh,,crimean turkish,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,111,373,428,0,0,0,0,111,373,ca@valencia.po,valencia,ca,,catalan,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,111,373,428,0,0,0,0,111,373,ca.po,,ca,,catalan,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,102,309,313,0,0,0,0,102,309,bs.po,,bs,,bosnian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,95,303,350,0,0,0,0,95,303,bn_in.po,,bn,in,bangla,,india

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,192,662,719,0,0,0,0,192,662,bn.po,,bn,,bangla,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,111,373,389,0,0,0,0,111,373,bg.po,,bg,,bulgarian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,111,373,347,0,0,0,0,111,373,be.po,,be,,belarusian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,181,664,736,0,0,0,0,181,664,ast.po,,ast,,asturian,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,101,308,336,0,0,0,0,101,308,as.po,,as,,assamese,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,111,373,399,0,0,0,0,111,373,ar.po,,ar,,arabic,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,110,372,407,0,0,0,0,110,372,an.po,,an,,aragonese,,

- gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,185,642,645,0,0,7,20,192,662,af.po,,af,,afrikaans,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/sv/sv.po,230,2786,2603,0,0,0,0,230,2786,sv.po,,sv,,swedish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,230,2786,3059,0,0,0,0,230,2786,pt_br.po,,pt,br,portuguese,,brazil

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/pl/pl.po,230,2786,2262,0,0,0,0,230,2786,pl.po,,pl,,polish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/ko/ko.po,230,2786,1982,0,0,0,0,230,2786,ko.po,,ko,,korean,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/it/it.po,213,2575,2709,0,0,0,0,213,2575,it.po,,it,,italian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/hu/hu.po,230,2786,2465,0,0,0,0,230,2786,hu.po,,hu,,hungarian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/gl/gl.po,121,768,803,0,0,103,1971,224,2739,gl.po,,gl,,galician,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/fr/fr.po,224,2739,2990,0,0,0,0,224,2739,fr.po,,fr,,french,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/es/es.po,213,2575,2875,0,0,0,0,213,2575,es.po,,es,,spanish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/el/el.po,208,2323,2501,0,0,0,0,208,2323,el.po,,el,,greek,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/de/de.po,230,2786,2821,0,0,0,0,230,2786,de.po,,de,,german,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/cs/cs.po,224,2739,2490,0,0,0,0,224,2739,cs.po,,cs,,czech,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,295,1289,461,0,0,0,0,295,1289,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_hk.po,207,946,333,0,0,0,0,207,946,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,289,1224,520,0,0,0,0,289,1224,zh_cn.po,,zh,cn,chinese,,china

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/vi.po,154,624,800,0,0,9,97,163,721,vi.po,,vi,,vietnamese,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/uk.po,262,1113,1049,0,0,0,0,262,1113,uk.po,,uk,,ukrainian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ug.po,167,750,718,0,0,0,0,167,750,ug.po,,ug,,uyghur,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/tr.po,296,1290,1127,0,0,0,0,296,1290,tr.po,,tr,,turkish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/th.po,123,532,216,0,0,0,0,123,532,th.po,,th,,thai,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/tg.po,175,572,651,19,326,0,0,194,898,tg.po,,tg,,tajik,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/te.po,208,950,834,0,0,0,0,208,950,te.po,,te,,telugu,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ta.po,208,950,891,0,0,0,0,208,950,ta.po,,ta,,tamil,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sv.po,298,1296,1267,0,0,0,0,298,1296,sv.po,,sv,,swedish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,283,1207,1324,0,0,0,0,283,1207,sr@latin.po,latin,sr,,serbian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sr.po,298,1296,1416,0,0,0,0,298,1296,sr.po,,sr,,serbian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sl.po,298,1296,1368,0,0,0,0,298,1296,sl.po,,sl,,slovenian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sk.po,294,1282,1364,0,0,0,0,294,1282,sk.po,,sk,,slovak,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ru.po,298,1296,1272,0,0,0,0,298,1296,ru.po,,ru,,russian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ro.po,298,1296,1500,0,0,0,0,298,1296,ro.po,,ro,,romanian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,298,1296,1487,0,0,0,0,298,1296,pt_br.po,,pt,br,portuguese,,brazil

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pt.po,260,1102,1293,0,0,0,0,260,1102,pt.po,,pt,,portuguese,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pl.po,298,1296,1348,0,0,0,0,298,1296,pl.po,,pl,,polish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pa.po,208,950,1149,0,0,0,0,208,950,pa.po,,pa,,punjabi,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/or.po,208,950,1036,0,0,0,0,208,950,or.po,,or,,odia,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/oc.po,253,1048,1297,2,8,7,21,262,1077,oc.po,,oc,,occitan,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/nl.po,296,1290,1335,0,0,0,0,296,1290,nl.po,,nl,,dutch,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ne.po,274,1160,1153,0,0,0,0,274,1160,ne.po,,ne,,nepali,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/nb.po,293,1269,1295,0,0,1,13,294,1282,nb.po,,nb,,norwegian bokmål,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/mr.po,208,950,929,0,0,0,0,208,950,mr.po,,mr,,marathi,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ml.po,281,1171,1072,0,0,9,89,290,1260,ml.po,,ml,,malayalam,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/lv.po,295,1289,1207,0,0,0,0,295,1289,lv.po,,lv,,latvian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/lt.po,296,1290,1178,0,0,0,0,296,1290,lt.po,,lt,,lithuanian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ko.po,296,1290,1071,0,0,0,0,296,1290,ko.po,,ko,,korean,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/kn.po,208,950,872,0,0,0,0,208,950,kn.po,,kn,,kannada,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/km.po,193,885,398,0,0,0,0,193,885,km.po,,km,,khmer,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/kk.po,295,1289,1162,0,0,0,0,295,1289,kk.po,,kk,,kazakh,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ja.po,260,1072,456,0,0,0,0,260,1072,ja.po,,ja,,japanese,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/it.po,298,1296,1369,0,0,0,0,298,1296,it.po,,it,,italian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/id.po,298,1296,1315,0,0,0,0,298,1296,id.po,,id,,indonesian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hu.po,296,1290,1247,0,0,0,0,296,1290,hu.po,,hu,,hungarian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hr.po,296,1294,1273,0,0,1,1,297,1295,hr.po,,hr,,croatian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hi.po,208,950,1187,0,0,0,0,208,950,hi.po,,hi,,hindi,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/he.po,260,1102,1072,0,0,0,0,260,1102,he.po,,he,,hebrew,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/gu.po,208,950,1058,0,0,0,0,208,950,gu.po,,gu,,gujarati,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/gl.po,296,1290,1477,0,0,0,0,296,1290,gl.po,,gl,,galician,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ga.po,100,207,256,0,0,85,649,185,856,ga.po,,ga,,irish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fur.po,295,1289,1514,0,0,0,0,295,1289,fur.po,,fur,,friulian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fr.po,296,1290,1628,0,0,0,0,296,1290,fr.po,,fr,,french,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fi.po,290,1201,962,0,0,8,95,298,1296,fi.po,,fi,,finnish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fa.po,185,856,962,0,0,0,0,185,856,fa.po,,fa,,persian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/eu.po,295,1289,1167,0,0,0,0,295,1289,eu.po,,eu,,basque,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/et.po,185,856,713,0,0,0,0,185,856,et.po,,et,,estonian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/es.po,298,1296,1491,0,0,0,0,298,1296,es.po,,es,,spanish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/eo.po,281,1170,1081,4,23,5,69,290,1262,eo.po,,eo,,esperanto,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,282,1203,1206,0,0,0,0,282,1203,en_gb.po,,en,gb,english,,united kingdom

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/el.po,295,1289,1463,0,0,0,0,295,1289,el.po,,el,,greek,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/de.po,298,1296,1338,0,0,0,0,298,1296,de.po,,de,,german,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/da.po,296,1290,1268,0,0,0,0,296,1290,da.po,,da,,danish,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/cs.po,294,1284,1313,0,0,0,0,294,1284,cs.po,,cs,,czech,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,273,1147,1453,0,0,0,0,273,1147,ca@valencia.po,valencia,ca,,catalan,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ca.po,295,1289,1618,0,0,0,0,295,1289,ca.po,,ca,,catalan,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bs.po,217,968,969,0,0,0,0,217,968,bs.po,,bs,,bosnian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bn_in.po,169,753,853,0,0,0,0,169,753,bn_in.po,,bn,in,bangla,,india

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bg.po,153,677,756,0,0,0,0,153,677,bg.po,,bg,,bulgarian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/be.po,294,1282,1284,0,0,0,0,294,1282,be.po,,be,,belarusian,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/as.po,208,950,1050,0,0,0,0,208,950,as.po,,as,,assamese,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ar.po,239,1016,1045,0,0,0,0,239,1016,ar.po,,ar,,arabic,,

- gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/af.po,295,1289,1387,0,0,0,0,295,1289,af.po,,af,,afrikaans,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,238,1579,450,0,0,0,0,238,1579,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,238,1579,450,0,0,0,0,238,1579,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,238,1579,425,0,0,0,0,238,1579,zh_cn.po,,zh,cn,chinese,,china

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,99,110,110,0,0,140,1509,239,1619,te.po,,te,,telugu,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,277,1950,1733,0,0,0,0,277,1950,sv.po,,sv,,swedish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,238,1616,1394,0,0,0,0,238,1616,sl.po,,sl,,slovenian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,209,1187,1069,4,25,25,404,238,1616,ru.po,,ru,,russian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,220,1241,1190,3,49,15,326,238,1616,ro.po,,ro,,romanian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,277,1950,2144,0,0,0,0,277,1950,pt_br.po,,pt,br,portuguese,,brazil

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pt/pt.po,250,1750,1789,3,32,12,104,265,1886,pt.po,,pt,,portuguese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,277,1950,1665,0,0,0,0,277,1950,pl.po,,pl,,polish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/oc/oc.po,259,303,325,0,0,626,6188,885,6491,oc.po,,oc,,occitan,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/lv/lv.po,265,1886,1501,0,0,0,0,265,1886,lv.po,,lv,,latvian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,277,1950,1416,0,0,0,0,277,1950,ko.po,,ko,,korean,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,225,1289,427,9,265,4,62,238,1616,ja.po,,ja,,japanese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/it/it.po,188,1017,1096,8,239,40,319,236,1575,it.po,,it,,italian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,277,1950,1697,0,0,0,0,277,1950,hu.po,,hu,,hungarian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,247,1727,1753,0,0,1,37,248,1764,gl.po,,gl,,galician,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,277,1950,2147,0,0,0,0,277,1950,fr.po,,fr,,french,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,203,1082,826,22,225,40,579,265,1886,fi.po,,fi,,finnish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/eu/eu.po,831,6011,4612,0,0,0,0,831,6011,eu.po,,eu,,basque,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,277,1950,2084,0,0,0,0,277,1950,es.po,,es,,spanish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,251,1777,1922,0,0,0,0,251,1777,el.po,,el,,greek,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,277,1950,1879,0,0,0,0,277,1950,de.po,,de,,german,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,277,1950,1745,0,0,0,0,277,1950,cs.po,,cs,,czech,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,216,1392,1547,14,190,35,304,265,1886,ca.po,,ca,,catalan,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/bg/bg.po,603,5554,5201,0,0,209,227,812,5781,bg.po,,bg,,bulgarian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,578,1594,762,0,0,0,0,578,1594,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,431,1341,574,0,0,0,0,431,1341,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,579,1596,770,0,0,0,0,579,1596,zh_cn.po,,zh,cn,chinese,,china

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,362,851,840,13,35,3,29,378,915,xh.po,,xh,,xhosa,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,590,1632,2264,0,0,0,0,590,1632,vi.po,,vi,,vietnamese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,573,1583,1470,0,0,0,0,573,1583,uk.po,,uk,,ukrainian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,334,1078,1026,0,0,0,0,334,1078,ug.po,,ug,,uyghur,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,590,1632,1495,0,0,0,0,590,1632,tr.po,,tr,,turkish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,164,294,281,79,175,135,446,378,915,tk.po,,tk,,turkmen,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,540,1486,834,0,0,0,0,540,1486,th.po,,th,,thai,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,535,1464,1464,0,0,0,0,535,1464,tg.po,,tg,,tajik,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,428,1337,1171,0,0,0,0,428,1337,te.po,,te,,telugu,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,428,1337,1281,0,0,0,0,428,1337,ta.po,,ta,,tamil,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,590,1632,1521,0,0,0,0,590,1632,sv.po,,sv,,swedish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,579,1596,1520,0,0,0,0,579,1596,sr@latin.po,latin,sr,,serbian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,590,1632,1556,0,0,0,0,590,1632,sr.po,,sr,,serbian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,399,1128,1306,0,0,0,0,399,1128,sq.po,,sq,,albanian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,590,1632,1554,0,0,0,0,590,1632,sl.po,,sl,,slovenian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,581,1602,1581,0,0,0,0,581,1602,sk.po,,sk,,slovak,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,379,853,894,0,0,71,839,450,1692,si.po,,si,,sinhala,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,60,53,61,243,719,75,143,378,915,rw.po,,rw,,kinyarwanda,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,590,1632,1581,0,0,0,0,590,1632,ru.po,,ru,,russian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,590,1632,1771,0,0,0,0,590,1632,ro.po,,ro,,romanian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,590,1632,1926,0,0,0,0,590,1632,pt_br.po,,pt,br,portuguese,,brazil

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,573,1583,1735,0,0,0,0,573,1583,pt.po,,pt,,portuguese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,590,1632,1578,0,0,0,0,590,1632,pl.po,,pl,,polish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,551,1539,1640,0,0,23,45,574,1584,pa.po,,pa,,punjabi,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,428,1337,1302,0,0,0,0,428,1337,or.po,,or,,odia,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,540,1486,1667,0,0,0,0,540,1486,oc.po,,oc,,occitan,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,228,770,803,8,14,31,534,267,1318,nn.po,,nn,,norwegian nynorsk,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,590,1632,1699,0,0,0,0,590,1632,nl.po,,nl,,dutch,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,205,357,347,116,286,107,694,428,1337,ne.po,,ne,,nepali,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,578,1590,1456,0,0,0,0,578,1590,nb.po,,nb,,norwegian bokmål,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,160,352,241,0,0,99,789,259,1141,my.po,,my,,burmese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,328,768,757,30,57,20,90,378,915,ms.po,,ms,,malay,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,428,1337,1299,0,0,0,0,428,1337,mr.po,,mr,,marathi,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,181,392,372,142,368,55,155,378,915,mn.po,,mn,,mongolian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,334,1078,854,0,0,0,0,334,1078,ml.po,,ml,,malayalam,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,433,1399,1408,0,0,0,0,433,1399,mk.po,,mk,,macedonian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,349,992,1083,8,23,0,0,357,1015,mg.po,,mg,,malagasy,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,243,536,586,0,0,165,829,408,1365,mai.po,,mai,,maithili,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,590,1632,1512,0,0,0,0,590,1632,lv.po,,lv,,latvian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,590,1632,1485,0,0,0,0,590,1632,lt.po,,lt,,lithuanian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,98,117,123,4,4,247,774,349,895,ku.po,,ku,,kurdish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,590,1632,1384,0,0,0,0,590,1632,ko.po,,ko,,korean,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,428,1337,1181,0,0,0,0,428,1337,kn.po,,kn,,kannada,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,429,1333,750,0,0,2,8,431,1341,km.po,,km,,khmer,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,321,566,568,0,0,269,1066,590,1632,kk.po,,kk,,kazakh,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,365,1044,948,0,0,0,0,365,1044,ka.po,,ka,,georgian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,567,1564,750,0,0,23,68,590,1632,ja.po,,ja,,japanese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,590,1632,1782,0,0,0,0,590,1632,it.po,,it,,italian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,590,1632,1623,0,0,0,0,590,1632,id.po,,id,,indonesian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,119,361,351,0,0,137,767,256,1128,hy.po,,hy,,armenian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,590,1632,1525,0,0,0,0,590,1632,hu.po,,hu,,hungarian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,589,1629,1524,0,0,0,0,589,1629,hr.po,,hr,,croatian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,428,1337,1519,0,0,0,0,428,1337,hi.po,,hi,,hindi,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,513,1451,1481,0,0,27,35,540,1486,he.po,,he,,hebrew,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,428,1337,1332,0,0,0,0,428,1337,gu.po,,gu,,gujarati,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,590,1632,1855,0,0,0,0,590,1632,gl.po,,gl,,galician,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,574,1584,1836,0,0,0,0,574,1584,gd.po,,gd,,scottish gaelic,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,217,351,419,9,23,108,704,334,1078,ga.po,,ga,,irish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,590,1632,1829,0,0,0,0,590,1632,fur.po,,fur,,friulian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,590,1632,1899,0,0,0,0,590,1632,fr.po,,fr,,french,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,590,1632,1354,0,0,0,0,590,1632,fi.po,,fi,,finnish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,574,1584,1656,0,0,0,0,574,1584,fa.po,,fa,,persian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,590,1632,1463,0,0,0,0,590,1632,eu.po,,eu,,basque,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,334,1078,874,0,0,0,0,334,1078,et.po,,et,,estonian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,590,1632,1839,0,0,0,0,590,1632,es.po,,es,,spanish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,584,1601,1581,1,4,1,3,586,1608,eo.po,,eo,,esperanto,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,540,1486,1504,0,0,0,0,540,1486,en_gb.po,,en,gb,english,,united kingdom

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,433,1399,1402,0,0,0,0,433,1399,en_ca.po,,en,ca,english,,canada

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,254,1172,1173,6,129,0,0,260,1301,en@shaw.po,shaw,en,,english,shavian,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,556,1468,1587,25,134,0,0,581,1602,el.po,,el,,greek,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,410,1175,812,0,0,0,0,410,1175,dz.po,,dz,,dzongkha,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,590,1632,1574,0,0,0,0,590,1632,de.po,,de,,german,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,589,1629,1529,0,0,0,0,589,1629,da.po,,da,,danish,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,349,895,977,0,0,0,0,349,895,cy.po,,cy,,welsh,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,590,1632,1626,0,0,0,0,590,1632,cs.po,,cs,,czech,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,574,1584,1797,0,0,0,0,574,1584,ca@valencia.po,valencia,ca,,catalan,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,590,1632,1849,0,0,0,0,590,1632,ca.po,,ca,,catalan,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,535,1464,1357,0,0,0,0,535,1464,bs.po,,bs,,bosnian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,428,1337,1332,0,0,0,0,428,1337,bn_in.po,,bn,in,bangla,,india

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,267,1327,1384,0,0,0,0,267,1327,bn.po,,bn,,bangla,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,574,1584,1721,0,0,0,0,574,1584,bg.po,,bg,,bulgarian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,277,564,566,0,0,133,611,410,1175,be@latin.po,latin,be,,belarusian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,378,855,909,0,0,50,364,428,1219,be.po,,be,,belarusian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,181,392,369,142,368,55,155,378,915,az.po,,az,,azerbaijani,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,433,1399,1502,0,0,0,0,433,1399,ast.po,,ast,,asturian,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,428,1337,1364,0,0,0,0,428,1337,as.po,,as,,assamese,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,257,545,557,65,160,251,876,573,1581,ar.po,,ar,,arabic,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,83,78,80,49,55,246,782,378,915,am.po,,am,,amharic,,

- gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,350,1044,1011,37,159,41,176,428,1379,af.po,,af,,afrikaans,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,218,668,268,0,0,0,0,218,668,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,58,122,81,2,6,0,0,60,128,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,220,661,347,0,0,0,0,220,661,zh_cn.po,,zh,cn,chinese,,china

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,139,432,420,0,0,0,0,139,432,uk.po,,uk,,ukrainian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,218,668,595,0,0,0,0,218,668,tr.po,,tr,,turkish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,138,424,202,0,0,0,0,138,424,th.po,,th,,thai,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,105,342,367,0,0,0,0,105,342,tg.po,,tg,,tajik,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,218,668,657,0,0,0,0,218,668,sv.po,,sv,,swedish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,220,661,697,0,0,0,0,220,661,sr@latin.po,latin,sr,,serbian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,218,668,705,0,0,0,0,218,668,sr.po,,sr,,serbian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,218,668,693,0,0,0,0,218,668,sl.po,,sl,,slovenian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,220,669,670,0,0,0,0,220,669,sk.po,,sk,,slovak,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,218,668,697,0,0,0,0,218,668,ru.po,,ru,,russian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,218,668,727,0,0,0,0,218,668,ro.po,,ro,,romanian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,218,668,753,0,0,0,0,218,668,pt_br.po,,pt,br,portuguese,,brazil

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,138,424,446,0,0,0,0,138,424,pt.po,,pt,,portuguese,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,218,668,632,0,0,0,0,218,668,pl.po,,pl,,polish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,66,222,254,0,0,0,0,66,222,pa.po,,pa,,punjabi,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,217,645,753,1,3,2,13,220,661,oc.po,,oc,,occitan,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,218,668,669,0,0,0,0,218,668,nl.po,,nl,,dutch,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,214,641,623,0,0,0,0,214,641,ne.po,,ne,,nepali,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,214,641,624,0,0,0,0,214,641,nb.po,,nb,,norwegian bokmål,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,220,669,598,0,0,0,0,220,669,ml.po,,ml,,malayalam,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,218,668,636,0,0,0,0,218,668,lv.po,,lv,,latvian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,218,668,621,0,0,0,0,218,668,lt.po,,lt,,lithuanian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,218,668,539,0,0,0,0,218,668,ko.po,,ko,,korean,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,218,668,611,0,0,0,0,218,668,kk.po,,kk,,kazakh,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,218,668,267,0,0,0,0,218,668,ja.po,,ja,,japanese,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,218,668,709,0,0,0,0,218,668,it.po,,it,,italian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,220,669,657,0,0,0,0,220,669,is.po,,is,,icelandic,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,218,668,671,0,0,0,0,218,668,id.po,,id,,indonesian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,218,668,632,0,0,0,0,218,668,hu.po,,hu,,hungarian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,220,669,667,0,0,0,0,220,669,hr.po,,hr,,croatian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,138,424,440,0,0,0,0,138,424,he.po,,he,,hebrew,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,218,668,737,0,0,0,0,218,668,gl.po,,gl,,galician,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,220,661,881,0,0,0,0,220,661,gd.po,,gd,,scottish gaelic,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,80,173,211,0,0,23,152,103,325,ga.po,,ga,,irish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,218,668,752,0,0,0,0,218,668,fur.po,,fur,,friulian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,218,668,760,0,0,0,0,218,668,fr.po,,fr,,french,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,218,668,522,0,0,0,0,218,668,fi.po,,fi,,finnish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,214,641,663,0,0,0,0,214,641,fa.po,,fa,,persian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,218,668,596,0,0,0,0,218,668,eu.po,,eu,,basque,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,218,668,571,0,0,0,0,218,668,et.po,,et,,estonian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,218,668,778,0,0,0,0,218,668,es.po,,es,,spanish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,220,669,671,0,0,0,0,220,669,eo.po,,eo,,esperanto,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,220,669,685,0,0,0,0,220,669,en_gb.po,,en,gb,english,,united kingdom

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,218,668,754,0,0,0,0,218,668,el.po,,el,,greek,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,218,668,661,0,0,0,0,218,668,de.po,,de,,german,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,218,668,635,0,0,0,0,218,668,da.po,,da,,danish,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,218,668,648,0,0,0,0,218,668,cs.po,,cs,,czech,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,213,638,746,1,3,0,0,214,641,ca@valencia.po,valencia,ca,,catalan,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,218,668,789,0,0,0,0,218,668,ca.po,,ca,,catalan,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,67,224,219,0,0,0,0,67,224,bs.po,,bs,,bosnian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,220,669,664,0,0,0,0,220,669,be.po,,be,,belarusian,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,219,649,677,0,0,1,12,220,661,ar.po,,ar,,arabic,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,67,224,249,0,0,0,0,67,224,an.po,,an,,aragonese,,

- gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,218,668,669,0,0,0,0,218,668,af.po,,af,,afrikaans,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,57,186,71,0,0,0,0,57,186,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,58,186,93,0,0,0,0,58,186,zh_cn.po,,zh,cn,chinese,,china

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,47,161,149,0,0,0,0,47,161,uk.po,,uk,,ukrainian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,57,186,178,0,0,0,0,57,186,tr.po,,tr,,turkish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,24,49,64,0,0,23,112,47,161,tg.po,,tg,,tajik,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,54,149,138,0,0,3,37,57,186,ta.po,,ta,,tamil,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,57,186,189,0,0,0,0,57,186,sv.po,,sv,,swedish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,58,186,204,0,0,0,0,58,186,sr@latin.po,latin,sr,,serbian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,57,186,203,0,0,0,0,57,186,sr.po,,sr,,serbian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,57,186,191,0,0,0,0,57,186,sl.po,,sl,,slovenian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,58,186,191,0,0,0,0,58,186,sk.po,,sk,,slovak,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,57,186,180,0,0,0,0,57,186,ru.po,,ru,,russian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,57,186,219,0,0,0,0,57,186,ro.po,,ro,,romanian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,57,186,226,0,0,0,0,57,186,pt_br.po,,pt,br,portuguese,,brazil

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,48,162,177,0,0,0,0,48,162,pt.po,,pt,,portuguese,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,57,186,194,0,0,0,0,57,186,pl.po,,pl,,polish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,35,80,103,0,0,7,66,42,146,pa.po,,pa,,punjabi,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,58,186,214,0,0,0,0,58,186,oc.po,,oc,,occitan,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,57,186,217,0,0,0,0,57,186,nl.po,,nl,,dutch,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,58,186,197,0,0,0,0,58,186,ne.po,,ne,,nepali,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,58,186,184,0,0,0,0,58,186,nb.po,,nb,,norwegian bokmål,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,58,186,158,0,0,0,0,58,186,ml.po,,ml,,malayalam,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,57,186,173,0,0,0,0,57,186,lv.po,,lv,,latvian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,57,186,175,0,0,0,0,57,186,lt.po,,lt,,lithuanian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ln.po,44,155,181,0,0,0,0,44,155,ln.po,,ln,,lingala,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,57,186,168,0,0,0,0,57,186,ko.po,,ko,,korean,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,57,186,182,0,0,0,0,57,186,kk.po,,kk,,kazakh,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,56,185,79,0,0,1,1,57,186,ja.po,,ja,,japanese,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,57,186,195,0,0,0,0,57,186,it.po,,it,,italian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,58,186,192,0,0,0,0,58,186,is.po,,is,,icelandic,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,57,186,208,0,0,0,0,57,186,id.po,,id,,indonesian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,57,186,181,0,0,0,0,57,186,hu.po,,hu,,hungarian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,57,186,178,0,0,0,0,57,186,hr.po,,hr,,croatian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,47,161,157,0,0,0,0,47,161,he.po,,he,,hebrew,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,47,161,173,0,0,0,0,47,161,gu.po,,gu,,gujarati,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,57,186,212,0,0,0,0,57,186,gl.po,,gl,,galician,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,58,186,246,0,0,0,0,58,186,gd.po,,gd,,scottish gaelic,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,57,186,215,0,0,0,0,57,186,fur.po,,fur,,friulian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,57,186,217,0,0,0,0,57,186,fr.po,,fr,,french,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,57,186,151,0,0,0,0,57,186,fi.po,,fi,,finnish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,58,186,219,0,0,0,0,58,186,fa.po,,fa,,persian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,57,186,180,0,0,0,0,57,186,eu.po,,eu,,basque,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,57,186,217,0,0,0,0,57,186,es.po,,es,,spanish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,56,185,178,0,0,0,0,56,185,eo.po,,eo,,esperanto,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,58,186,194,0,0,0,0,58,186,en_gb.po,,en,gb,english,,united kingdom

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,57,186,207,0,0,0,0,57,186,el.po,,el,,greek,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,57,186,204,0,0,0,0,57,186,de.po,,de,,german,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,56,185,191,0,0,0,0,56,185,da.po,,da,,danish,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,57,186,189,0,0,0,0,57,186,cs.po,,cs,,czech,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,58,186,221,0,0,0,0,58,186,ca@valencia.po,valencia,ca,,catalan,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,58,186,221,0,0,0,0,58,186,ca.po,,ca,,catalan,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,58,186,179,0,0,0,0,58,186,be.po,,be,,belarusian,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,57,186,183,0,0,0,0,57,186,ar.po,,ar,,arabic,,

- gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,57,186,191,0,0,0,0,57,186,af.po,,af,,afrikaans,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,82,983,765,0,0,0,0,82,983,cs.po,,cs,,czech,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,82,983,736,0,0,0,0,82,983,hu.po,,hu,,hungarian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,82,983,621,0,0,0,0,82,983,ko.po,,ko,,korean,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,82,983,721,0,0,0,0,82,983,pl.po,,pl,,polish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,82,983,994,0,0,0,0,82,983,el.po,,el,,greek,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,82,983,985,0,0,0,0,82,983,nl.po,,nl,,dutch,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,82,983,968,0,0,0,0,82,983,de.po,,de,,german,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,81,978,939,0,0,0,0,81,978,ca.po,,ca,,catalan,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,82,983,957,0,0,0,0,82,983,sv.po,,sv,,swedish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,82,983,1061,0,0,0,0,82,983,pt_br.po,,pt,br,portuguese,,brazil

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,82,983,584,0,0,0,0,82,983,fi.po,,fi,,finnish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,82,983,963,0,0,0,0,82,983,es.po,,es,,spanish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,81,978,753,0,0,0,0,81,978,ru.po,,ru,,russian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,82,983,960,0,0,0,0,82,983,da.po,,da,,danish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,82,983,1060,0,0,0,0,82,983,fr.po,,fr,,french,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,82,983,894,0,0,0,0,82,983,gl.po,,gl,,galician,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,82,983,845,0,0,0,0,82,983,id.po,,id,,indonesian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,100,284,217,0,0,0,0,100,284,fi.po,,fi,,finnish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,100,284,277,0,0,0,0,100,284,de.po,,de,,german,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,100,283,254,0,0,0,0,100,283,eu.po,,eu,,basque,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,77,223,199,0,0,0,0,77,223,te.po,,te,,telugu,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,100,284,300,0,0,0,0,100,284,it.po,,it,,italian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,100,284,115,0,0,0,0,100,284,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,100,284,248,0,0,0,0,100,284,hu.po,,hu,,hungarian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,100,283,369,0,0,0,0,100,283,gd.po,,gd,,scottish gaelic,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,100,284,310,0,0,0,0,100,284,fur.po,,fur,,friulian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,100,284,309,0,0,0,0,100,284,el.po,,el,,greek,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,59,127,126,0,0,1,1,60,128,ug.po,,ug,,uyghur,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,100,284,257,0,0,0,0,100,284,lv.po,,lv,,latvian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,98,280,121,0,0,2,4,100,284,ja.po,,ja,,japanese,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,100,284,291,0,0,0,0,100,284,sv.po,,sv,,swedish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,77,223,244,0,0,0,0,77,223,or.po,,or,,odia,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,100,283,277,0,0,0,0,100,283,sk.po,,sk,,slovak,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,77,223,91,0,0,0,0,77,223,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,77,223,245,0,0,0,0,77,223,gu.po,,gu,,gujarati,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,100,284,245,0,0,0,0,100,284,lt.po,,lt,,lithuanian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,77,223,226,0,0,0,0,77,223,mr.po,,mr,,marathi,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,100,283,286,0,0,0,0,100,283,af.po,,af,,afrikaans,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,59,129,130,5,19,13,75,77,223,ne.po,,ne,,nepali,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,95,273,310,0,0,0,0,95,273,pt.po,,pt,,portuguese,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,100,283,273,0,0,0,0,100,283,be.po,,be,,belarusian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,100,283,284,0,0,0,0,100,283,sr@latin.po,latin,sr,,serbian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,100,284,272,0,0,0,0,100,284,da.po,,da,,danish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,77,223,213,0,0,0,0,77,223,kn.po,,kn,,kannada,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,100,283,291,0,0,0,0,100,283,nb.po,,nb,,norwegian bokmål,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,43,85,108,0,0,34,138,77,223,ga.po,,ga,,irish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,100,283,278,0,0,0,0,100,283,ml.po,,ml,,malayalam,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,77,223,237,0,0,0,0,77,223,as.po,,as,,assamese,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,77,223,229,0,0,0,0,77,223,ta.po,,ta,,tamil,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,100,284,239,0,0,0,0,100,284,ko.po,,ko,,korean,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,100,284,315,0,0,0,0,100,284,ro.po,,ro,,romanian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,77,223,252,0,0,0,0,77,223,an.po,,an,,aragonese,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,100,284,334,0,0,0,0,100,284,ca.po,,ca,,catalan,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,100,284,267,0,0,0,0,100,284,kk.po,,kk,,kazakh,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,100,284,283,0,0,0,0,100,284,sr.po,,sr,,serbian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,100,283,269,0,0,0,0,100,283,hr.po,,hr,,croatian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,100,283,136,0,0,0,0,100,283,zh_cn.po,,zh,cn,chinese,,china

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,100,284,315,0,0,0,0,100,284,gl.po,,gl,,galician,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,94,272,121,0,0,0,0,94,272,th.po,,th,,thai,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,100,284,268,0,0,0,0,100,284,cs.po,,cs,,czech,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,77,223,220,0,0,0,0,77,223,bs.po,,bs,,bosnian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,100,283,331,0,0,0,0,100,283,ca@valencia.po,valencia,ca,,catalan,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,100,284,266,0,0,0,0,100,284,nl.po,,nl,,dutch,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,100,283,276,0,0,0,0,100,283,is.po,,is,,icelandic,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,94,272,286,0,0,0,0,94,272,he.po,,he,,hebrew,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,100,283,308,0,0,0,0,100,283,pa.po,,pa,,punjabi,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,77,223,247,0,0,0,0,77,223,tg.po,,tg,,tajik,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,100,283,331,0,0,0,0,100,283,fa.po,,fa,,persian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,100,284,345,0,0,0,0,100,284,fr.po,,fr,,french,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,100,284,281,0,0,0,0,100,284,sl.po,,sl,,slovenian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,100,284,299,0,0,0,0,100,284,id.po,,id,,indonesian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,100,284,273,0,0,0,0,100,284,ru.po,,ru,,russian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,92,259,310,0,0,1,10,93,269,oc.po,,oc,,occitan,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,100,284,325,0,0,0,0,100,284,es.po,,es,,spanish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,77,223,269,0,0,0,0,77,223,hi.po,,hi,,hindi,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,95,273,268,0,0,0,0,95,273,ar.po,,ar,,arabic,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,77,223,176,0,0,0,0,77,223,et.po,,et,,estonian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,100,284,424,0,0,0,0,100,284,vi.po,,vi,,vietnamese,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,94,272,282,0,0,0,0,94,272,en_gb.po,,en,gb,english,,united kingdom

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,100,283,281,0,0,0,0,100,283,eo.po,,eo,,esperanto,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,92,259,265,0,0,0,0,92,259,bg.po,,bg,,bulgarian,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,100,284,345,0,0,0,0,100,284,pt_br.po,,pt,br,portuguese,,brazil

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,100,284,268,0,0,0,0,100,284,tr.po,,tr,,turkish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,100,284,259,0,0,0,0,100,284,pl.po,,pl,,polish,,

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,77,223,239,0,0,0,0,77,223,bn_in.po,,bn,in,bangla,,india

- gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,38,67,72,0,0,0,0,38,67,uk.po,,uk,,ukrainian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,16,160,70,0,0,10,374,26,534,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,16,160,70,0,0,10,374,26,534,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,26,534,139,0,0,0,0,26,534,zh_cn.po,,zh,cn,chinese,,china

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,26,534,475,0,0,0,0,26,534,sv.po,,sv,,swedish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,26,534,665,0,0,0,0,26,534,pt_br.po,,pt,br,portuguese,,brazil

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,26,534,470,0,0,0,0,26,534,pl.po,,pl,,polish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ml/ml.po,26,534,417,0,0,0,0,26,534,ml.po,,ml,,malayalam,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,26,534,387,0,0,0,0,26,534,ko.po,,ko,,korean,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,26,534,543,0,0,0,0,26,534,it.po,,it,,italian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,26,534,473,0,0,0,0,26,534,hu.po,,hu,,hungarian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,26,534,444,0,0,0,0,26,534,hr.po,,hr,,croatian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,26,534,554,0,0,0,0,26,534,gl.po,,gl,,galician,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,26,534,615,0,0,0,0,26,534,fr.po,,fr,,french,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,26,534,346,0,0,0,0,26,534,fi.po,,fi,,finnish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,26,534,598,0,0,0,0,26,534,es.po,,es,,spanish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,26,534,577,0,0,0,0,26,534,el.po,,el,,greek,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,26,534,516,0,0,0,0,26,534,de.po,,de,,german,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,26,534,480,0,0,0,0,26,534,da.po,,da,,danish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,26,534,491,0,0,0,0,26,534,cs.po,,cs,,czech,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,26,534,613,0,0,0,0,26,534,ca.po,,ca,,catalan,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,345,1796,471,0,0,0,0,345,1796,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,342,1792,467,0,0,0,0,342,1792,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,345,1796,468,0,0,0,0,345,1796,zh_cn.po,,zh,cn,chinese,,china

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,345,1796,2263,0,0,0,0,345,1796,vi.po,,vi,,vietnamese,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,345,1796,1483,0,0,0,0,345,1796,uk.po,,uk,,ukrainian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,329,1681,1328,0,0,7,57,336,1738,ug.po,,ug,,uyghur,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,345,1796,1525,0,0,0,0,345,1796,tr.po,,tr,,turkish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,18,28,19,0,0,110,714,128,742,th.po,,th,,thai,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,343,1793,1702,0,0,0,0,343,1793,tg.po,,tg,,tajik,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,342,1792,1371,0,0,0,0,342,1792,te.po,,te,,telugu,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,342,1792,1458,0,0,0,0,342,1792,ta.po,,ta,,tamil,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,345,1796,1561,0,0,0,0,345,1796,sv.po,,sv,,swedish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,345,1796,1613,0,0,0,0,345,1796,sr@latin.po,latin,sr,,serbian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,345,1796,1613,0,0,0,0,345,1796,sr.po,,sr,,serbian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,345,1796,1591,0,0,0,0,345,1796,sl.po,,sl,,slovenian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,345,1796,1599,0,0,0,0,345,1796,sk.po,,sk,,slovak,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,345,1796,1540,0,0,0,0,345,1796,ru.po,,ru,,russian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,345,1796,1853,0,0,0,0,345,1796,ro.po,,ro,,romanian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,345,1796,2050,0,0,0,0,345,1796,pt_br.po,,pt,br,portuguese,,brazil

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,345,1796,2026,0,0,0,0,345,1796,pt.po,,pt,,portuguese,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,345,1796,1617,0,0,0,0,345,1796,pl.po,,pl,,polish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,342,1792,1925,0,0,0,0,342,1792,pa.po,,pa,,punjabi,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,342,1792,1682,0,0,0,0,342,1792,or.po,,or,,odia,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,343,1793,2019,0,0,0,0,343,1793,oc.po,,oc,,occitan,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,345,1796,1670,0,0,0,0,345,1796,nl.po,,nl,,dutch,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,151,327,333,109,449,85,1020,345,1796,ne.po,,ne,,nepali,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,345,1796,1611,0,0,0,0,345,1796,nb.po,,nb,,norwegian bokmål,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,342,1792,1522,0,0,0,0,342,1792,mr.po,,mr,,marathi,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,237,770,635,2,2,102,976,341,1748,ml.po,,ml,,malayalam,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,345,1796,1507,0,0,0,0,345,1796,lv.po,,lv,,latvian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,345,1796,1407,0,0,0,0,345,1796,lt.po,,lt,,lithuanian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,345,1796,1377,0,0,0,0,345,1796,ko.po,,ko,,korean,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,342,1792,1455,0,0,0,0,342,1792,kn.po,,kn,,kannada,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,153,404,359,0,0,192,1392,345,1796,kk.po,,kk,,kazakh,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,343,1793,420,0,0,2,3,345,1796,ja.po,,ja,,japanese,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,345,1796,1879,0,0,0,0,345,1796,it.po,,it,,italian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,345,1796,1706,0,0,0,0,345,1796,is.po,,is,,icelandic,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,345,1796,1612,0,0,0,0,345,1796,id.po,,id,,indonesian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,345,1796,1471,0,0,0,0,345,1796,hu.po,,hu,,hungarian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,345,1796,1571,0,0,0,0,345,1796,hr.po,,hr,,croatian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,342,1792,2093,0,0,0,0,342,1792,hi.po,,hi,,hindi,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,343,1793,1605,0,0,0,0,343,1793,he.po,,he,,hebrew,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,343,1793,1825,0,0,0,0,343,1793,gu.po,,gu,,gujarati,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,345,1796,1995,0,0,0,0,345,1796,gl.po,,gl,,galician,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,345,1796,2183,0,0,0,0,345,1796,gd.po,,gd,,scottish gaelic,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,345,1796,2031,0,0,0,0,345,1796,fur.po,,fur,,friulian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,345,1796,2037,0,0,0,0,345,1796,fr.po,,fr,,french,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,321,1639,1155,1,17,23,140,345,1796,fi.po,,fi,,finnish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,345,1796,1873,0,0,0,0,345,1796,fa.po,,fa,,persian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,345,1796,1446,0,0,0,0,345,1796,eu.po,,eu,,basque,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,343,1793,1323,0,0,0,0,343,1793,et.po,,et,,estonian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,345,1796,2031,0,0,0,0,345,1796,es.po,,es,,spanish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,345,1796,1609,0,0,0,0,345,1796,eo.po,,eo,,esperanto,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,345,1796,1795,0,0,0,0,345,1796,en_gb.po,,en,gb,english,,united kingdom

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,345,1796,1839,0,0,0,0,345,1796,el.po,,el,,greek,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,345,1796,1724,0,0,0,0,345,1796,de.po,,de,,german,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,345,1796,1572,0,0,0,0,345,1796,da.po,,da,,danish,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,345,1796,1599,0,0,0,0,345,1796,cs.po,,cs,,czech,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,345,1796,2097,0,0,0,0,345,1796,ca@valencia.po,valencia,ca,,catalan,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,345,1796,2100,0,0,0,0,345,1796,ca.po,,ca,,catalan,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,343,1793,1549,0,0,0,0,343,1793,bs.po,,bs,,bosnian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,342,1792,1762,0,0,0,0,342,1792,bn_in.po,,bn,in,bangla,,india

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,343,1793,1816,0,0,0,0,343,1793,bg.po,,bg,,bulgarian,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,342,1792,1719,0,0,0,0,342,1792,as.po,,as,,assamese,,

- gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,97,304,294,0,0,286,2109,383,2413,ar.po,,ar,,arabic,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_tw.po,167,590,227,0,0,0,0,167,590,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_hk.po,155,405,207,0,0,0,0,155,405,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_cn.po,158,434,221,0,0,0,0,158,434,zh_cn.po,,zh,cn,chinese,,china

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/vi.po,157,433,647,0,0,0,0,157,433,vi.po,,vi,,vietnamese,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/uk.po,129,311,312,0,0,0,0,129,311,uk.po,,uk,,ukrainian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ug.po,151,344,326,0,0,0,0,151,344,ug.po,,ug,,uyghur,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/tr.po,167,590,498,0,0,0,0,167,590,tr.po,,tr,,turkish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/th.po,157,433,215,0,0,0,0,157,433,th.po,,th,,thai,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/tg.po,156,411,473,0,0,0,0,156,411,tg.po,,tg,,tajik,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/te.po,155,405,370,0,0,0,0,155,405,te.po,,te,,telugu,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ta.po,155,405,406,0,0,0,0,155,405,ta.po,,ta,,tamil,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sv.po,167,590,558,0,0,0,0,167,590,sv.po,,sv,,swedish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sr@latin.po,162,563,589,0,0,0,0,162,563,sr@latin.po,latin,sr,,serbian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sr.po,167,590,617,0,0,0,0,167,590,sr.po,,sr,,serbian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sl.po,167,590,551,0,0,0,0,167,590,sl.po,,sl,,slovenian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sk.po,166,586,553,0,0,0,0,166,586,sk.po,,sk,,slovak,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ru.po,167,590,559,0,0,0,0,167,590,ru.po,,ru,,russian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ro.po,167,590,622,0,0,0,0,167,590,ro.po,,ro,,romanian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pt_br.po,167,590,654,0,0,0,0,167,590,pt_br.po,,pt,br,portuguese,,brazil

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pt.po,157,433,481,0,0,0,0,157,433,pt.po,,pt,,portuguese,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pl.po,167,590,559,0,0,0,0,167,590,pl.po,,pl,,polish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pa.po,156,411,457,0,0,0,0,156,411,pa.po,,pa,,punjabi,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/or.po,155,405,440,0,0,0,0,155,405,or.po,,or,,odia,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/oc.po,157,433,497,0,0,0,0,157,433,oc.po,,oc,,occitan,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/nl.po,167,590,576,0,0,0,0,167,590,nl.po,,nl,,dutch,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ne.po,144,417,416,0,0,0,0,144,417,ne.po,,ne,,nepali,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/nb.po,144,417,408,0,0,0,0,144,417,nb.po,,nb,,norwegian bokmål,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/mr.po,155,405,421,0,0,0,0,155,405,mr.po,,mr,,marathi,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ml.po,151,344,316,0,0,0,0,151,344,ml.po,,ml,,malayalam,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/mk.po,116,231,245,0,0,0,0,116,231,mk.po,,mk,,macedonian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/lv.po,167,590,548,0,0,0,0,167,590,lv.po,,lv,,latvian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/lt.po,167,590,531,0,0,0,0,167,590,lt.po,,lt,,lithuanian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ko.po,167,590,461,0,0,0,0,167,590,ko.po,,ko,,korean,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/kn.po,155,405,399,0,0,0,0,155,405,kn.po,,kn,,kannada,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/kk.po,167,590,519,0,0,0,0,167,590,kk.po,,kk,,kazakh,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ja.po,157,433,210,0,0,0,0,157,433,ja.po,,ja,,japanese,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/it.po,167,590,561,0,0,0,0,167,590,it.po,,it,,italian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/is.po,163,506,494,0,0,3,80,166,586,is.po,,is,,icelandic,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/id.po,167,590,577,0,0,0,0,167,590,id.po,,id,,indonesian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hu.po,167,590,534,0,0,0,0,167,590,hu.po,,hu,,hungarian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hr.po,166,586,536,0,0,0,0,166,586,hr.po,,hr,,croatian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hi.po,155,405,449,0,0,0,0,155,405,hi.po,,hi,,hindi,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/he.po,157,433,490,0,0,0,0,157,433,he.po,,he,,hebrew,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gu.po,157,433,490,0,0,0,0,157,433,gu.po,,gu,,gujarati,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gl.po,167,590,648,0,0,0,0,167,590,gl.po,,gl,,galician,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gd.po,144,417,591,0,0,0,0,144,417,gd.po,,gd,,scottish gaelic,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ga.po,117,184,202,1,4,33,142,151,330,ga.po,,ga,,irish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fur.po,167,590,642,0,0,0,0,167,590,fur.po,,fur,,friulian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fr.po,167,590,663,0,0,0,0,167,590,fr.po,,fr,,french,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fi.po,167,590,451,0,0,0,0,167,590,fi.po,,fi,,finnish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fa.po,146,422,485,0,0,0,0,146,422,fa.po,,fa,,persian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/eu.po,167,590,512,0,0,0,0,167,590,eu.po,,eu,,basque,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/et.po,151,331,301,0,0,0,0,151,331,et.po,,et,,estonian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/es.po,167,590,650,0,0,0,0,167,590,es.po,,es,,spanish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/eo.po,159,481,474,0,0,0,0,159,481,eo.po,,eo,,esperanto,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/en_gb.po,162,563,569,0,0,0,0,162,563,en_gb.po,,en,gb,english,,united kingdom

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/en_ca.po,145,309,310,0,0,0,0,145,309,en_ca.po,,en,ca,english,,canada

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/el.po,167,590,636,0,0,0,0,167,590,el.po,,el,,greek,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/de.po,167,590,562,0,0,0,0,167,590,de.po,,de,,german,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/da.po,167,590,524,0,0,0,0,167,590,da.po,,da,,danish,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/cs.po,167,590,539,0,0,0,0,167,590,cs.po,,cs,,czech,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,144,417,499,0,0,0,0,144,417,ca@valencia.po,valencia,ca,,catalan,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ca.po,167,590,681,0,0,0,0,167,590,ca.po,,ca,,catalan,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bs.po,156,411,418,0,0,0,0,156,411,bs.po,,bs,,bosnian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bn_in.po,155,405,449,0,0,0,0,155,405,bn_in.po,,bn,in,bangla,,india

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bg.po,112,288,344,0,0,0,0,112,288,bg.po,,bg,,bulgarian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/be.po,146,422,432,0,0,0,0,146,422,be.po,,be,,belarusian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ast.po,105,205,222,0,0,0,0,105,205,ast.po,,ast,,asturian,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/as.po,155,405,467,0,0,0,0,155,405,as.po,,as,,assamese,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ar.po,155,380,423,0,0,2,53,157,433,ar.po,,ar,,arabic,,

- gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/af.po,99,186,192,5,8,3,16,107,210,af.po,,af,,afrikaans,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/zh_tw.po,756,1313,886,0,0,0,0,756,1313,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/zh_cn.po,756,1313,757,0,0,0,0,756,1313,zh_cn.po,,zh,cn,chinese,,china

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/vi.po,504,504,981,69,88,183,721,756,1313,vi.po,,vi,,vietnamese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ur.po,0,0,0,0,0,756,1313,756,1313,ur.po,,ur,,urdu,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/uk.po,752,1304,1368,0,0,0,0,752,1304,uk.po,,uk,,ukrainian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/tr.po,612,672,672,4,8,140,633,756,1313,tr.po,,tr,,turkish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/te.po,756,1313,1337,0,0,0,0,756,1313,te.po,,te,,telugu,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ta.po,756,1313,1299,0,0,0,0,756,1313,ta.po,,ta,,tamil,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sv.po,752,1304,1203,0,0,0,0,752,1304,sv.po,,sv,,swedish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sr@latin.po,750,1298,1290,5,9,1,6,756,1313,sr@latin.po,latin,sr,,serbian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sr.po,750,1298,1290,5,9,1,6,756,1313,sr.po,,sr,,serbian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sq.po,551,551,551,38,54,167,708,756,1313,sq.po,,sq,,albanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sl.po,521,521,521,69,88,166,704,756,1313,sl.po,,sl,,slovenian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sk.po,756,1313,1307,0,0,0,0,756,1313,sk.po,,sk,,slovak,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/si.po,550,550,551,40,59,166,704,756,1313,si.po,,si,,sinhala,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ru.po,756,1313,1396,0,0,0,0,756,1313,ru.po,,ru,,russian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ro.po,550,550,550,40,59,166,704,756,1313,ro.po,,ro,,romanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pt_br.po,756,1313,1485,0,0,0,0,756,1313,pt_br.po,,pt,br,portuguese,,brazil

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pt.po,756,1313,1404,0,0,0,0,756,1313,pt.po,,pt,,portuguese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pl.po,756,1313,1494,0,0,0,0,756,1313,pl.po,,pl,,polish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pa.po,756,1313,1376,0,0,0,0,756,1313,pa.po,,pa,,punjabi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/or.po,756,1313,1318,0,0,0,0,756,1313,or.po,,or,,odia,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nn.po,0,0,0,0,0,756,1313,756,1313,nn.po,,nn,,norwegian nynorsk,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nl.po,756,1313,1289,0,0,0,0,756,1313,nl.po,,nl,,dutch,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nds.po,756,1313,1295,0,0,0,0,756,1313,nds.po,,nds,,low german,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nb.po,709,1000,948,0,0,47,313,756,1313,nb.po,,nb,,norwegian bokmål,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ms.po,551,551,551,39,58,166,704,756,1313,ms.po,,ms,,malay,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mr.po,756,1313,1318,0,0,0,0,756,1313,mr.po,,mr,,marathi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ml.po,756,1313,1312,0,0,0,0,756,1313,ml.po,,ml,,malayalam,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mk.po,521,521,521,69,88,166,704,756,1313,mk.po,,mk,,macedonian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mai.po,559,559,564,31,50,166,704,756,1313,mai.po,,mai,,maithili,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lv.po,549,549,622,41,60,166,704,756,1313,lv.po,,lv,,latvian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lt.po,521,521,521,69,88,166,704,756,1313,lt.po,,lt,,lithuanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lo.po,0,0,0,0,0,756,1313,756,1313,lo.po,,lo,,lao,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ku.po,0,0,0,0,0,756,1313,756,1313,ku.po,,ku,,kurdish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ko.po,756,1313,1435,0,0,0,0,756,1313,ko.po,,ko,,korean,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/kn.po,756,1313,1430,0,0,0,0,756,1313,kn.po,,kn,,kannada,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ka.po,166,166,166,40,53,550,1094,756,1313,ka.po,,ka,,georgian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ja.po,756,1313,912,0,0,0,0,756,1313,ja.po,,ja,,japanese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/it.po,756,1313,1427,0,0,0,0,756,1313,it.po,,it,,italian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/is.po,750,1298,1154,5,9,1,6,756,1313,is.po,,is,,icelandic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ilo.po,0,0,0,0,0,756,1313,756,1313,ilo.po,,ilo,,iloko,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/id.po,539,539,539,51,70,166,704,756,1313,id.po,,id,,indonesian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hu.po,690,971,986,15,29,51,313,756,1313,hu.po,,hu,,hungarian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hr.po,551,551,563,39,58,166,704,756,1313,hr.po,,hr,,croatian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hi.po,756,1313,1317,0,0,0,0,756,1313,hi.po,,hi,,hindi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/he.po,504,504,515,31,50,221,759,756,1313,he.po,,he,,hebrew,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/gu.po,756,1313,1388,0,0,0,0,756,1313,gu.po,,gu,,gujarati,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/gl.po,521,521,521,69,88,166,704,756,1313,gl.po,,gl,,galician,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fr.po,755,1307,1447,0,0,1,6,756,1313,fr.po,,fr,,french,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fi.po,756,1313,1213,0,0,0,0,756,1313,fi.po,,fi,,finnish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fa.po,520,526,701,59,76,177,711,756,1313,fa.po,,fa,,persian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/et.po,521,521,522,69,88,166,704,756,1313,et.po,,et,,estonian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/es.po,756,1313,1465,0,0,0,0,756,1313,es.po,,es,,spanish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/en_gb.po,734,1223,1223,19,67,3,23,756,1313,en_gb.po,,en,gb,english,,united kingdom

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/el.po,734,1223,1195,19,67,3,23,756,1313,el.po,,el,,greek,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/de.po,756,1313,1295,0,0,0,0,756,1313,de.po,,de,,german,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/da.po,750,1298,1198,5,9,1,6,756,1313,da.po,,da,,danish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/cy.po,539,539,543,51,70,166,704,756,1313,cy.po,,cy,,welsh,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/cs.po,752,1304,1298,0,0,0,0,752,1304,cs.po,,cs,,czech,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ca.po,652,905,959,1,2,103,406,756,1313,ca.po,,ca,,catalan,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bs.po,550,550,562,40,59,166,704,756,1313,bs.po,,bs,,bosnian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bn_in.po,756,1313,1335,0,0,0,0,756,1313,bn_in.po,,bn,in,bangla,,india

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bn.po,539,539,597,51,70,166,704,756,1313,bn.po,,bn,,bangla,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bg.po,559,559,573,31,50,166,704,756,1313,bg.po,,bg,,bulgarian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ast.po,756,1313,1322,0,0,0,0,756,1313,ast.po,,ast,,asturian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/as.po,734,1223,1387,19,67,3,23,756,1313,as.po,,as,,assamese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ar.po,750,1298,1298,5,9,1,6,756,1313,ar.po,,ar,,arabic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/am.po,521,521,543,69,88,166,704,756,1313,am.po,,am,,amharic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,564,2619,2251,100,352,72,411,736,3382,zu.po,,zu,,zulu,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,1572,5528,2099,0,0,0,0,1572,5528,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,1454,4946,1843,0,0,0,0,1454,4946,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,1500,5189,1978,1,3,0,0,1501,5192,zh_cn.po,,zh,cn,chinese,,china

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,646,2834,2520,55,267,36,284,737,3385,xh.po,,xh,,xhosa,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,128,273,373,219,470,390,2642,737,3385,wa.po,,wa,,walloon,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,1526,5320,7609,0,0,0,0,1526,5320,vi.po,,vi,,vietnamese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,353,885,846,0,0,411,2281,764,3166,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,353,885,846,0,0,411,2281,764,3166,uz.po,,uz,,uzbek,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,1492,5200,4819,0,0,0,0,1492,5200,uk.po,,uk,,ukrainian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,1432,4462,4192,2,2,17,137,1451,4601,ug.po,,ug,,uyghur,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,1622,5713,5121,0,0,0,0,1622,5713,tr.po,,tr,,turkish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,1501,5190,2170,0,0,0,0,1501,5190,th.po,,th,,thai,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,1464,5034,5429,0,0,0,0,1464,5034,tg.po,,tg,,tajik,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,1454,4946,4484,0,0,0,0,1454,4946,te.po,,te,,telugu,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,1454,4946,4602,0,0,0,0,1454,4946,ta.po,,ta,,tamil,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,1621,5712,5238,0,0,0,0,1621,5712,sv.po,,sv,,swedish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1526,5320,5367,0,0,0,0,1526,5320,sr@latin.po,latin,sr,,serbian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,1622,5713,5760,0,0,0,0,1622,5713,sr.po,,sr,,serbian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,724,2780,3203,0,0,0,0,724,2780,sq.po,,sq,,albanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,1622,5713,5763,0,0,0,0,1622,5713,sl.po,,sl,,slovenian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,1561,5433,5348,0,0,5,83,1566,5516,sk.po,,sk,,slovak,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,184,380,454,0,0,662,3320,846,3700,si.po,,si,,sinhala,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,60,63,64,474,2800,203,522,737,3385,rw.po,,rw,,kinyarwanda,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,1622,5713,5389,0,0,0,0,1622,5713,ru.po,,ru,,russian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,1622,5713,6053,0,0,0,0,1622,5713,ro.po,,ro,,romanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,1622,5713,6476,0,0,0,0,1622,5713,pt_br.po,,pt,br,portuguese,,brazil

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,1504,5267,5898,0,0,0,0,1504,5267,pt.po,,pt,,portuguese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,1622,5713,5476,0,0,0,0,1622,5713,pl.po,,pl,,polish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,1526,5320,5985,0,0,0,0,1526,5320,pa.po,,pa,,punjabi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,1454,4946,5435,0,0,0,0,1454,4946,or.po,,or,,odia,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,1551,5346,6226,0,0,16,119,1567,5465,oc.po,,oc,,occitan,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,571,2626,3886,95,347,70,409,736,3382,nso.po,,nso,,northern sotho,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,567,1856,1702,0,0,492,1512,1059,3368,nn.po,,nn,,norwegian nynorsk,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,1622,5713,5448,0,0,0,0,1622,5713,nl.po,,nl,,dutch,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,1269,3402,3385,89,408,142,1419,1500,5229,ne.po,,ne,,nepali,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,389,706,657,0,0,390,2519,779,3225,nds.po,,nds,,low german,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,1496,5201,4944,0,0,2,23,1498,5224,nb.po,,nb,,norwegian bokmål,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,368,1049,605,0,0,422,2315,790,3364,my.po,,my,,burmese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,327,868,832,517,1222,610,2856,1454,4946,ms.po,,ms,,malay,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,1454,4946,4960,0,0,0,0,1454,4946,mr.po,,mr,,marathi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,778,3548,3065,0,0,0,0,778,3548,mn.po,,mn,,mongolian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,1386,4336,3756,44,318,70,575,1500,5229,ml.po,,ml,,malayalam,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,953,2882,3146,0,0,0,0,953,2882,mk.po,,mk,,macedonian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,770,3501,3857,3,15,0,0,773,3516,mg.po,,mg,,malagasy,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,483,1583,1841,0,0,286,1604,769,3187,mai.po,,mai,,maithili,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,1622,5713,5172,0,0,0,0,1622,5713,lv.po,,lv,,latvian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,1622,5713,5080,0,0,0,0,1622,5713,lt.po,,lt,,lithuanian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,695,1780,1661,11,26,415,1672,1121,3478,ky.po,,ky,,kyrgyz,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,198,447,472,256,706,467,1749,921,2902,ku.po,,ku,,kurdish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,1622,5713,4888,0,0,0,0,1622,5713,ko.po,,ko,,korean,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,1452,4958,4666,0,0,0,0,1452,4958,kn.po,,kn,,kannada,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,1116,3467,1652,1,1,0,0,1117,3468,km.po,,km,,khmer,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,1622,5713,5279,0,0,0,0,1622,5713,kk.po,,kk,,kazakh,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,626,1983,1670,51,322,48,494,725,2799,ka.po,,ka,,georgian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,1605,5586,2088,1,15,16,112,1622,5713,ja.po,,ja,,japanese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,1622,5713,6071,0,0,0,0,1622,5713,it.po,,it,,italian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,1566,5516,5378,0,0,0,0,1566,5516,is.po,,is,,icelandic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,1622,5713,5662,0,0,0,0,1622,5713,id.po,,id,,indonesian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,480,1906,1762,0,0,0,0,480,1906,hy.po,,hy,,armenian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,1622,5713,5144,0,0,0,0,1622,5713,hu.po,,hu,,hungarian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,1595,5684,5520,0,0,0,0,1595,5684,hr.po,,hr,,croatian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,1454,4946,5873,0,0,0,0,1454,4946,hi.po,,hi,,hindi,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,1502,5192,5010,0,0,0,0,1502,5192,he.po,,he,,hebrew,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,1454,4946,5506,0,0,0,0,1454,4946,gu.po,,gu,,gujarati,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,1622,5713,6649,0,0,0,0,1622,5713,gl.po,,gl,,galician,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,1526,5320,6981,0,0,0,0,1526,5320,gd.po,,gd,,scottish gaelic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,892,1952,2167,149,574,424,2510,1465,5036,ga.po,,ga,,irish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,1622,5713,6508,0,0,0,0,1622,5713,fur.po,,fur,,friulian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,1622,5713,6752,0,0,0,0,1622,5713,fr.po,,fr,,french,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,1614,5609,4446,1,5,7,99,1622,5713,fi.po,,fi,,finnish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,1499,5228,5813,0,0,0,0,1499,5228,fa.po,,fa,,persian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,1622,5713,5321,0,0,0,0,1622,5713,eu.po,,eu,,basque,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,1444,4906,4090,0,0,0,0,1444,4906,et.po,,et,,estonian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,1621,5712,6693,0,0,0,0,1621,5712,es.po,,es,,spanish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,1614,5682,5266,2,8,1,15,1617,5705,eo.po,,eo,,esperanto,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,1622,5713,5710,0,0,0,0,1622,5713,en_gb.po,,en,gb,english,,united kingdom

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,754,3477,3483,0,0,0,0,754,3477,en_ca.po,,en,ca,english,,canada

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,696,2803,2803,115,717,0,0,811,3520,en@shaw.po,shaw,en,,english,shavian,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en.po,6,17,17,0,0,697,2243,703,2260,en.po,,en,,english,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,1622,5713,6160,0,0,0,0,1622,5713,el.po,,el,,greek,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,757,3067,1479,0,0,0,0,757,3067,dz.po,,dz,,dzongkha,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,1622,5713,5446,0,0,0,0,1622,5713,de.po,,de,,german,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,1622,5713,5223,0,0,0,0,1622,5713,da.po,,da,,danish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,763,3491,3703,0,0,0,0,763,3491,cy.po,,cy,,welsh,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,1622,5713,5633,0,0,0,0,1622,5713,cs.po,,cs,,czech,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,1198,3387,3138,0,0,265,1360,1463,4747,crh.po,,crh,,crimean turkish,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,1499,5228,6292,0,0,0,0,1499,5228,ca@valencia.po,valencia,ca,,catalan,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,1622,5713,6809,0,0,0,0,1622,5713,ca.po,,ca,,catalan,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,1458,4996,4829,0,0,0,0,1458,4996,bs.po,,bs,,bosnian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,218,474,577,36,89,1200,4383,1454,4946,br.po,,br,,breton,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,1454,4946,5400,0,0,0,0,1454,4946,bn_in.po,,bn,in,bangla,,india

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,742,2352,2435,0,0,0,0,742,2352,bn.po,,bn,,bangla,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,1499,5228,5824,0,0,0,0,1499,5228,bg.po,,bg,,bulgarian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,770,3188,2909,0,0,0,0,770,3188,be@latin.po,latin,be,,belarusian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,1566,5516,5182,0,0,0,0,1566,5516,be.po,,be,,belarusian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,564,2619,2394,100,352,73,414,737,3385,az.po,,az,,azerbaijani,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,943,2973,3288,0,0,0,0,943,2973,ast.po,,ast,,asturian,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,1454,4946,5359,0,0,0,0,1454,4946,as.po,,as,,assamese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,1530,5172,4945,4,19,88,520,1622,5711,ar.po,,ar,,arabic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,1464,5034,5936,0,0,0,0,1464,5034,an.po,,an,,aragonese,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,111,160,179,168,311,458,2914,737,3385,am.po,,am,,amharic,,

- gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,1470,5162,5138,30,83,26,75,1526,5320,af.po,,af,,afrikaans,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/zh_cn/zh_cn.po,69,2543,196,4,344,0,0,73,2887,zh_cn.po,,zh,cn,chinese,,china

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/vi/vi.po,74,2887,3962,0,0,0,0,74,2887,vi.po,,vi,,vietnamese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/uk/uk.po,73,2887,2544,0,0,0,0,73,2887,uk.po,,uk,,ukrainian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/sv/sv.po,72,2889,2853,0,0,0,0,72,2889,sv.po,,sv,,swedish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/sl/sl.po,72,2889,2543,0,0,0,0,72,2889,sl.po,,sl,,slovenian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/pt_br/pt_br.po,72,2889,2981,0,0,0,0,72,2889,pt_br.po,,pt,br,portuguese,,brazil

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/oc/oc.po,9,17,24,0,0,64,2870,73,2887,oc.po,,oc,,occitan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ko/ko.po,73,2887,2175,0,0,0,0,73,2887,ko.po,,ko,,korean,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/hu/hu.po,72,2889,2628,0,0,0,0,72,2889,hu.po,,hu,,hungarian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/gl/gl.po,61,2145,2156,0,0,11,744,72,2889,gl.po,,gl,,galician,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/fr/fr.po,72,2889,3109,0,0,0,0,72,2889,fr.po,,fr,,french,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/eu/eu.po,73,2887,2311,0,0,0,0,73,2887,eu.po,,eu,,basque,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/es/es.po,72,2889,3006,0,0,0,0,72,2889,es.po,,es,,spanish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/el/el.po,72,2889,3045,0,0,0,0,72,2889,el.po,,el,,greek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/de/de.po,72,2889,2801,0,0,0,0,72,2889,de.po,,de,,german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/cs/cs.po,11,126,121,0,0,61,2763,72,2889,cs.po,,cs,,czech,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ca/ca.po,72,2889,2977,0,0,0,0,72,2889,ca.po,,ca,,catalan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ar/ar.po,6,13,13,0,0,67,2874,73,2887,ar.po,,ar,,arabic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/zh_cn/zh_cn.po,70,2552,136,0,0,0,0,70,2552,zh_cn.po,,zh,cn,chinese,,china

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/vi/vi.po,71,2552,3505,0,0,0,0,71,2552,vi.po,,vi,,vietnamese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/uk/uk.po,69,2511,2508,1,41,0,0,70,2552,uk.po,,uk,,ukrainian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sv/sv.po,69,2555,2433,0,0,0,0,69,2555,sv.po,,sv,,swedish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr@latin/sr@latin.po,70,2552,2301,0,0,0,0,70,2552,sr@latin.po,latin,sr,,serbian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sl/sl.po,69,2555,2328,0,0,0,0,69,2555,sl.po,,sl,,slovenian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/pt_br/pt_br.po,69,2555,2545,0,0,0,0,69,2555,pt_br.po,,pt,br,portuguese,,brazil

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/pa/pa.po,25,77,85,0,0,41,2423,66,2500,pa.po,,pa,,punjabi,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/oc/oc.po,18,33,38,0,0,52,2519,70,2552,oc.po,,oc,,occitan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/nds/nds.po,39,465,489,31,2087,0,0,70,2552,nds.po,,nds,,low german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ko/ko.po,70,2552,2059,0,0,0,0,70,2552,ko.po,,ko,,korean,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/hu/hu.po,69,2555,2094,0,0,0,0,69,2555,hu.po,,hu,,hungarian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/gl/gl.po,69,2555,2851,0,0,0,0,69,2555,gl.po,,gl,,galician,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/fr/fr.po,69,2555,2948,0,0,0,0,69,2555,fr.po,,fr,,french,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/fi/fi.po,66,2390,1826,3,165,0,0,69,2555,fi.po,,fi,,finnish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/eu/eu.po,70,2552,1992,0,0,0,0,70,2552,eu.po,,eu,,basque,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/es/es.po,69,2555,2722,0,0,0,0,69,2555,es.po,,es,,spanish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/el/el.po,69,2555,2635,0,0,0,0,69,2555,el.po,,el,,greek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/de/de.po,69,2555,2676,0,0,0,0,69,2555,de.po,,de,,german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/cs/cs.po,69,2555,2207,0,0,0,0,69,2555,cs.po,,cs,,czech,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ca/ca.po,69,2555,2706,0,0,0,0,69,2555,ca.po,,ca,,catalan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ar/ar.po,70,2552,1913,0,0,0,0,70,2552,ar.po,,ar,,arabic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr/sr@latin.po,69,2555,2304,0,0,0,0,69,2555,sr@latin.po,latin,sr,,serbian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr/sr.po,69,2555,2304,0,0,0,0,69,2555,sr.po,,sr,,serbian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/zh_cn/zh_cn.po,71,2364,156,3,132,25,1641,99,4137,zh_cn.po,,zh,cn,chinese,,china

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/vi/vi.po,100,4137,5545,0,0,0,0,100,4137,vi.po,,vi,,vietnamese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/uk/uk.po,99,4137,3895,0,0,0,0,99,4137,uk.po,,uk,,ukrainian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/sv/sv.po,98,4140,3650,0,0,0,0,98,4140,sv.po,,sv,,swedish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/sl/sl.po,99,4141,3695,0,0,0,0,99,4141,sl.po,,sl,,slovenian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/pt_br/pt_br.po,98,4140,4117,0,0,0,0,98,4140,pt_br.po,,pt,br,portuguese,,brazil

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/pa/pa.po,34,274,305,0,0,61,3811,95,4085,pa.po,,pa,,punjabi,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/oc/oc.po,22,41,46,0,0,77,4096,99,4137,oc.po,,oc,,occitan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ko/ko.po,99,4137,3163,0,0,0,0,99,4137,ko.po,,ko,,korean,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/hu/hu.po,98,4140,3433,0,0,0,0,98,4140,hu.po,,hu,,hungarian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/fr/fr.po,98,4140,4590,0,0,0,0,98,4140,fr.po,,fr,,french,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/fi/fi.po,60,1912,1495,8,465,31,1760,99,4137,fi.po,,fi,,finnish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/eu/eu.po,99,4137,3084,0,0,0,0,99,4137,eu.po,,eu,,basque,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/es/es.po,98,4140,4433,0,0,0,0,98,4140,es.po,,es,,spanish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/el/el.po,98,4140,4214,0,0,0,0,98,4140,el.po,,el,,greek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/de/de.po,98,4140,4452,0,0,0,0,98,4140,de.po,,de,,german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/cs/cs.po,11,103,104,0,0,87,4037,98,4140,cs.po,,cs,,czech,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ca/ca.po,49,1360,1391,0,0,49,2780,98,4140,ca.po,,ca,,catalan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ar/ar.po,6,13,12,0,0,64,2539,70,2552,ar.po,,ar,,arabic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,72,316,260,1,4,0,0,73,320,zu.po,,zu,,zulu,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,27,152,80,0,0,0,0,27,152,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,23,146,83,0,0,0,0,23,146,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,23,146,83,0,0,0,0,23,146,zh_cn.po,,zh,cn,chinese,,china

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/yo.po,90,328,357,2,8,1,28,93,364,yo.po,,yo,,yoruba,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/yi.po,2,2,2,2,2,69,316,73,320,yi.po,,yi,,yiddish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,24,139,111,7,96,0,0,31,235,xh.po,,xh,,xhosa,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,72,316,449,1,4,0,0,73,320,wa.po,,wa,,walloon,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,23,146,179,0,0,0,0,23,146,vi.po,,vi,,vietnamese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,23,146,157,0,0,0,0,23,146,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,73,314,285,0,0,3,16,76,330,uz.po,,uz,,uzbek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ur.po,9,15,16,3,3,61,305,73,323,ur.po,,ur,,urdu,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,23,146,138,0,0,0,0,23,146,uk.po,,uk,,ukrainian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,36,232,200,0,0,0,0,36,232,ug.po,,ug,,uyghur,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,27,152,137,0,0,0,0,27,152,tr.po,,tr,,turkish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,69,291,256,1,4,3,25,73,320,tk.po,,tk,,turkmen,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,23,146,98,0,0,0,0,23,146,th.po,,th,,thai,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,23,146,145,0,0,0,0,23,146,tg.po,,tg,,tajik,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,23,146,131,0,0,0,0,23,146,te.po,,te,,telugu,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,23,146,138,0,0,0,0,23,146,ta.po,,ta,,tamil,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,27,152,155,0,0,0,0,27,152,sv.po,,sv,,swedish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,23,146,131,0,0,0,0,23,146,sr@latin.po,latin,sr,,serbian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,27,152,143,0,0,0,0,27,152,sr.po,,sr,,serbian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,71,285,350,0,0,0,0,71,285,sq.po,,sq,,albanian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,27,152,148,0,0,0,0,27,152,sl.po,,sl,,slovenian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,23,146,125,0,0,0,0,23,146,sk.po,,sk,,slovak,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,76,330,344,0,0,0,0,76,330,si.po,,si,,sinhala,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,14,15,19,44,276,15,29,73,320,rw.po,,rw,,kinyarwanda,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,27,152,153,0,0,0,0,27,152,ru.po,,ru,,russian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,27,152,154,0,0,0,0,27,152,ro.po,,ro,,romanian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,27,152,173,0,0,0,0,27,152,pt_br.po,,pt,br,portuguese,,brazil

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,23,146,150,0,0,0,0,23,146,pt.po,,pt,,portuguese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,58,144,174,0,0,11,139,69,283,ps.po,,ps,,pashto,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,27,152,154,0,0,0,0,27,152,pl.po,,pl,,polish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,23,146,159,0,0,0,0,23,146,pa.po,,pa,,punjabi,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,23,146,147,0,0,0,0,23,146,or.po,,or,,odia,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,23,146,167,0,0,0,0,23,146,oc.po,,oc,,occitan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,72,316,489,1,4,0,0,73,320,nso.po,,nso,,northern sotho,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,22,196,192,9,39,0,0,31,235,nn.po,,nn,,norwegian nynorsk,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,27,152,153,0,0,0,0,27,152,nl.po,,nl,,dutch,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,23,146,139,0,0,0,0,23,146,ne.po,,ne,,nepali,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,53,351,360,0,0,0,0,53,351,nds.po,,nds,,low german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,23,146,138,0,0,0,0,23,146,nb.po,,nb,,norwegian bokmål,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,61,377,360,0,0,0,0,61,377,ms.po,,ms,,malay,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,23,146,148,0,0,0,0,23,146,mr.po,,mr,,marathi,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,53,349,301,0,0,0,0,53,349,mn.po,,mn,,mongolian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,27,152,132,0,0,0,0,27,152,ml.po,,ml,,malayalam,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,31,235,253,0,0,0,0,31,235,mk.po,,mk,,macedonian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mi.po,14,20,27,1,4,58,296,73,320,mi.po,,mi,,maori,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,70,281,336,1,4,0,0,71,285,mg.po,,mg,,malagasy,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,53,351,388,0,0,0,0,53,351,mai.po,,mai,,maithili,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,27,152,144,0,0,0,0,27,152,lv.po,,lv,,latvian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,27,152,136,0,0,0,0,27,152,lt.po,,lt,,lithuanian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lo.po,23,146,97,0,0,0,0,23,146,lo.po,,lo,,lao,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/li.po,33,96,95,18,32,22,192,73,320,li.po,,li,,limburgish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,35,241,210,0,0,0,0,35,241,ky.po,,ky,,kyrgyz,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,48,297,340,0,0,5,54,53,351,ku.po,,ku,,kurdish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,27,152,142,0,0,0,0,27,152,ko.po,,ko,,korean,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,23,146,138,0,0,0,0,23,146,kn.po,,kn,,kannada,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,31,235,140,0,0,0,0,31,235,km.po,,km,,khmer,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,27,152,136,0,0,0,0,27,152,kk.po,,kk,,kazakh,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kg.po,49,384,392,0,0,0,0,49,384,kg.po,,kg,,kongo,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,69,283,241,0,0,0,0,69,283,ka.po,,ka,,georgian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,27,152,103,0,0,0,0,27,152,ja.po,,ja,,japanese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,27,152,154,0,0,0,0,27,152,it.po,,it,,italian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,27,152,139,0,0,0,0,27,152,is.po,,is,,icelandic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ig.po,29,203,227,3,14,20,132,52,349,ig.po,,ig,,igbo,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,27,152,158,0,0,0,0,27,152,id.po,,id,,indonesian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,52,345,326,1,4,0,0,53,349,hy.po,,hy,,armenian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,27,152,127,0,0,0,0,27,152,hu.po,,hu,,hungarian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,27,152,138,0,0,0,0,27,152,hr.po,,hr,,croatian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,23,146,172,0,0,0,0,23,146,hi.po,,hi,,hindi,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,23,146,141,0,0,0,0,23,146,he.po,,he,,hebrew,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ha.po,29,203,314,3,14,20,132,52,349,ha.po,,ha,,hausa,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,23,146,163,0,0,0,0,23,146,gu.po,,gu,,gujarati,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,27,152,175,0,0,0,0,27,152,gl.po,,gl,,galician,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,23,146,198,0,0,0,0,23,146,gd.po,,gd,,scottish gaelic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,27,136,146,0,0,9,97,36,233,ga.po,,ga,,irish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,40,209,219,0,0,21,229,61,438,fy.po,,fy,,western frisian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,27,152,172,0,0,0,0,27,152,fur.po,,fur,,friulian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,27,152,176,0,0,0,0,27,152,fr.po,,fr,,french,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,27,152,136,0,0,0,0,27,152,fi.po,,fi,,finnish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,23,146,161,0,0,0,0,23,146,fa.po,,fa,,persian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,27,152,142,0,0,0,0,27,152,eu.po,,eu,,basque,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,23,146,128,0,0,0,0,23,146,et.po,,et,,estonian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,27,152,176,0,0,0,0,27,152,es.po,,es,,spanish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,27,152,159,0,0,0,0,27,152,eo.po,,eo,,esperanto,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,27,152,152,0,0,0,0,27,152,en_gb.po,,en,gb,english,,united kingdom

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,76,330,330,0,0,0,0,76,330,en_ca.po,,en,ca,english,,canada

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,49,334,334,12,104,0,0,61,438,en@shaw.po,shaw,en,,english,shavian,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en.po,12,34,34,0,0,0,0,12,34,en.po,,en,,english,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,27,152,166,0,0,0,0,27,152,el.po,,el,,greek,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,69,283,161,0,0,0,0,69,283,dz.po,,dz,,dzongkha,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,27,152,145,0,0,0,0,27,152,de.po,,de,,german,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,27,152,145,0,0,0,0,27,152,da.po,,da,,danish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,73,323,336,0,0,0,0,73,323,cy.po,,cy,,welsh,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/csb.po,31,235,231,0,0,0,0,31,235,csb.po,,csb,,kashubian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,27,152,135,0,0,0,0,27,152,cs.po,,cs,,czech,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,36,233,216,0,0,0,0,36,233,crh.po,,crh,,crimean turkish,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,23,146,175,0,0,0,0,23,146,ca@valencia.po,valencia,ca,,catalan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,27,152,184,0,0,0,0,27,152,ca.po,,ca,,catalan,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,23,146,134,0,0,0,0,23,146,bs.po,,bs,,bosnian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,51,335,372,1,4,1,10,53,349,br.po,,br,,breton,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,23,146,153,0,0,0,0,23,146,bn_in.po,,bn,in,bangla,,india

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,31,235,225,0,0,0,0,31,235,bn.po,,bn,,bangla,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,23,146,149,0,0,0,0,23,146,bg.po,,bg,,bulgarian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,52,349,326,0,0,0,0,52,349,be@latin.po,latin,be,,belarusian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,27,152,156,0,0,0,0,27,152,be.po,,be,,belarusian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,72,316,299,1,4,0,0,73,320,az.po,,az,,azerbaijani,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,23,207,230,0,0,0,0,23,207,ast.po,,ast,,asturian,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,23,146,151,0,0,0,0,23,146,as.po,,as,,assamese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,27,152,143,0,0,0,0,27,152,ar.po,,ar,,arabic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,23,146,161,0,0,0,0,23,146,an.po,,an,,aragonese,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,32,92,97,19,36,22,192,73,320,am.po,,am,,amharic,,

- gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,31,235,249,0,0,0,0,31,235,af.po,,af,,afrikaans,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,735,3945,1147,0,0,0,0,735,3945,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,632,3423,980,0,0,0,0,632,3423,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,714,3822,1132,0,0,0,0,714,3822,zh_cn.po,,zh,cn,chinese,,china

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,693,3718,4930,0,0,0,0,693,3718,vi.po,,vi,,vietnamese,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,417,2229,2007,0,0,0,0,417,2229,uk.po,,uk,,ukrainian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,734,3775,3382,0,0,3,88,737,3863,ug.po,,ug,,uyghur,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,737,3949,3398,0,0,0,0,737,3949,tr.po,,tr,,turkish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,654,3543,1165,0,0,0,0,654,3543,th.po,,th,,thai,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,610,3061,3051,56,394,46,350,712,3805,tg.po,,tg,,tajik,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,632,3423,2829,0,0,0,0,632,3423,te.po,,te,,telugu,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,632,3423,2869,0,0,0,0,632,3423,ta.po,,ta,,tamil,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,737,3949,3788,0,0,0,0,737,3949,sv.po,,sv,,swedish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,713,3820,3823,0,0,0,0,713,3820,sr@latin.po,latin,sr,,serbian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,737,3949,3936,0,0,0,0,737,3949,sr.po,,sr,,serbian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,737,3949,3882,0,0,0,0,737,3949,sl.po,,sl,,slovenian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,728,3883,3813,0,0,9,66,737,3949,sk.po,,sk,,slovak,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,737,3949,3517,0,0,0,0,737,3949,ru.po,,ru,,russian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,737,3949,4555,0,0,0,0,737,3949,ro.po,,ro,,romanian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,737,3949,4642,0,0,0,0,737,3949,pt_br.po,,pt,br,portuguese,,brazil

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,653,3535,4016,0,0,0,0,653,3535,pt.po,,pt,,portuguese,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,737,3949,3807,0,0,0,0,737,3949,pl.po,,pl,,polish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,632,3423,3769,0,0,0,0,632,3423,pa.po,,pa,,punjabi,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,632,3423,3434,0,0,0,0,632,3423,or.po,,or,,odia,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,654,3543,4230,0,0,0,0,654,3543,oc.po,,oc,,occitan,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,737,3949,4014,0,0,0,0,737,3949,nl.po,,nl,,dutch,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,196,389,411,229,745,207,2289,632,3423,ne.po,,ne,,nepali,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,679,3489,3459,7,90,7,139,693,3718,nb.po,,nb,,norwegian bokmål,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,515,1288,1281,0,0,562,3256,1077,4544,ms.po,,ms,,malay,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,632,3423,3032,0,0,0,0,632,3423,mr.po,,mr,,marathi,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,737,3863,2984,0,0,0,0,737,3863,ml.po,,ml,,malayalam,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,1077,4544,4989,0,0,0,0,1077,4544,mk.po,,mk,,macedonian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,111,148,208,0,0,700,3894,811,4042,mai.po,,mai,,maithili,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,737,3949,3567,0,0,0,0,737,3949,lv.po,,lv,,latvian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,737,3949,3422,0,0,0,0,737,3949,lt.po,,lt,,lithuanian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,224,475,516,107,331,746,3738,1077,4544,ku.po,,ku,,kurdish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,737,3949,3249,0,0,0,0,737,3949,ko.po,,ko,,korean,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,632,3423,2888,0,0,0,0,632,3423,kn.po,,kn,,kannada,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,632,3423,1312,0,0,0,0,632,3423,km.po,,km,,khmer,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,478,1684,1634,0,0,259,2265,737,3949,kk.po,,kk,,kazakh,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,727,3859,1289,0,0,10,90,737,3949,ja.po,,ja,,japanese,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,737,3949,4170,0,0,0,0,737,3949,it.po,,it,,italian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,424,1227,1270,0,0,311,2718,735,3945,is.po,,is,,icelandic,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,737,3949,3815,0,0,0,0,737,3949,id.po,,id,,indonesian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,1075,4544,4122,0,0,0,0,1075,4544,hy.po,,hy,,armenian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,737,3949,3494,0,0,0,0,737,3949,hu.po,,hu,,hungarian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,735,3945,3635,0,0,0,0,735,3945,hr.po,,hr,,croatian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,632,3423,4135,0,0,0,0,632,3423,hi.po,,hi,,hindi,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,653,3522,3213,1,21,0,0,654,3543,he.po,,he,,hebrew,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,652,3533,3852,0,0,0,0,652,3533,gu.po,,gu,,gujarati,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,737,3949,4777,0,0,0,0,737,3949,gl.po,,gl,,galician,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,713,3820,5126,0,0,0,0,713,3820,gd.po,,gd,,scottish gaelic,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,205,416,464,29,89,516,3404,750,3909,ga.po,,ga,,irish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,737,3949,4615,0,0,0,0,737,3949,fur.po,,fur,,friulian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,737,3949,4793,0,0,0,0,737,3949,fr.po,,fr,,french,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,721,3829,2889,7,67,9,53,737,3949,fi.po,,fi,,finnish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,338,1227,1395,12,44,84,1038,434,2309,fa.po,,fa,,persian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,737,3949,3305,0,0,0,0,737,3949,eu.po,,eu,,basque,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,545,3026,2339,0,0,0,0,545,3026,et.po,,et,,estonian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,737,3949,4674,0,0,0,0,737,3949,es.po,,es,,spanish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,638,3083,2957,0,0,95,839,733,3922,eo.po,,eo,,esperanto,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,693,3718,3726,0,0,0,0,693,3718,en_gb.po,,en,gb,english,,united kingdom

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,455,1944,1944,620,2600,0,0,1075,4544,en@shaw.po,shaw,en,,english,shavian,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,712,3805,4122,0,0,0,0,712,3805,el.po,,el,,greek,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,737,3949,3945,0,0,0,0,737,3949,de.po,,de,,german,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,735,3945,3719,0,0,0,0,735,3945,da.po,,da,,danish,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,737,3949,3880,0,0,0,0,737,3949,cs.po,,cs,,czech,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,693,3718,4784,0,0,0,0,693,3718,ca@valencia.po,valencia,ca,,catalan,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,737,3949,5051,0,0,0,0,737,3949,ca.po,,ca,,catalan,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,636,3435,3325,0,0,0,0,636,3435,bs.po,,bs,,bosnian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,632,3423,3588,0,0,0,0,632,3423,bn_in.po,,bn,in,bangla,,india

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,1075,4544,4689,0,0,0,0,1075,4544,bn.po,,bn,,bangla,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,545,3026,3514,0,0,0,0,545,3026,bg.po,,bg,,bulgarian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,693,3718,3424,0,0,0,0,693,3718,be.po,,be,,belarusian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,1075,4544,5095,0,0,0,0,1075,4544,ast.po,,ast,,asturian,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,632,3423,3389,0,0,0,0,632,3423,as.po,,as,,assamese,,

- gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,265,995,1082,159,753,287,2054,711,3802,ar.po,,ar,,arabic,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,45,142,113,0,0,156,385,201,527,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,27,110,89,0,0,0,0,27,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,130,52,0,0,0,0,30,130,zh_cn.po,,zh,cn,chinese,,china

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,18,32,33,0,0,0,0,18,32,xh.po,,xh,,xhosa,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,2,2,2,5,6,11,24,18,32,wa.po,,wa,,walloon,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,29,113,180,0,0,0,0,29,113,vi.po,,vi,,vietnamese,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,28,116,96,0,0,0,0,28,116,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,130,108,0,0,0,0,30,130,uk.po,,uk,,ukrainian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,24,46,63,0,0,0,0,24,46,ug.po,,ug,,uyghur,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,201,529,572,0,0,0,0,201,529,tr.po,,tr,,turkish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,30,130,57,0,0,0,0,30,130,th.po,,th,,thai,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,30,130,140,0,0,0,0,30,130,tg.po,,tg,,tajik,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,26,109,92,0,0,0,0,26,109,te.po,,te,,telugu,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,26,109,95,0,0,0,0,26,109,ta.po,,ta,,tamil,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,201,529,487,0,0,0,0,201,529,sv.po,,sv,,swedish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,182,470,518,0,0,0,0,182,470,sr@latin.po,latin,sr,,serbian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,201,529,576,0,0,0,0,201,529,sr.po,,sr,,serbian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,7,9,11,23,18,32,sq.po,,sq,,albanian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,182,470,521,0,0,0,0,182,470,sl.po,,sl,,slovenian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,83,234,236,0,0,99,236,182,470,sk.po,,sk,,slovak,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,7,9,11,23,18,32,si.po,,si,,sinhala,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,5,6,13,26,18,32,rw.po,,rw,,kinyarwanda,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,58,172,188,0,0,124,298,182,470,ru.po,,ru,,russian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,201,529,617,0,0,0,0,201,529,ro.po,,ro,,romanian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,201,529,727,0,0,0,0,201,529,pt_br.po,,pt,br,portuguese,,brazil

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,30,130,161,0,0,0,0,30,130,pt.po,,pt,,portuguese,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,0,0,0,7,9,11,23,18,32,ps.po,,ps,,pashto,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,201,529,614,0,0,0,0,201,529,pl.po,,pl,,polish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,27,110,137,0,0,0,0,27,110,pa.po,,pa,,punjabi,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,26,109,105,0,0,0,0,26,109,or.po,,or,,odia,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,130,332,389,0,0,0,0,130,332,oc.po,,oc,,occitan,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,1,1,1,6,8,11,23,18,32,nn.po,,nn,,norwegian nynorsk,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,201,529,452,0,0,0,0,201,529,nl.po,,nl,,dutch,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,29,113,110,0,0,0,0,29,113,ne.po,,ne,,nepali,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,7,9,11,23,18,32,nds.po,,nds,,low german,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,41,130,131,1,2,142,340,184,472,nb.po,,nb,,norwegian bokmål,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,2,2,2,4,5,12,25,18,32,ms.po,,ms,,malay,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,26,109,99,0,0,0,0,26,109,mr.po,,mr,,marathi,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,2,2,2,4,5,12,25,18,32,mn.po,,mn,,mongolian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,129,347,369,0,0,72,180,201,527,ml.po,,ml,,malayalam,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,7,9,11,23,18,32,mk.po,,mk,,macedonian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,7,9,11,23,18,32,mg.po,,mg,,malagasy,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,7,9,11,23,18,32,mai.po,,mai,,maithili,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,201,529,544,0,0,0,0,201,529,lv.po,,lv,,latvian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,201,529,531,0,0,0,0,201,529,lt.po,,lt,,lithuanian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,22,39,46,0,0,0,0,22,39,ky.po,,ky,,kyrgyz,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,6,7,12,25,18,32,ku.po,,ku,,kurdish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,201,529,521,0,0,0,0,201,529,ko.po,,ko,,korean,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,26,109,94,0,0,0,0,26,109,kn.po,,kn,,kannada,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,18,32,35,0,0,0,0,18,32,km.po,,km,,khmer,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,77,206,198,0,0,124,323,201,529,kk.po,,kk,,kazakh,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,7,9,11,23,18,32,ka.po,,ka,,georgian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,30,130,120,0,0,0,0,30,130,ja.po,,ja,,japanese,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,201,529,600,0,0,0,0,201,529,it.po,,it,,italian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,106,294,280,0,0,95,233,201,527,is.po,,is,,icelandic,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,201,529,577,0,0,0,0,201,529,id.po,,id,,indonesian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,201,529,583,0,0,0,0,201,529,hu.po,,hu,,hungarian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,201,527,562,0,0,0,0,201,527,hr.po,,hr,,croatian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,26,109,121,0,0,0,0,26,109,hi.po,,hi,,hindi,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,30,130,132,0,0,0,0,30,130,he.po,,he,,hebrew,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,26,109,120,0,0,0,0,26,109,gu.po,,gu,,gujarati,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,201,529,668,0,0,0,0,201,529,gl.po,,gl,,galician,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,29,113,153,0,0,0,0,29,113,gd.po,,gd,,scottish gaelic,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,24,46,57,0,0,1,1,25,47,ga.po,,ga,,irish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,104,286,321,0,0,97,243,201,529,fur.po,,fur,,friulian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,201,529,626,0,0,0,0,201,529,fr.po,,fr,,french,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,44,140,115,0,0,157,389,201,529,fi.po,,fi,,finnish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,29,113,129,0,0,0,0,29,113,fa.po,,fa,,persian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,29,113,100,0,0,0,0,29,113,eu.po,,eu,,basque,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,25,47,74,0,0,0,0,25,47,et.po,,et,,estonian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,201,529,657,0,0,0,0,201,529,es.po,,es,,spanish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,127,341,339,0,0,74,186,201,527,eo.po,,eo,,esperanto,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,182,470,473,0,0,0,0,182,470,en_gb.po,,en,gb,english,,united kingdom

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,0,0,0,7,9,11,23,18,32,en_ca.po,,en,ca,english,,canada

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,29,113,165,0,0,0,0,29,113,el.po,,el,,greek,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,7,9,11,23,18,32,dz.po,,dz,,dzongkha,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,201,529,513,0,0,0,0,201,529,de.po,,de,,german,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,201,529,502,0,0,0,0,201,529,da.po,,da,,danish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,1,1,1,7,9,10,22,18,32,cy.po,,cy,,welsh,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,201,529,560,0,0,0,0,201,529,cs.po,,cs,,czech,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,0,0,0,7,9,11,23,18,32,crh.po,,crh,,crimean turkish,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,29,113,159,0,0,0,0,29,113,ca@valencia.po,valencia,ca,,catalan,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,201,529,653,0,0,0,0,201,529,ca.po,,ca,,catalan,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,30,130,127,0,0,0,0,30,130,bs.po,,bs,,bosnian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,24,46,58,0,0,0,0,24,46,br.po,,br,,breton,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,26,109,116,0,0,0,0,26,109,bn_in.po,,bn,in,bangla,,india

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,7,9,11,23,18,32,bn.po,,bn,,bangla,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,29,113,133,0,0,0,0,29,113,bg.po,,bg,,bulgarian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,0,0,0,7,9,11,23,18,32,be@latin.po,latin,be,,belarusian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,29,113,109,0,0,0,0,29,113,be.po,,be,,belarusian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,2,2,2,4,5,12,25,18,32,az.po,,az,,azerbaijani,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,18,32,41,0,0,0,0,18,32,ast.po,,ast,,asturian,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,27,110,118,0,0,0,0,27,110,as.po,,as,,assamese,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,201,527,554,0,0,0,0,201,527,ar.po,,ar,,arabic,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,30,130,149,0,0,0,0,30,130,an.po,,an,,aragonese,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,2,2,2,5,6,11,24,18,32,am.po,,am,,amharic,,

- gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,25,47,48,0,0,0,0,25,47,af.po,,af,,afrikaans,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/nl/nl.po,345,2507,2522,0,0,0,0,345,2507,nl.po,,nl,,dutch,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/cs/cs.po,345,2507,2172,0,0,0,0,345,2507,cs.po,,cs,,czech,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gl/gl.po,345,2507,2585,0,0,0,0,345,2507,gl.po,,gl,,galician,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lt/lt.po,345,2507,1885,0,0,0,0,345,2507,lt.po,,lt,,lithuanian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pl/pl.po,345,2507,2035,0,0,0,0,345,2507,pl.po,,pl,,polish,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hr/hr.po,345,2507,2100,0,0,0,0,345,2507,hr.po,,hr,,croatian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fr/fr.po,339,2481,2571,0,0,0,0,339,2481,fr.po,,fr,,french,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ko/ko.po,345,2507,1687,0,0,0,0,345,2507,ko.po,,ko,,korean,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/el/el.po,337,2501,2544,0,0,0,0,337,2501,el.po,,el,,greek,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/de/de.po,345,2507,2486,0,0,0,0,345,2507,de.po,,de,,german,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/id/id.po,338,2508,2197,0,0,0,0,338,2508,id.po,,id,,indonesian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/kn/kn.po,339,2639,1983,0,0,0,0,339,2639,kn.po,,kn,,kannada,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fi/fi.po,345,2507,1623,0,0,0,0,345,2507,fi.po,,fi,,finnish,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lv/lv.po,345,2507,1970,0,0,0,0,345,2507,lv.po,,lv,,latvian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ru/ru.po,335,2569,2126,0,0,0,0,335,2569,ru.po,,ru,,russian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_tw/zh_tw.po,339,2639,605,0,0,0,0,339,2639,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt/pt.po,337,2506,2522,0,0,0,0,337,2506,pt.po,,pt,,portuguese,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sv/sv.po,345,2507,2296,0,0,0,0,345,2507,sv.po,,sv,,swedish,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/da/da.po,345,2507,2309,0,0,0,0,345,2507,da.po,,da,,danish,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/eo/eo.po,338,2397,2161,0,0,7,110,345,2507,eo.po,,eo,,esperanto,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hu/hu.po,345,2507,2112,0,0,0,0,345,2507,hu.po,,hu,,hungarian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ca/ca.po,322,2248,2660,16,260,0,0,338,2508,ca.po,,ca,,catalan,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr@latin/sr@latin.po,338,2508,2306,0,0,0,0,338,2508,sr@latin.po,latin,sr,,serbian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/mr/mr.po,339,2639,2044,0,0,0,0,339,2639,mr.po,,mr,,marathi,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/as/as.po,339,2639,2245,0,0,0,0,339,2639,as.po,,as,,assamese,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ta/ta.po,339,2639,1992,0,0,0,0,339,2639,ta.po,,ta,,tamil,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/es/es.po,345,2507,2748,0,0,0,0,345,2507,es.po,,es,,spanish,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr/sr.po,345,2507,2311,0,0,0,0,345,2507,sr.po,,sr,,serbian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gu/gu.po,322,2301,2180,6,125,11,213,339,2639,gu.po,,gu,,gujarati,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ro/ro.po,345,2507,2494,0,0,0,0,345,2507,ro.po,,ro,,romanian,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ja/ja.po,337,2501,487,0,0,0,0,337,2501,ja.po,,ja,,japanese,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/he/he.po,337,2506,1879,0,0,0,0,337,2506,he.po,,he,,hebrew,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_hk/zh_hk.po,339,2639,605,0,0,0,0,339,2639,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hi/hi.po,339,2639,2791,0,0,0,0,339,2639,hi.po,,hi,,hindi,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt_br/pt_br.po,345,2507,2665,0,0,0,0,345,2507,pt_br.po,,pt,br,portuguese,,brazil

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/te/te.po,339,2639,1846,0,0,0,0,339,2639,te.po,,te,,telugu,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pa/pa.po,339,2639,2801,0,0,0,0,339,2639,pa.po,,pa,,punjabi,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sk/sk.po,336,2499,2115,1,2,0,0,337,2501,sk.po,,sk,,slovak,,

- gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/it/it.po,345,2507,2429,0,0,0,0,345,2507,it.po,,it,,italian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/is.po,31,34,35,1,2,14,16,46,52,is.po,,is,,icelandic,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gd.po,2,4,4,0,0,0,0,2,4,gd.po,,gd,,scottish gaelic,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/eu.po,38,43,43,0,0,0,0,38,43,eu.po,,eu,,basque,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fur.po,38,43,44,0,0,0,0,38,43,fur.po,,fur,,friulian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sk.po,38,43,45,0,0,0,0,38,43,sk.po,,sk,,slovak,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/cy.po,47,53,70,0,0,0,0,47,53,cy.po,,cy,,welsh,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/am.po,21,21,21,3,7,22,24,46,52,am.po,,am,,amharic,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/km.po,2,4,4,0,0,0,0,2,4,km.po,,km,,khmer,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sv.po,40,45,44,0,0,0,0,40,45,sv.po,,sv,,swedish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fr.po,38,43,48,0,0,0,0,38,43,fr.po,,fr,,french,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sl.po,38,43,45,0,0,0,0,38,43,sl.po,,sl,,slovenian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/cs.po,38,43,46,0,0,0,0,38,43,cs.po,,cs,,czech,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_tw.po,16,20,18,0,0,0,0,16,20,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fa.po,47,53,71,0,0,0,0,47,53,fa.po,,fa,,persian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mg.po,44,49,54,1,1,0,0,45,50,mg.po,,mg,,malagasy,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/si.po,44,49,55,0,0,0,0,44,49,si.po,,si,,sinhala,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/af.po,38,43,39,0,0,0,0,38,43,af.po,,af,,afrikaans,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ca.po,40,45,47,0,0,0,0,40,45,ca.po,,ca,,catalan,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hu.po,16,20,19,0,0,0,0,16,20,hu.po,,hu,,hungarian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ru.po,38,43,48,0,0,0,0,38,43,ru.po,,ru,,russian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/de.po,46,51,55,0,0,0,0,46,51,de.po,,de,,german,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sr@latin.po,16,20,21,0,0,0,0,16,20,sr@latin.po,latin,sr,,serbian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/lv.po,2,4,4,0,0,0,0,2,4,lv.po,,lv,,latvian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nds.po,16,20,20,0,0,0,0,16,20,nds.po,,nds,,low german,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bn_in.po,46,51,55,0,0,0,0,46,51,bn_in.po,,bn,in,bangla,,india

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/br.po,16,20,22,0,0,0,0,16,20,br.po,,br,,breton,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mk.po,38,43,47,0,0,0,0,38,43,mk.po,,mk,,macedonian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/xh.po,47,53,63,0,0,0,0,47,53,xh.po,,xh,,xhosa,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uk.po,38,43,47,0,0,0,0,38,43,uk.po,,uk,,ukrainian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/or.po,2,4,5,0,0,0,0,2,4,or.po,,or,,odia,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/wa.po,27,28,30,2,5,17,19,46,52,wa.po,,wa,,walloon,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tk.po,33,36,37,1,2,12,14,46,52,tk.po,,tk,,turkmen,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pt.po,38,43,47,0,0,0,0,38,43,pt.po,,pt,,portuguese,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/as.po,2,4,4,0,0,0,0,2,4,as.po,,as,,assamese,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pt_br.po,16,20,23,0,0,0,0,16,20,pt_br.po,,pt,br,portuguese,,brazil

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/oc.po,14,16,18,0,0,2,4,16,20,oc.po,,oc,,occitan,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en_ca.po,38,43,43,0,0,0,0,38,43,en_ca.po,,en,ca,english,,canada

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/el.po,2,4,5,0,0,0,0,2,4,el.po,,el,,greek,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fi.po,46,51,56,0,0,0,0,46,51,fi.po,,fi,,finnish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tr.po,16,20,21,0,0,0,0,16,20,tr.po,,tr,,turkish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/vi.po,47,51,129,0,0,0,0,47,51,vi.po,,vi,,vietnamese,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ro.po,16,20,22,0,0,0,0,16,20,ro.po,,ro,,romanian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ne.po,38,43,42,0,0,0,0,38,43,ne.po,,ne,,nepali,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nb.po,2,4,4,0,0,0,0,2,4,nb.po,,nb,,norwegian bokmål,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uz.po,16,20,22,0,0,0,0,16,20,uz.po,,uz,,uzbek,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/kn.po,2,4,4,0,0,0,0,2,4,kn.po,,kn,,kannada,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/eo.po,2,4,3,0,0,0,0,2,4,eo.po,,eo,,esperanto,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bn.po,2,4,4,0,0,0,0,2,4,bn.po,,bn,,bangla,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ps.po,16,20,21,0,0,0,0,16,20,ps.po,,ps,,pashto,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/an.po,2,4,5,0,0,0,0,2,4,an.po,,an,,aragonese,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ka.po,47,53,56,0,0,0,0,47,53,ka.po,,ka,,georgian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ta.po,46,51,52,0,0,0,0,46,51,ta.po,,ta,,tamil,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ms.po,39,45,45,0,0,7,7,46,52,ms.po,,ms,,malay,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hr.po,16,20,22,0,0,0,0,16,20,hr.po,,hr,,croatian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mai.po,16,20,20,0,0,0,0,16,20,mai.po,,mai,,maithili,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/he.po,38,43,48,0,0,0,0,38,43,he.po,,he,,hebrew,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/crh.po,16,20,18,0,0,0,0,16,20,crh.po,,crh,,crimean turkish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ca@valencia.po,2,4,6,0,0,0,0,2,4,ca@valencia.po,valencia,ca,,catalan,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ku.po,2,4,5,0,0,0,0,2,4,ku.po,,ku,,kurdish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/csb.po,2,4,4,0,0,0,0,2,4,csb.po,,csb,,kashubian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mn.po,33,36,36,1,2,12,14,46,52,mn.po,,mn,,mongolian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nn.po,2,4,3,0,0,0,0,2,4,nn.po,,nn,,norwegian nynorsk,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en@shaw.po,2,4,4,0,0,0,0,2,4,en@shaw.po,shaw,en,,english,shavian,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ast.po,16,20,21,0,0,0,0,16,20,ast.po,,ast,,asturian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/et.po,46,51,48,0,0,0,0,46,51,et.po,,et,,estonian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bs.po,46,52,51,0,0,0,0,46,52,bs.po,,bs,,bosnian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ga.po,38,43,49,0,0,0,0,38,43,ga.po,,ga,,irish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gu.po,46,51,52,0,0,0,0,46,51,gu.po,,gu,,gujarati,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en_gb.po,38,43,43,0,0,0,0,38,43,en_gb.po,,en,gb,english,,united kingdom

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_cn.po,38,43,39,0,0,0,0,38,43,zh_cn.po,,zh,cn,chinese,,china

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/th.po,40,45,41,0,0,0,0,40,45,th.po,,th,,thai,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/it.po,38,43,44,0,0,0,0,38,43,it.po,,it,,italian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tg.po,2,4,4,0,0,0,0,2,4,tg.po,,tg,,tajik,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ko.po,38,43,45,0,0,0,0,38,43,ko.po,,ko,,korean,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pl.po,2,4,4,0,0,0,0,2,4,pl.po,,pl,,polish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/li.po,22,22,22,3,7,21,23,46,52,li.po,,li,,limburgish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/id.po,47,53,55,0,0,0,0,47,53,id.po,,id,,indonesian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ar.po,16,20,21,0,0,0,0,16,20,ar.po,,ar,,arabic,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ug.po,2,4,5,0,0,0,0,2,4,ug.po,,ug,,uyghur,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,16,20,22,0,0,0,0,16,20,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ml.po,38,43,42,0,0,0,0,38,43,ml.po,,ml,,malayalam,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/rw.po,18,18,19,12,16,17,19,47,53,rw.po,,rw,,kinyarwanda,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/lt.po,38,43,41,0,0,0,0,38,43,lt.po,,lt,,lithuanian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/kk.po,16,20,23,0,0,0,0,16,20,kk.po,,kk,,kazakh,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sq.po,38,43,56,0,0,0,0,38,43,sq.po,,sq,,albanian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/te.po,48,54,56,0,0,0,0,48,54,te.po,,te,,telugu,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sr.po,16,20,21,0,0,0,0,16,20,sr.po,,sr,,serbian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/dz.po,46,51,47,0,0,0,0,46,51,dz.po,,dz,,dzongkha,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fy.po,2,4,4,0,0,0,0,2,4,fy.po,,fy,,western frisian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/be.po,2,4,4,0,0,0,0,2,4,be.po,,be,,belarusian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bg.po,2,4,5,0,0,0,0,2,4,bg.po,,bg,,bulgarian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hi.po,16,20,20,0,0,0,0,16,20,hi.po,,hi,,hindi,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mr.po,38,43,43,0,0,0,0,38,43,mr.po,,mr,,marathi,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/be@latin.po,38,43,44,0,0,0,0,38,43,be@latin.po,latin,be,,belarusian,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nl.po,46,51,50,0,0,0,0,46,51,nl.po,,nl,,dutch,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/es.po,16,20,21,0,0,0,0,16,20,es.po,,es,,spanish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/da.po,38,43,43,0,0,0,0,38,43,da.po,,da,,danish,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gl.po,2,4,5,0,0,0,0,2,4,gl.po,,gl,,galician,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ja.po,2,4,4,0,0,0,0,2,4,ja.po,,ja,,japanese,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pa.po,16,20,20,0,0,0,0,16,20,pa.po,,pa,,punjabi,,

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_hk.po,16,20,18,0,0,0,0,16,20,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/az.po,46,52,56,0,0,0,0,46,52,az.po,,az,,azerbaijani,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,123,853,147,0,0,0,0,123,853,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,87,417,109,0,0,0,0,87,417,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,122,849,146,0,0,0,0,122,849,zh_cn.po,,zh,cn,chinese,,china

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,120,766,1067,0,0,0,0,120,766,vi.po,,vi,,vietnamese,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,126,849,683,0,0,0,0,126,849,uk.po,,uk,,ukrainian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,83,318,269,0,0,0,0,83,318,ug.po,,ug,,uyghur,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,123,853,694,0,0,0,0,123,853,tr.po,,tr,,turkish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,68,234,87,0,0,0,0,68,234,th.po,,th,,thai,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,112,737,776,0,0,0,0,112,737,tg.po,,tg,,tajik,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,103,585,475,0,0,0,0,103,585,te.po,,te,,telugu,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,103,585,494,0,0,0,0,103,585,ta.po,,ta,,tamil,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,123,853,815,0,0,0,0,123,853,sv.po,,sv,,swedish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,121,761,712,0,0,0,0,121,761,sr@latin.po,latin,sr,,serbian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,123,853,789,0,0,0,0,123,853,sr.po,,sr,,serbian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,123,853,743,0,0,0,0,123,853,sl.po,,sl,,slovenian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,122,852,780,0,0,0,0,122,852,sk.po,,sk,,slovak,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,123,853,721,0,0,0,0,123,853,ru.po,,ru,,russian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,123,853,890,0,0,0,0,123,853,ro.po,,ro,,romanian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,123,853,879,0,0,0,0,123,853,pt_br.po,,pt,br,portuguese,,brazil

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,126,849,878,0,0,0,0,126,849,pt.po,,pt,,portuguese,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,123,853,736,0,0,0,0,123,853,pl.po,,pl,,polish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,122,848,948,0,0,0,0,122,848,pa.po,,pa,,punjabi,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,103,585,626,0,0,0,0,103,585,or.po,,or,,odia,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,122,848,907,0,0,0,0,122,848,oc.po,,oc,,occitan,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,123,853,837,0,0,0,0,123,853,nl.po,,nl,,dutch,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,71,202,184,14,62,35,502,120,766,ne.po,,ne,,nepali,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,121,844,809,1,4,0,0,122,848,nb.po,,nb,,norwegian bokmål,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,103,585,545,0,0,0,0,103,585,mr.po,,mr,,marathi,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,122,848,636,0,0,0,0,122,848,ml.po,,ml,,malayalam,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,123,853,682,0,0,0,0,123,853,lv.po,,lv,,latvian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,123,853,715,0,0,0,0,123,853,lt.po,,lt,,lithuanian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,123,853,577,0,0,0,0,123,853,ko.po,,ko,,korean,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,103,585,495,0,0,0,0,103,585,kn.po,,kn,,kannada,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,123,853,704,0,0,0,0,123,853,kk.po,,kk,,kazakh,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,119,821,143,0,0,3,27,122,848,ja.po,,ja,,japanese,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,123,853,864,0,0,0,0,123,853,it.po,,it,,italian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,122,848,803,0,0,0,0,122,848,is.po,,is,,icelandic,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,123,853,847,0,0,0,0,123,853,id.po,,id,,indonesian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ia.po,75,316,351,0,0,0,0,75,316,ia.po,,ia,,interlingua,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,123,853,743,0,0,0,0,123,853,hu.po,,hu,,hungarian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,123,853,753,0,0,0,0,123,853,hr.po,,hr,,croatian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,103,585,721,0,0,0,0,103,585,hi.po,,hi,,hindi,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,125,842,692,0,0,0,0,125,842,he.po,,he,,hebrew,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,103,585,615,0,0,0,0,103,585,gu.po,,gu,,gujarati,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,123,853,911,0,0,0,0,123,853,gl.po,,gl,,galician,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,122,849,1008,0,0,0,0,122,849,gd.po,,gd,,scottish gaelic,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,69,230,260,1,5,42,502,112,737,ga.po,,ga,,irish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,123,853,983,0,0,0,0,123,853,fur.po,,fur,,friulian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,123,853,967,0,0,0,0,123,853,fr.po,,fr,,french,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,123,853,606,0,0,0,0,123,853,fi.po,,fi,,finnish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,120,766,844,0,0,0,0,120,766,fa.po,,fa,,persian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,122,848,692,0,0,0,0,122,848,eu.po,,eu,,basque,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,87,372,308,0,0,0,0,87,372,et.po,,et,,estonian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,123,853,952,0,0,0,0,123,853,es.po,,es,,spanish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,122,852,769,0,0,0,0,122,852,eo.po,,eo,,esperanto,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,120,766,766,0,0,0,0,120,766,en_gb.po,,en,gb,english,,united kingdom

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,123,853,909,0,0,0,0,123,853,el.po,,el,,greek,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,123,853,826,0,0,0,0,123,853,de.po,,de,,german,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,123,853,755,0,0,0,0,123,853,da.po,,da,,danish,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,123,853,763,0,0,0,0,123,853,cs.po,,cs,,czech,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,120,766,832,0,0,0,0,120,766,ca@valencia.po,valencia,ca,,catalan,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,123,853,895,0,0,0,0,123,853,ca.po,,ca,,catalan,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,109,638,580,0,0,0,0,109,638,bs.po,,bs,,bosnian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,82,364,392,0,0,0,0,82,364,bn_in.po,,bn,in,bangla,,india

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,120,766,763,0,0,0,0,120,766,bg.po,,bg,,bulgarian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,120,766,687,0,0,0,0,120,766,be.po,,be,,belarusian,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,103,585,606,0,0,0,0,103,585,as.po,,as,,assamese,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,120,765,676,0,0,0,0,120,765,ar.po,,ar,,arabic,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,109,638,711,0,0,0,0,109,638,an.po,,an,,aragonese,,

- gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,120,766,787,0,0,0,0,120,766,af.po,,af,,afrikaans,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fur.po,103,509,549,0,0,0,0,103,509,fur.po,,fur,,friulian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hi.po,112,553,619,0,0,0,0,112,553,hi.po,,hi,,hindi,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/or.po,112,553,622,0,0,0,0,112,553,or.po,,or,,odia,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hr.po,103,509,456,0,0,0,0,103,509,hr.po,,hr,,croatian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ar.po,107,532,502,0,0,5,21,112,553,ar.po,,ar,,arabic,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mg.po,7,25,34,20,165,82,300,109,490,mg.po,,mg,,malagasy,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ko.po,103,509,431,0,0,0,0,103,509,ko.po,,ko,,korean,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sv.po,103,509,492,0,0,0,0,103,509,sv.po,,sv,,swedish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mk.po,111,552,595,0,0,0,0,111,552,mk.po,,mk,,macedonian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/dz.po,25,148,69,19,131,65,211,109,490,dz.po,,dz,,dzongkha,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/tg.po,21,25,31,0,0,91,528,112,553,tg.po,,tg,,tajik,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/uk.po,112,553,526,0,0,0,0,112,553,uk.po,,uk,,ukrainian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/da.po,103,509,492,0,0,0,0,103,509,da.po,,da,,danish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ne.po,43,119,125,48,307,12,83,103,509,ne.po,,ne,,nepali,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/vi.po,106,532,734,0,0,0,0,106,532,vi.po,,vi,,vietnamese,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sr.po,103,509,477,0,0,0,0,103,509,sr.po,,sr,,serbian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_hk.po,112,553,154,0,0,0,0,112,553,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ro.po,103,509,550,0,0,0,0,103,509,ro.po,,ro,,romanian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pa.po,112,553,604,0,0,0,0,112,553,pa.po,,pa,,punjabi,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/es.po,103,509,613,0,0,0,0,103,509,es.po,,es,,spanish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/tr.po,103,509,449,0,0,0,0,103,509,tr.po,,tr,,turkish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,109,490,109,490,is.po,,is,,icelandic,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/it.po,103,509,509,0,0,0,0,103,509,it.po,,it,,italian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/km.po,111,552,250,0,0,0,0,111,552,km.po,,km,,khmer,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/de.po,103,509,509,0,0,0,0,103,509,de.po,,de,,german,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/lv.po,103,509,432,0,0,0,0,103,509,lv.po,,lv,,latvian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en_ca.po,8,28,28,26,182,75,280,109,490,en_ca.po,,en,ca,english,,canada

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mai.po,21,45,48,10,78,78,367,109,490,mai.po,,mai,,maithili,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/az.po,4,17,22,19,162,86,311,109,490,az.po,,az,,azerbaijani,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ca.po,103,509,594,0,0,0,0,103,509,ca.po,,ca,,catalan,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/kn.po,112,553,489,0,0,0,0,112,553,kn.po,,kn,,kannada,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/be@latin.po,62,256,234,23,133,24,101,109,490,be@latin.po,latin,be,,belarusian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bs.po,112,553,522,0,0,0,0,112,553,bs.po,,bs,,bosnian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/af.po,100,474,460,3,4,6,12,109,490,af.po,,af,,afrikaans,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/th.po,112,553,189,0,0,0,0,112,553,th.po,,th,,thai,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nn.po,99,466,464,0,0,10,24,109,490,nn.po,,nn,,norwegian nynorsk,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ka.po,4,16,15,13,88,92,386,109,490,ka.po,,ka,,georgian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ga.po,24,116,142,12,74,73,300,109,490,ga.po,,ga,,irish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/as.po,112,553,566,0,0,0,0,112,553,as.po,,as,,assamese,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/xh.po,4,17,22,19,162,86,311,109,490,xh.po,,xh,,xhosa,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mr.po,112,553,492,0,0,0,0,112,553,mr.po,,mr,,marathi,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pt_br.po,103,509,569,0,0,0,0,103,509,pt_br.po,,pt,br,portuguese,,brazil

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/eu.po,103,509,421,0,0,0,0,103,509,eu.po,,eu,,basque,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ug.po,112,553,504,0,0,0,0,112,553,ug.po,,ug,,uyghur,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gd.po,103,509,703,0,0,0,0,103,509,gd.po,,gd,,scottish gaelic,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/kk.po,103,509,466,0,0,0,0,103,509,kk.po,,kk,,kazakh,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ast.po,234,928,1040,0,0,0,0,234,928,ast.po,,ast,,asturian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nb.po,103,509,522,0,0,0,0,103,509,nb.po,,nb,,norwegian bokmål,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nl.po,103,509,501,0,0,0,0,103,509,nl.po,,nl,,dutch,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fi.po,93,473,375,0,0,10,36,103,509,fi.po,,fi,,finnish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/eo.po,103,509,471,0,0,0,0,103,509,eo.po,,eo,,esperanto,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/lt.po,103,509,406,0,0,0,0,103,509,lt.po,,lt,,lithuanian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gu.po,112,553,599,0,0,0,0,112,553,gu.po,,gu,,gujarati,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sq.po,25,148,180,24,150,60,192,109,490,sq.po,,sq,,albanian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fa.po,112,553,650,0,0,0,0,112,553,fa.po,,fa,,persian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/oc.po,103,509,570,0,0,0,0,103,509,oc.po,,oc,,occitan,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fr.po,103,509,664,0,0,0,0,103,509,fr.po,,fr,,french,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ru.po,103,509,472,0,0,0,0,103,509,ru.po,,ru,,russian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sl.po,103,509,472,0,0,0,0,103,509,sl.po,,sl,,slovenian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bn.po,104,480,485,2,4,3,6,109,490,bn.po,,bn,,bangla,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/cs.po,103,509,463,0,0,0,0,103,509,cs.po,,cs,,czech,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,16,163,93,327,109,490,rw.po,,rw,,kinyarwanda,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bg.po,103,509,519,0,0,0,0,103,509,bg.po,,bg,,bulgarian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ml.po,103,509,403,0,0,0,0,103,509,ml.po,,ml,,malayalam,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/be.po,103,509,464,0,0,0,0,103,509,be.po,,be,,belarusian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/cy.po,6,22,30,21,168,82,300,109,490,cy.po,,cy,,welsh,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pl.po,103,509,483,0,0,0,0,103,509,pl.po,,pl,,polish,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mn.po,7,25,29,20,165,82,300,109,490,mn.po,,mn,,mongolian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_cn.po,103,509,135,0,0,0,0,103,509,zh_cn.po,,zh,cn,chinese,,china

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,103,509,594,0,0,0,0,103,509,ca@valencia.po,valencia,ca,,catalan,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en_gb.po,112,553,555,0,0,0,0,112,553,en_gb.po,,en,gb,english,,united kingdom

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/id.po,103,509,494,0,0,0,0,103,509,id.po,,id,,indonesian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/si.po,7,25,32,19,146,83,319,109,490,si.po,,si,,sinhala,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/et.po,112,553,474,0,0,0,0,112,553,et.po,,et,,estonian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ta.po,112,553,481,0,0,0,0,112,553,ta.po,,ta,,tamil,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sr@latin.po,103,509,477,0,0,0,0,103,509,sr@latin.po,latin,sr,,serbian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ja.po,103,509,143,0,0,0,0,103,509,ja.po,,ja,,japanese,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gl.po,103,509,613,0,0,0,0,103,509,gl.po,,gl,,galician,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/he.po,103,509,480,0,0,0,0,103,509,he.po,,he,,hebrew,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en@shaw.po,53,232,232,43,214,13,44,109,490,en@shaw.po,shaw,en,,english,shavian,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hu.po,103,509,445,0,0,0,0,103,509,hu.po,,hu,,hungarian,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sk.po,103,509,479,0,0,0,0,103,509,sk.po,,sk,,slovak,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bn_in.po,112,553,566,0,0,0,0,112,553,bn_in.po,,bn,in,bangla,,india

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/te.po,112,553,480,0,0,0,0,112,553,te.po,,te,,telugu,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/el.po,103,509,534,0,0,0,0,103,509,el.po,,el,,greek,,

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_tw.po,103,509,136,0,0,0,0,103,509,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ms.po,71,289,254,9,33,29,168,109,490,ms.po,,ms,,malay,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,22,272,190,0,0,0,0,22,272,ko.po,,ko,,korean,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,22,272,215,0,0,0,0,22,272,hu.po,,hu,,hungarian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,22,272,253,0,0,0,0,22,272,sv.po,,sv,,swedish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,22,272,251,0,0,0,0,22,272,gl.po,,gl,,galician,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,22,272,229,0,0,0,0,22,272,de.po,,de,,german,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,22,272,251,0,0,0,0,22,272,ru.po,,ru,,russian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,22,272,288,0,0,0,0,22,272,es.po,,es,,spanish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/da/da.po,22,272,265,0,0,0,0,22,272,da.po,,da,,danish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,22,272,209,0,0,0,0,22,272,pl.po,,pl,,polish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,22,272,319,0,0,0,0,22,272,pt_br.po,,pt,br,portuguese,,brazil

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,22,272,235,0,0,0,0,22,272,cs.po,,cs,,czech,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,22,272,288,0,0,0,0,22,272,fr.po,,fr,,french,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,22,272,313,0,0,0,0,22,272,el.po,,el,,greek,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/nl/nl.po,22,272,266,0,0,0,0,22,272,nl.po,,nl,,dutch,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,123,380,383,0,0,0,0,123,380,id.po,,id,,indonesian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,37,115,133,0,0,0,0,37,115,pa.po,,pa,,punjabi,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,37,115,106,0,0,0,0,37,115,te.po,,te,,telugu,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,117,349,418,0,0,0,0,117,349,oc.po,,oc,,occitan,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,124,378,369,0,0,0,0,124,378,sk.po,,sk,,slovak,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,122,376,387,0,0,0,0,122,376,en_gb.po,,en,gb,english,,united kingdom

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,28,46,53,0,0,18,107,46,153,ga.po,,ga,,irish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,69,223,336,0,0,0,0,69,223,vi.po,,vi,,vietnamese,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,123,380,341,0,0,0,0,123,380,tr.po,,tr,,turkish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,123,380,453,0,0,0,0,123,380,ca.po,,ca,,catalan,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,69,223,110,0,0,0,0,69,223,th.po,,th,,thai,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,123,380,431,0,0,0,0,123,380,ro.po,,ro,,romanian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,123,380,341,0,0,0,0,123,380,lt.po,,lt,,lithuanian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,122,376,449,0,0,0,0,122,376,ca@valencia.po,valencia,ca,,catalan,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,123,380,371,0,0,0,0,123,380,sr.po,,sr,,serbian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,123,380,366,0,0,0,0,123,380,nl.po,,nl,,dutch,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,124,378,370,0,0,0,0,124,378,sr@latin.po,latin,sr,,serbian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,36,113,115,0,0,1,2,37,115,ar.po,,ar,,arabic,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,123,380,440,0,0,0,0,123,380,gl.po,,gl,,galician,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,123,380,358,0,0,0,0,123,380,sl.po,,sl,,slovenian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,123,380,441,0,0,0,0,123,380,es.po,,es,,spanish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,122,376,453,0,0,0,0,122,376,gd.po,,gd,,scottish gaelic,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,123,380,321,0,0,0,0,123,380,hu.po,,hu,,hungarian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,123,380,326,0,0,0,0,123,380,lv.po,,lv,,latvian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,123,380,453,0,0,0,0,123,380,fr.po,,fr,,french,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,79,144,159,28,86,15,146,122,376,ne.po,,ne,,nepali,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,123,355,325,0,0,1,23,124,378,nb.po,,nb,,norwegian bokmål,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,124,378,331,0,0,0,0,124,378,ml.po,,ml,,malayalam,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,42,140,142,0,0,0,0,42,140,bs.po,,bs,,bosnian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,37,115,126,0,0,0,0,37,115,as.po,,as,,assamese,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,124,378,169,0,0,0,0,124,378,zh_cn.po,,zh,cn,chinese,,china

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,68,216,242,0,0,0,0,68,216,bg.po,,bg,,bulgarian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,123,380,395,0,0,0,0,123,380,it.po,,it,,italian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,43,141,152,0,0,0,0,43,141,tg.po,,tg,,tajik,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,37,115,52,0,0,0,0,37,115,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,122,376,389,0,0,0,0,122,376,fa.po,,fa,,persian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,69,223,232,0,0,0,0,69,223,pt.po,,pt,,portuguese,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,120,331,308,0,0,0,0,120,331,eo.po,,eo,,esperanto,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,123,380,464,0,0,0,0,123,380,pt_br.po,,pt,br,portuguese,,brazil

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,123,380,154,0,0,0,0,123,380,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,123,380,336,0,0,0,0,123,380,ko.po,,ko,,korean,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,123,380,346,0,0,0,0,123,380,pl.po,,pl,,polish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,43,142,154,0,0,0,0,43,142,an.po,,an,,aragonese,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,123,380,365,0,0,0,0,123,380,cs.po,,cs,,czech,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,57,178,167,3,7,8,31,68,216,he.po,,he,,hebrew,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,121,371,337,1,5,0,0,122,376,eu.po,,eu,,basque,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,123,380,414,0,0,0,0,123,380,el.po,,el,,greek,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,123,380,406,0,0,0,0,123,380,fur.po,,fur,,friulian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,123,380,343,0,0,0,0,123,380,hr.po,,hr,,croatian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,123,380,297,0,0,0,0,123,380,fi.po,,fi,,finnish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,122,377,340,0,0,0,0,122,377,da.po,,da,,danish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,124,378,350,0,0,0,0,124,378,be.po,,be,,belarusian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,118,354,307,0,0,0,0,118,354,uk.po,,uk,,ukrainian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,123,380,359,0,0,0,0,123,380,sv.po,,sv,,swedish,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,123,380,342,0,0,0,0,123,380,ru.po,,ru,,russian,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,22,37,25,0,0,20,103,42,140,ja.po,,ja,,japanese,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,123,380,345,0,0,0,0,123,380,kk.po,,kk,,kazakh,,

- gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,123,380,382,0,0,0,0,123,380,de.po,,de,,german,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,314,1236,472,0,0,0,0,314,1236,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,40,205,67,0,0,0,0,40,205,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,315,1235,479,0,0,0,0,315,1235,zh_cn.po,,zh,cn,chinese,,china

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,314,1236,1784,0,0,0,0,314,1236,vi.po,,vi,,vietnamese,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,268,1103,1005,0,0,0,0,268,1103,uk.po,,uk,,ukrainian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,314,1236,1120,0,0,0,0,314,1236,tr.po,,tr,,turkish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,111,485,491,0,0,0,0,111,485,tg.po,,tg,,tajik,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,34,196,170,0,0,0,0,34,196,te.po,,te,,telugu,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,314,1236,1184,0,0,0,0,314,1236,sv.po,,sv,,swedish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,314,1232,1238,0,0,0,0,314,1232,sr@latin.po,latin,sr,,serbian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,314,1236,1239,0,0,0,0,314,1236,sr.po,,sr,,serbian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,314,1236,1201,0,0,0,0,314,1236,sl.po,,sl,,slovenian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,315,1236,1249,0,0,0,0,315,1236,sk.po,,sk,,slovak,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,314,1236,1133,0,0,0,0,314,1236,ru.po,,ru,,russian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,314,1236,1362,0,0,0,0,314,1236,ro.po,,ro,,romanian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,314,1236,1387,0,0,0,0,314,1236,pt_br.po,,pt,br,portuguese,,brazil

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,239,975,1066,0,0,0,0,239,975,pt.po,,pt,,portuguese,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,314,1236,1233,0,0,0,0,314,1236,pl.po,,pl,,polish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,229,858,999,0,0,9,114,238,972,pa.po,,pa,,punjabi,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,314,1232,1461,0,0,0,0,314,1232,oc.po,,oc,,occitan,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,314,1236,1257,0,0,0,0,314,1236,nl.po,,nl,,dutch,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,167,303,322,79,286,58,597,304,1186,ne.po,,ne,,nepali,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,302,1158,1138,1,3,4,47,307,1208,nb.po,,nb,,norwegian bokmål,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,182,517,461,2,3,130,716,314,1236,ml.po,,ml,,malayalam,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,314,1236,1103,0,0,0,0,314,1236,lv.po,,lv,,latvian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,314,1236,1062,0,0,0,0,314,1236,lt.po,,lt,,lithuanian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,314,1236,990,0,0,0,0,314,1236,ko.po,,ko,,korean,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,19,41,45,0,0,13,139,32,180,kn.po,,kn,,kannada,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,314,1236,1121,0,0,0,0,314,1236,kk.po,,kk,,kazakh,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,139,548,201,29,98,100,457,268,1103,ja.po,,ja,,japanese,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,314,1236,1363,0,0,0,0,314,1236,it.po,,it,,italian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,315,1236,1252,0,0,0,0,315,1236,is.po,,is,,icelandic,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,314,1236,1235,0,0,0,0,314,1236,id.po,,id,,indonesian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,314,1236,1127,0,0,0,0,314,1236,hu.po,,hu,,hungarian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,314,1236,1135,0,0,0,0,314,1236,hr.po,,hr,,croatian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,50,249,291,0,0,0,0,50,249,hi.po,,hi,,hindi,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,239,975,890,0,0,0,0,239,975,he.po,,he,,hebrew,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,314,1236,1406,0,0,0,0,314,1236,gl.po,,gl,,galician,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,250,986,1285,3,21,51,179,304,1186,gd.po,,gd,,scottish gaelic,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,56,125,138,2,8,59,387,117,520,ga.po,,ga,,irish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,314,1236,1394,0,0,0,0,314,1236,fur.po,,fur,,friulian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,314,1236,1473,0,0,0,0,314,1236,fr.po,,fr,,french,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,314,1236,915,0,0,0,0,314,1236,fi.po,,fi,,finnish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,239,975,1099,0,0,0,0,239,975,fa.po,,fa,,persian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,314,1236,1101,0,0,0,0,314,1236,eu.po,,eu,,basque,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,32,180,150,0,0,0,0,32,180,et.po,,et,,estonian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,314,1236,1426,0,0,0,0,314,1236,es.po,,es,,spanish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,313,1230,1200,0,0,0,0,313,1230,eo.po,,eo,,esperanto,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,304,1186,1197,0,0,0,0,304,1186,en_gb.po,,en,gb,english,,united kingdom

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,314,1236,1351,0,0,0,0,314,1236,el.po,,el,,greek,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,314,1236,1254,0,0,0,0,314,1236,de.po,,de,,german,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,314,1236,1202,0,0,0,0,314,1236,da.po,,da,,danish,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,314,1236,1223,0,0,0,0,314,1236,cs.po,,cs,,czech,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,304,1186,1426,0,0,0,0,304,1186,ca@valencia.po,valencia,ca,,catalan,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,314,1236,1487,0,0,0,0,314,1236,ca.po,,ca,,catalan,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,111,485,471,0,0,0,0,111,485,bs.po,,bs,,bosnian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,213,821,917,0,0,0,0,213,821,bg.po,,bg,,bulgarian,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,46,224,229,0,0,0,0,46,224,as.po,,as,,assamese,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,303,1180,1124,0,0,1,6,304,1186,ar.po,,ar,,arabic,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,111,485,560,0,0,0,0,111,485,an.po,,an,,aragonese,,

- gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,31,157,150,1,26,0,0,32,183,af.po,,af,,afrikaans,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,58,165,176,0,0,0,0,58,165,si.po,,si,,sinhala,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,42,116,152,5,15,9,26,56,157,yo.po,,yo,,yoruba,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,49,136,148,0,0,0,0,49,136,cy.po,,cy,,welsh,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,27,70,35,0,0,0,0,27,70,km.po,,km,,khmer,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gn.po,33,71,77,0,0,15,62,48,133,gn.po,,gn,,guarani,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,27,70,64,0,0,0,0,27,70,he.po,,he,,hebrew,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,38,81,70,0,0,0,0,38,81,nl.po,,nl,,dutch,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,27,70,72,0,0,0,0,27,70,fa.po,,fa,,persian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,27,70,65,0,0,0,0,27,70,ug.po,,ug,,uyghur,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,27,70,66,0,0,0,0,27,70,ne.po,,ne,,nepali,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,26,69,30,0,0,11,11,37,80,ja.po,,ja,,japanese,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,27,70,69,0,0,0,0,27,70,ga.po,,ga,,irish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,27,70,75,0,0,0,0,27,70,bn_in.po,,bn,in,bangla,,india

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,46,125,119,0,0,0,0,46,125,mn.po,,mn,,mongolian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,38,81,77,0,0,0,0,38,81,eo.po,,eo,,esperanto,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,38,81,143,0,0,0,0,38,81,vi.po,,vi,,vietnamese,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,38,81,84,0,0,0,0,38,81,ro.po,,ro,,romanian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,38,81,87,0,0,0,0,38,81,ca.po,,ca,,catalan,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/csb.po,37,95,87,0,0,0,0,37,95,csb.po,,csb,,kashubian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,27,70,71,0,0,0,0,27,70,or.po,,or,,odia,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,27,70,65,0,0,0,0,27,70,is.po,,is,,icelandic,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,27,70,70,0,0,0,0,27,70,en_gb.po,,en,gb,english,,united kingdom

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,58,165,88,0,0,0,0,58,165,dz.po,,dz,,dzongkha,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,38,81,71,0,0,0,0,38,81,hu.po,,hu,,hungarian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,37,80,79,0,0,0,0,37,80,lv.po,,lv,,latvian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,37,80,71,0,0,0,0,37,80,de.po,,de,,german,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kg.po,46,125,135,0,0,0,0,46,125,kg.po,,kg,,kongo,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ia.po,27,70,80,0,0,0,0,27,70,ia.po,,ia,,interlingua,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/dv.po,56,157,133,0,0,0,0,56,157,dv.po,,dv,,divehi,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,27,70,83,0,0,0,0,27,70,pt.po,,pt,,portuguese,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,38,81,88,0,0,0,0,38,81,pt_br.po,,pt,br,portuguese,,brazil

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,52,128,149,0,0,4,29,56,157,ps.po,,ps,,pashto,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,37,95,94,0,0,0,0,37,95,bn.po,,bn,,bangla,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,57,161,146,0,0,0,0,57,161,nds.po,,nds,,low german,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,27,70,70,0,0,0,0,27,70,bs.po,,bs,,bosnian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,38,81,86,0,0,0,0,38,81,it.po,,it,,italian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ha.po,42,116,160,5,15,9,26,56,157,ha.po,,ha,,hausa,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,27,70,63,0,0,0,0,27,70,nb.po,,nb,,norwegian bokmål,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,27,70,76,0,0,0,0,27,70,ca@valencia.po,valencia,ca,,catalan,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,27,70,80,0,0,0,0,27,70,gd.po,,gd,,scottish gaelic,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,27,70,69,0,0,0,0,27,70,hr.po,,hr,,croatian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,37,95,84,0,0,0,0,37,95,fy.po,,fy,,western frisian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,27,70,80,0,0,0,0,27,70,oc.po,,oc,,occitan,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,27,70,31,0,0,0,0,27,70,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,23,65,72,0,0,4,5,27,70,kab.po,,kab,,kabyle,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,38,81,72,0,0,0,0,38,81,sv.po,,sv,,swedish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,27,70,65,0,0,0,0,27,70,te.po,,te,,telugu,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,58,165,150,0,0,0,0,58,165,be@latin.po,latin,be,,belarusian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,38,81,70,0,0,0,0,38,81,da.po,,da,,danish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,37,80,61,0,0,0,0,37,80,fi.po,,fi,,finnish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,27,70,70,0,0,0,0,27,70,sk.po,,sk,,slovak,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,46,125,125,0,0,0,0,46,125,en@shaw.po,shaw,en,,english,shavian,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,27,70,84,0,0,0,0,27,70,be.po,,be,,belarusian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,57,161,174,0,0,0,0,57,161,mai.po,,mai,,maithili,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,38,81,81,0,0,0,0,38,81,sr.po,,sr,,serbian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,27,70,58,0,0,0,0,27,70,et.po,,et,,estonian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,38,81,72,0,0,0,0,38,81,ko.po,,ko,,korean,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,36,80,85,1,15,0,0,37,95,xh.po,,xh,,xhosa,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,37,80,86,0,0,0,0,37,80,fur.po,,fur,,friulian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,38,81,79,0,0,0,0,38,81,pl.po,,pl,,polish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,27,70,33,0,0,0,0,27,70,zh_cn.po,,zh,cn,chinese,,china

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,27,70,64,0,0,0,0,27,70,crh.po,,crh,,crimean turkish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,37,80,66,0,0,0,0,37,80,kk.po,,kk,,kazakh,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,27,70,72,0,0,0,0,27,70,tg.po,,tg,,tajik,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,38,81,91,0,0,0,0,38,81,es.po,,es,,spanish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,27,70,68,0,0,0,0,27,70,uk.po,,uk,,ukrainian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,38,81,75,0,0,0,0,38,81,ru.po,,ru,,russian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gv.po,36,84,92,0,0,10,41,46,125,gv.po,,gv,,manx,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/io.po,44,86,90,0,0,14,79,58,165,io.po,,io,,ido,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,27,70,67,0,0,0,0,27,70,ar.po,,ar,,arabic,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,27,70,81,0,0,0,0,27,70,bg.po,,bg,,bulgarian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,27,70,31,0,0,0,0,27,70,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,38,81,74,0,0,0,0,38,81,tr.po,,tr,,turkish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,37,80,72,0,0,0,0,37,80,eu.po,,eu,,basque,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,27,70,68,0,0,0,0,27,70,as.po,,as,,assamese,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,27,70,63,0,0,0,0,27,70,kn.po,,kn,,kannada,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,27,70,59,0,0,0,0,27,70,af.po,,af,,afrikaans,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lo.po,27,70,41,0,0,0,0,27,70,lo.po,,lo,,lao,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,37,80,83,0,0,0,0,37,80,el.po,,el,,greek,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,49,136,164,0,0,0,0,49,136,mg.po,,mg,,malagasy,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,49,136,135,0,0,0,0,49,136,en_ca.po,,en,ca,english,,canada

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,8,8,10,10,45,9,15,27,68,rw.po,,rw,,kinyarwanda,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,27,70,72,0,0,0,0,27,70,pa.po,,pa,,punjabi,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,57,161,190,0,0,0,0,57,161,br.po,,br,,breton,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,60,167,188,0,0,0,0,60,167,ku.po,,ku,,kurdish,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,27,70,70,0,0,0,0,27,70,hi.po,,hi,,hindi,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,55,151,136,1,6,0,0,56,157,hy.po,,hy,,armenian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,37,80,75,0,0,0,0,37,80,lt.po,,lt,,lithuanian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,27,70,67,0,0,0,0,27,70,ms.po,,ms,,malay,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,27,70,68,0,0,0,0,27,70,gu.po,,gu,,gujarati,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,37,95,92,0,0,0,0,37,95,zu.po,,zu,,zulu,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,27,70,32,0,0,0,0,27,70,th.po,,th,,thai,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,27,70,79,0,0,0,0,27,70,an.po,,an,,aragonese,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ak.po,27,70,74,0,0,0,0,27,70,ak.po,,ak,,akan,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ig.po,42,116,121,5,15,9,26,56,157,ig.po,,ig,,igbo,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,39,103,93,0,0,0,0,39,103,ky.po,,ky,,kyrgyz,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,46,125,116,0,0,0,0,46,125,nn.po,,nn,,norwegian nynorsk,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,27,70,69,0,0,0,0,27,70,mr.po,,mr,,marathi,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,27,70,67,0,0,0,0,27,70,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/szl.po,39,103,93,0,0,0,0,39,103,szl.po,,szl,,silesian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,38,81,82,0,0,0,0,38,81,id.po,,id,,indonesian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,38,81,90,0,0,0,0,38,81,fr.po,,fr,,french,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,27,70,56,0,0,0,0,27,70,ml.po,,ml,,malayalam,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,37,80,82,0,0,0,0,37,80,sl.po,,sl,,slovenian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,37,80,93,0,0,0,0,37,80,gl.po,,gl,,galician,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,56,157,182,0,0,0,0,56,157,ast.po,,ast,,asturian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,49,136,119,0,0,0,0,49,136,ka.po,,ka,,georgian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,27,70,64,0,0,0,0,27,70,ta.po,,ta,,tamil,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,38,81,78,0,0,0,0,38,81,cs.po,,cs,,czech,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,58,165,192,0,0,0,0,58,165,mk.po,,mk,,macedonian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,58,165,186,0,0,0,0,58,165,sq.po,,sq,,albanian,,

- gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,27,70,70,0,0,0,0,27,70,sr@latin.po,latin,sr,,serbian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,145,652,628,1,6,0,0,146,658,eo.po,,eo,,esperanto,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,155,693,702,0,0,0,0,155,693,sr.po,,sr,,serbian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,147,692,722,0,0,0,0,147,692,or.po,,or,,odia,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,155,693,889,0,0,0,0,155,693,es.po,,es,,spanish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,154,680,794,0,0,0,0,154,680,bg.po,,bg,,bulgarian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,155,693,938,0,0,0,0,155,693,ca.po,,ca,,catalan,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,155,693,709,0,0,0,0,155,693,pl.po,,pl,,polish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,146,658,525,0,0,0,0,146,658,ml.po,,ml,,malayalam,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,155,693,848,0,0,0,0,155,693,fur.po,,fur,,friulian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,147,692,655,0,0,0,0,147,692,mr.po,,mr,,marathi,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,155,693,652,0,0,0,0,155,693,hr.po,,hr,,croatian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,155,693,251,0,0,0,0,155,693,zh_cn.po,,zh,cn,chinese,,china

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,155,693,683,0,0,0,0,155,693,id.po,,id,,indonesian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,157,715,292,0,0,0,0,157,715,th.po,,th,,thai,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,120,496,592,0,0,25,161,145,657,kab.po,,kab,,kabyle,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,155,693,622,0,0,0,0,155,693,kk.po,,kk,,kazakh,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,146,658,840,0,0,0,0,146,658,oc.po,,oc,,occitan,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,155,693,586,0,0,0,0,155,693,tr.po,,tr,,turkish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,154,690,682,0,0,0,0,154,690,he.po,,he,,hebrew,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,145,657,620,0,0,0,0,145,657,eu.po,,eu,,basque,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,147,692,626,0,0,0,0,147,692,ta.po,,ta,,tamil,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,155,693,697,0,0,0,0,155,693,en_gb.po,,en,gb,english,,united kingdom

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,147,692,845,0,0,0,0,147,692,hi.po,,hi,,hindi,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,147,687,695,0,0,0,0,147,687,bs.po,,bs,,bosnian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,147,692,599,0,0,0,0,147,692,te.po,,te,,telugu,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,146,658,656,0,0,0,0,146,658,be.po,,be,,belarusian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,155,693,666,0,0,0,0,155,693,sv.po,,sv,,swedish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,155,693,708,0,0,0,0,155,693,de.po,,de,,german,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,154,680,930,0,0,0,0,154,680,ca@valencia.po,valencia,ca,,catalan,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,155,693,719,0,0,0,0,155,693,el.po,,el,,greek,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,154,680,773,0,0,0,0,154,680,fa.po,,fa,,persian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,153,706,955,0,0,0,0,153,706,an.po,,an,,aragonese,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,155,693,683,0,0,0,0,155,693,ru.po,,ru,,russian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,155,693,893,0,0,0,0,155,693,gl.po,,gl,,galician,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,155,693,564,0,0,0,0,155,693,lt.po,,lt,,lithuanian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,151,795,768,0,0,0,0,151,795,ug.po,,ug,,uyghur,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,54,304,326,0,0,0,0,54,304,ms.po,,ms,,malay,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,146,688,288,0,0,0,0,146,688,km.po,,km,,khmer,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,57,321,364,0,0,0,0,57,321,mk.po,,mk,,macedonian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,155,693,620,0,0,0,0,155,693,lv.po,,lv,,latvian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,147,687,741,0,0,0,0,147,687,tg.po,,tg,,tajik,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,153,699,752,0,0,0,0,153,699,gu.po,,gu,,gujarati,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,155,693,712,0,0,0,0,155,693,sl.po,,sl,,slovenian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,130,655,686,0,0,0,0,130,655,bn_in.po,,bn,in,bangla,,india

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,155,693,669,0,0,0,0,155,693,da.po,,da,,danish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,54,304,361,0,0,0,0,54,304,ast.po,,ast,,asturian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,155,693,782,0,0,0,0,155,693,ro.po,,ro,,romanian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,146,658,838,0,0,0,0,146,658,fr.po,,fr,,french,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,136,604,238,1,3,8,50,145,657,ja.po,,ja,,japanese,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,155,693,759,0,0,0,0,155,693,it.po,,it,,italian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,94,346,353,16,93,36,219,146,658,ar.po,,ar,,arabic,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,147,692,739,0,0,0,0,147,692,as.po,,as,,assamese,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,147,692,821,0,0,0,0,147,692,pa.po,,pa,,punjabi,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,155,693,721,0,0,0,0,155,693,nl.po,,nl,,dutch,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,152,660,662,0,0,2,30,154,690,nb.po,,nb,,norwegian bokmål,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,112,369,372,0,0,34,289,146,658,is.po,,is,,icelandic,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,53,136,145,7,19,95,538,155,693,af.po,,af,,afrikaans,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,147,692,616,0,0,0,0,147,692,kn.po,,kn,,kannada,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,154,705,785,0,0,0,0,154,705,pt.po,,pt,,portuguese,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,155,693,243,0,0,0,0,155,693,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,152,670,629,0,0,0,0,152,670,ne.po,,ne,,nepali,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,147,692,241,0,0,0,0,147,692,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,155,693,626,0,0,0,0,155,693,ko.po,,ko,,korean,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,111,445,382,23,139,10,44,144,628,et.po,,et,,estonian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,155,693,656,0,0,0,0,155,693,cs.po,,cs,,czech,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,155,693,708,0,0,0,0,155,693,sk.po,,sk,,slovak,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,88,310,358,0,0,54,398,142,708,ga.po,,ga,,irish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,113,414,324,7,59,25,184,145,657,fi.po,,fi,,finnish,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,155,693,835,0,0,0,0,155,693,pt_br.po,,pt,br,portuguese,,brazil

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,146,658,903,0,0,0,0,146,658,gd.po,,gd,,scottish gaelic,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,155,693,702,0,0,0,0,155,693,sr@latin.po,latin,sr,,serbian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,155,693,704,0,0,0,0,155,693,hu.po,,hu,,hungarian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,157,714,670,0,0,0,0,157,714,uk.po,,uk,,ukrainian,,

- gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,155,693,1051,0,0,0,0,155,693,vi.po,,vi,,vietnamese,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,46,457,441,0,0,0,0,46,457,sv.po,,sv,,swedish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,46,457,468,0,0,0,0,46,457,ro.po,,ro,,romanian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,46,457,456,0,0,0,0,46,457,pt_br.po,,pt,br,portuguese,,brazil

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,46,457,373,0,0,0,0,46,457,pl.po,,pl,,polish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,46,457,451,0,0,0,0,46,457,nl.po,,nl,,dutch,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,46,457,310,0,0,0,0,46,457,ko.po,,ko,,korean,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,46,457,394,0,0,0,0,46,457,hu.po,,hu,,hungarian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,46,457,446,0,0,0,0,46,457,gl.po,,gl,,galician,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/fur/fur.po,45,451,474,0,0,1,6,46,457,fur.po,,fur,,friulian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,46,457,457,0,0,0,0,46,457,fr.po,,fr,,french,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,46,457,461,0,0,0,0,46,457,es.po,,es,,spanish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,46,457,487,0,0,0,0,46,457,el.po,,el,,greek,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,46,457,477,0,0,0,0,46,457,de.po,,de,,german,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,46,457,430,0,0,0,0,46,457,da.po,,da,,danish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,46,457,415,0,0,0,0,46,457,cs.po,,cs,,czech,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,46,457,476,0,0,0,0,46,457,ca.po,,ca,,catalan,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,219,572,285,0,0,0,0,219,572,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,125,354,161,0,0,0,0,125,354,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,216,535,309,0,0,0,0,216,535,zh_cn.po,,zh,cn,chinese,,china

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,219,572,833,0,0,0,0,219,572,vi.po,,vi,,vietnamese,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,191,459,459,0,0,0,0,191,459,uk.po,,uk,,ukrainian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,219,572,543,0,0,0,0,219,572,tr.po,,tr,,turkish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,127,377,433,0,0,0,0,127,377,tg.po,,tg,,tajik,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,120,344,326,0,0,0,0,120,344,te.po,,te,,telugu,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,219,572,592,0,0,0,0,219,572,sv.po,,sv,,swedish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,216,535,615,0,0,0,0,216,535,sr@latin.po,latin,sr,,serbian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,219,572,656,0,0,0,0,219,572,sr.po,,sr,,serbian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,219,572,630,0,0,0,0,219,572,sl.po,,sl,,slovenian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,216,535,569,0,0,0,0,216,535,sk.po,,sk,,slovak,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,219,572,612,0,0,0,0,219,572,ru.po,,ru,,russian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,219,572,631,0,0,0,0,219,572,ro.po,,ro,,romanian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,219,572,631,0,0,0,0,219,572,pt_br.po,,pt,br,portuguese,,brazil

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,187,448,493,0,0,0,0,187,448,pt.po,,pt,,portuguese,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,219,572,585,0,0,0,0,219,572,pl.po,,pl,,polish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,180,428,530,0,0,0,0,180,428,pa.po,,pa,,punjabi,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,187,448,536,0,0,0,0,187,448,oc.po,,oc,,occitan,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,219,572,586,0,0,0,0,219,572,nl.po,,nl,,dutch,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,86,153,172,25,83,14,118,125,354,ne.po,,ne,,nepali,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,198,473,481,0,0,0,0,198,473,nb.po,,nb,,norwegian bokmål,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,218,561,536,0,0,0,0,218,561,ml.po,,ml,,malayalam,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,219,572,564,0,0,0,0,219,572,lv.po,,lv,,latvian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,219,572,551,0,0,0,0,219,572,lt.po,,lt,,lithuanian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,219,572,523,0,0,0,0,219,572,ko.po,,ko,,korean,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,84,158,181,0,0,16,143,100,301,kn.po,,kn,,kannada,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,117,332,117,332,km.po,,km,,khmer,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,219,572,541,0,0,0,0,219,572,kk.po,,kk,,kazakh,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,174,419,233,0,0,5,5,179,424,ja.po,,ja,,japanese,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,219,572,613,0,0,0,0,219,572,it.po,,it,,italian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,217,556,604,0,0,0,0,217,556,is.po,,is,,icelandic,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,219,572,589,0,0,0,0,219,572,id.po,,id,,indonesian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,219,572,561,0,0,0,0,219,572,hu.po,,hu,,hungarian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,217,556,564,0,0,0,0,217,556,hr.po,,hr,,croatian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,187,448,437,0,0,0,0,187,448,he.po,,he,,hebrew,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,73,135,168,1,1,117,323,191,459,gu.po,,gu,,gujarati,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,219,572,655,0,0,0,0,219,572,gl.po,,gl,,galician,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,198,473,661,0,0,0,0,198,473,gd.po,,gd,,scottish gaelic,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,94,217,255,0,0,3,9,97,226,ga.po,,ga,,irish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,219,572,641,0,0,0,0,219,572,fur.po,,fur,,friulian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,219,572,686,0,0,0,0,219,572,fr.po,,fr,,french,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,219,572,486,0,0,0,0,219,572,fi.po,,fi,,finnish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,198,473,542,0,0,0,0,198,473,fa.po,,fa,,persian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,219,572,553,0,0,0,0,219,572,eu.po,,eu,,basque,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,100,301,256,0,0,0,0,100,301,et.po,,et,,estonian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,219,572,660,0,0,0,0,219,572,es.po,,es,,spanish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,217,556,552,0,0,0,0,217,556,eo.po,,eo,,esperanto,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,217,556,559,0,0,0,0,217,556,en_gb.po,,en,gb,english,,united kingdom

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,219,572,636,0,0,0,0,219,572,el.po,,el,,greek,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,219,572,589,0,0,0,0,219,572,de.po,,de,,german,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,219,572,569,0,0,0,0,219,572,da.po,,da,,danish,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,219,572,617,0,0,0,0,219,572,cs.po,,cs,,czech,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,198,473,572,0,0,0,0,198,473,ca@valencia.po,valencia,ca,,catalan,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,219,572,679,0,0,0,0,219,572,ca.po,,ca,,catalan,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,126,379,379,0,0,0,0,126,379,bs.po,,bs,,bosnian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,104,304,352,0,0,0,0,104,304,bg.po,,bg,,bulgarian,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,125,354,403,0,0,0,0,125,354,as.po,,as,,assamese,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,196,467,508,0,0,4,30,200,497,ar.po,,ar,,arabic,,

- gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,127,377,430,0,0,0,0,127,377,an.po,,an,,aragonese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,79,458,112,0,0,0,0,79,458,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,75,354,97,0,0,0,0,75,354,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,79,456,154,0,0,0,0,79,456,zh_cn.po,,zh,cn,chinese,,china

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,50,241,208,6,43,0,0,56,284,xh.po,,xh,,xhosa,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,1,0,0,9,27,49,292,59,319,wa.po,,wa,,walloon,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,78,455,589,0,0,0,0,78,455,vi.po,,vi,,vietnamese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,78,455,399,0,0,0,0,78,455,uk.po,,uk,,ukrainian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,71,343,303,0,0,0,0,71,343,ug.po,,ug,,uyghur,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,79,458,391,0,0,0,0,79,458,tr.po,,tr,,turkish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,78,455,152,0,0,0,0,78,455,th.po,,th,,thai,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,78,455,447,0,0,0,0,78,455,tg.po,,tg,,tajik,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,75,354,289,0,0,0,0,75,354,te.po,,te,,telugu,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,75,354,306,0,0,0,0,75,354,ta.po,,ta,,tamil,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,79,458,442,0,0,0,0,79,458,sv.po,,sv,,swedish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,80,457,447,0,0,0,0,80,457,sr@latin.po,latin,sr,,serbian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,79,458,448,0,0,0,0,79,458,sr.po,,sr,,serbian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,11,43,52,33,168,15,108,59,319,sq.po,,sq,,albanian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,79,458,429,0,0,0,0,79,458,sl.po,,sl,,slovenian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,80,457,433,0,0,0,0,80,457,sk.po,,sk,,slovak,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,20,46,45,12,41,27,232,59,319,si.po,,si,,sinhala,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,1,0,0,36,199,22,120,59,319,rw.po,,rw,,kinyarwanda,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,79,458,404,0,0,0,0,79,458,ru.po,,ru,,russian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,79,458,499,0,0,0,0,79,458,ro.po,,ro,,romanian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,79,458,625,0,0,0,0,79,458,pt_br.po,,pt,br,portuguese,,brazil

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,78,455,539,0,0,0,0,78,455,pt.po,,pt,,portuguese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,30,91,101,14,79,15,149,59,319,ps.po,,ps,,pashto,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,79,458,451,0,0,0,0,79,458,pl.po,,pl,,polish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,78,455,471,0,0,0,0,78,455,pa.po,,pa,,punjabi,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,75,354,360,0,0,0,0,75,354,or.po,,or,,odia,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,78,455,543,0,0,0,0,78,455,oc.po,,oc,,occitan,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,34,143,141,18,113,7,63,59,319,nn.po,,nn,,norwegian nynorsk,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,79,458,458,0,0,0,0,79,458,nl.po,,nl,,dutch,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,80,457,402,0,0,0,0,80,457,ne.po,,ne,,nepali,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,14,28,24,3,8,42,283,59,319,nds.po,,nds,,low german,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,80,457,422,0,0,0,0,80,457,nb.po,,nb,,norwegian bokmål,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,1,0,0,7,22,51,297,59,319,ms.po,,ms,,malay,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,75,354,317,0,0,0,0,75,354,mr.po,,mr,,marathi,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,1,0,0,7,22,51,297,59,319,mn.po,,mn,,mongolian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,79,456,374,0,0,0,0,79,456,ml.po,,ml,,malayalam,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,42,187,213,15,106,2,26,59,319,mk.po,,mk,,macedonian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,18,66,66,28,167,13,86,59,319,mg.po,,mg,,malagasy,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,22,77,76,12,82,25,160,59,319,mai.po,,mai,,maithili,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,79,458,361,0,0,0,0,79,458,lv.po,,lv,,latvian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,79,458,384,0,0,0,0,79,458,lt.po,,lt,,lithuanian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,20,68,75,20,117,19,134,59,319,ku.po,,ku,,kurdish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,79,458,362,0,0,0,0,79,458,ko.po,,ko,,korean,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,75,354,311,0,0,0,0,75,354,kn.po,,kn,,kannada,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,75,359,126,0,0,0,0,75,359,km.po,,km,,khmer,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,79,458,378,0,0,0,0,79,458,kk.po,,kk,,kazakh,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,17,63,51,28,166,14,90,59,319,ka.po,,ka,,georgian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,78,455,123,0,0,1,3,79,458,ja.po,,ja,,japanese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,79,458,468,0,0,0,0,79,458,it.po,,it,,italian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,80,457,478,0,0,0,0,80,457,is.po,,is,,icelandic,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,79,458,435,0,0,0,0,79,458,id.po,,id,,indonesian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,79,458,455,0,0,0,0,79,458,hu.po,,hu,,hungarian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,79,456,427,0,0,0,0,79,456,hr.po,,hr,,croatian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,75,354,384,0,0,0,0,75,354,hi.po,,hi,,hindi,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,78,455,456,0,0,0,0,78,455,he.po,,he,,hebrew,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,78,455,440,0,0,0,0,78,455,gu.po,,gu,,gujarati,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,79,458,611,0,0,0,0,79,458,gl.po,,gl,,galician,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,80,457,595,0,0,0,0,80,457,gd.po,,gd,,scottish gaelic,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,36,102,119,1,2,34,247,71,351,ga.po,,ga,,irish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,79,458,536,0,0,0,0,79,458,fur.po,,fur,,friulian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,79,458,632,0,0,0,0,79,458,fr.po,,fr,,french,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,79,458,353,0,0,0,0,79,458,fi.po,,fi,,finnish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,80,457,468,0,0,0,0,80,457,fa.po,,fa,,persian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,80,457,365,0,0,0,0,80,457,eu.po,,eu,,basque,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,71,351,296,0,0,0,0,71,351,et.po,,et,,estonian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,79,458,542,0,0,0,0,79,458,es.po,,es,,spanish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,79,456,443,0,0,0,0,79,456,eo.po,,eo,,esperanto,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,78,455,458,0,0,0,0,78,455,en_gb.po,,en,gb,english,,united kingdom

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,14,55,55,29,171,16,93,59,319,en_ca.po,,en,ca,english,,canada

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,29,144,144,30,175,0,0,59,319,en@shaw.po,shaw,en,,english,shavian,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,79,458,525,0,0,0,0,79,458,el.po,,el,,greek,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,34,143,56,19,116,6,60,59,319,dz.po,,dz,,dzongkha,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,79,458,429,0,0,0,0,79,458,de.po,,de,,german,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,79,458,454,0,0,0,0,79,458,da.po,,da,,danish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,19,74,72,29,170,11,75,59,319,cy.po,,cy,,welsh,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,79,458,419,0,0,0,0,79,458,cs.po,,cs,,czech,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,71,343,307,0,0,0,0,71,343,crh.po,,crh,,crimean turkish,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,80,457,570,0,0,0,0,80,457,ca@valencia.po,valencia,ca,,catalan,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,79,456,569,0,0,0,0,79,456,ca.po,,ca,,catalan,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,78,455,425,0,0,0,0,78,455,bs.po,,bs,,bosnian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,50,263,311,9,56,0,0,59,319,br.po,,br,,breton,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,75,354,416,0,0,0,0,75,354,bn_in.po,,bn,in,bangla,,india

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,50,263,300,9,56,0,0,59,319,bn.po,,bn,,bangla,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,64,326,401,0,0,0,0,64,326,bg.po,,bg,,bulgarian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,42,187,165,15,106,2,26,59,319,be@latin.po,latin,be,,belarusian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,80,457,394,0,0,0,0,80,457,be.po,,be,,belarusian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,1,0,0,7,22,51,297,59,319,az.po,,az,,azerbaijani,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,58,306,333,1,13,0,0,59,319,ast.po,,ast,,asturian,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,75,354,367,0,0,0,0,75,354,as.po,,as,,assamese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,76,355,320,0,0,0,0,76,355,ar.po,,ar,,arabic,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,78,455,518,0,0,0,0,78,455,an.po,,an,,aragonese,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,1,0,0,5,13,53,306,59,319,am.po,,am,,amharic,,

- gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,80,457,477,0,0,0,0,80,457,af.po,,af,,afrikaans,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,100,513,424,1,3,0,0,101,516,zu.po,,zu,,zulu,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,58,364,111,0,0,0,0,58,364,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,87,431,145,0,0,0,0,87,431,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,50,299,96,0,0,0,0,50,299,zh_cn.po,,zh,cn,chinese,,china

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,20,117,148,28,86,65,519,113,722,yo.po,,yo,,yoruba,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,99,498,397,1,8,1,27,101,533,xh.po,,xh,,xhosa,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,101,533,712,0,0,0,0,101,533,wa.po,,wa,,walloon,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,58,364,521,0,0,0,0,58,364,vi.po,,vi,,vietnamese,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,64,193,178,0,0,47,510,111,703,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,64,193,178,0,0,47,510,111,703,uz.po,,uz,,uzbek,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,59,319,287,0,0,0,0,59,319,uk.po,,uk,,ukrainian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,110,563,463,0,0,0,0,110,563,ug.po,,ug,,uyghur,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,58,364,307,0,0,0,0,58,364,tr.po,,tr,,turkish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,26,44,44,0,0,75,472,101,516,tk.po,,tk,,turkmen,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,59,319,119,0,0,0,0,59,319,th.po,,th,,thai,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,60,327,368,0,0,0,0,60,327,tg.po,,tg,,tajik,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,59,323,290,0,0,0,0,59,323,te.po,,te,,telugu,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,59,323,293,0,0,0,0,59,323,ta.po,,ta,,tamil,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,58,364,342,0,0,0,0,58,364,sv.po,,sv,,swedish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,50,299,310,0,0,0,0,50,299,sr@latin.po,latin,sr,,serbian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,58,364,379,0,0,0,0,58,364,sr.po,,sr,,serbian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,115,811,885,0,0,0,0,115,811,sq.po,,sq,,albanian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,58,364,350,0,0,0,0,58,364,sl.po,,sl,,slovenian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,50,299,295,0,0,0,0,50,299,sk.po,,sk,,slovak,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,115,811,757,0,0,0,0,115,811,si.po,,si,,sinhala,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,12,13,16,69,480,20,40,101,533,rw.po,,rw,,kinyarwanda,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,58,364,331,0,0,0,0,58,364,ru.po,,ru,,russian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,58,364,395,0,0,0,0,58,364,ro.po,,ro,,romanian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,58,364,426,0,0,0,0,58,364,pt_br.po,,pt,br,portuguese,,brazil

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,59,319,370,0,0,0,0,59,319,pt.po,,pt,,portuguese,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,70,244,255,0,0,43,435,113,679,ps.po,,ps,,pashto,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,58,364,337,0,0,0,0,58,364,pl.po,,pl,,polish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,50,299,319,0,0,0,0,50,299,pa.po,,pa,,punjabi,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,59,323,343,0,0,0,0,59,323,or.po,,or,,odia,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,50,299,333,0,0,0,0,50,299,oc.po,,oc,,occitan,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,100,513,736,1,3,0,0,101,516,nso.po,,nso,,northern sotho,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,97,489,455,0,0,0,0,97,489,nn.po,,nn,,norwegian nynorsk,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,58,364,370,0,0,0,0,58,364,nl.po,,nl,,dutch,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,32,90,94,0,0,18,209,50,299,ne.po,,ne,,nepali,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,68,209,176,0,0,43,429,111,638,nds.po,,nds,,low german,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,50,299,294,0,0,0,0,50,299,nb.po,,nb,,norwegian bokmål,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,59,323,307,0,0,0,0,59,323,ms.po,,ms,,malay,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,59,323,320,0,0,0,0,59,323,mr.po,,mr,,marathi,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,100,513,408,1,3,0,0,101,516,mn.po,,mn,,mongolian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,58,364,294,0,0,0,0,58,364,ml.po,,ml,,malayalam,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,114,714,793,0,0,0,0,114,714,mk.po,,mk,,macedonian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,6,8,8,0,0,95,508,101,516,mi.po,,mi,,maori,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,106,571,586,0,0,0,0,106,571,mg.po,,mg,,malagasy,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,61,267,283,0,0,50,371,111,638,mai.po,,mai,,maithili,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,58,364,306,0,0,0,0,58,364,lv.po,,lv,,latvian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,58,364,291,0,0,0,0,58,364,lt.po,,lt,,lithuanian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,46,208,196,19,56,49,450,114,714,ku.po,,ku,,kurdish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,58,364,283,0,0,0,0,58,364,ko.po,,ko,,korean,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,59,323,285,0,0,0,0,59,323,kn.po,,kn,,kannada,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,59,323,168,0,0,0,0,59,323,km.po,,km,,khmer,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,58,364,346,0,0,0,0,58,364,kk.po,,kk,,kazakh,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,49,250,247,0,0,9,114,58,364,kab.po,,kab,,kabyle,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,88,434,335,0,0,26,280,114,714,ka.po,,ka,,georgian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,56,343,107,0,0,2,21,58,364,ja.po,,ja,,japanese,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,58,364,379,0,0,0,0,58,364,it.po,,it,,italian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,58,364,382,0,0,0,0,58,364,is.po,,is,,icelandic,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ig.po,20,117,131,28,86,65,519,113,722,ig.po,,ig,,igbo,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,58,364,346,0,0,0,0,58,364,id.po,,id,,indonesian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,103,570,546,0,0,0,0,103,570,hy.po,,hy,,armenian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,58,364,316,0,0,0,0,58,364,hu.po,,hu,,hungarian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,58,364,341,0,0,0,0,58,364,hr.po,,hr,,croatian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,59,323,424,0,0,0,0,59,323,hi.po,,hi,,hindi,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,59,319,289,0,0,0,0,59,319,he.po,,he,,hebrew,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ha.po,20,117,153,28,86,65,519,113,722,ha.po,,ha,,hausa,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,50,298,343,0,0,0,0,50,298,gu.po,,gu,,gujarati,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,58,364,407,0,0,0,0,58,364,gl.po,,gl,,galician,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,58,364,477,0,0,0,0,58,364,gd.po,,gd,,scottish gaelic,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,78,274,361,0,0,35,401,113,675,ga.po,,ga,,irish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,96,448,414,0,0,0,0,96,448,fy.po,,fy,,western frisian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,58,364,420,0,0,0,0,58,364,fur.po,,fur,,friulian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,58,364,419,0,0,0,0,58,364,fr.po,,fr,,french,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,55,276,219,2,21,1,67,58,364,fi.po,,fi,,finnish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,50,299,339,0,0,0,0,50,299,fa.po,,fa,,persian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,58,364,344,0,0,0,0,58,364,eu.po,,eu,,basque,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,50,299,257,0,0,0,0,50,299,et.po,,et,,estonian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,58,364,420,0,0,0,0,58,364,es.po,,es,,spanish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,58,364,331,0,0,0,0,58,364,eo.po,,eo,,esperanto,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,50,298,298,0,0,0,0,50,298,en_gb.po,,en,gb,english,,united kingdom

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,126,888,887,0,0,0,0,126,888,en_ca.po,,en,ca,english,,canada

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,99,556,556,12,82,0,0,111,638,en@shaw.po,shaw,en,,english,shavian,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,58,364,400,0,0,0,0,58,364,el.po,,el,,greek,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,130,899,348,0,0,0,0,130,899,dz.po,,dz,,dzongkha,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,58,364,366,0,0,0,0,58,364,de.po,,de,,german,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,58,364,343,0,0,0,0,58,364,da.po,,da,,danish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,104,569,623,0,0,0,0,104,569,cy.po,,cy,,welsh,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/csb.po,92,447,413,4,27,1,1,97,475,csb.po,,csb,,kashubian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,58,364,335,0,0,0,0,58,364,cs.po,,cs,,czech,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,110,563,503,0,0,0,0,110,563,crh.po,,crh,,crimean turkish,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,50,299,352,0,0,0,0,50,299,ca@valencia.po,valencia,ca,,catalan,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,58,364,416,0,0,0,0,58,364,ca.po,,ca,,catalan,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,60,327,328,0,0,0,0,60,327,bs.po,,bs,,bosnian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,112,668,732,1,7,0,0,113,675,br.po,,br,,breton,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,59,323,380,0,0,0,0,59,323,bn_in.po,,bn,in,bangla,,india

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,92,446,500,0,0,0,0,92,446,bn.po,,bn,,bangla,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,50,299,341,0,0,0,0,50,299,bg.po,,bg,,bulgarian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,108,533,461,0,0,6,181,114,714,be@latin.po,latin,be,,belarusian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,58,364,332,0,0,0,0,58,364,be.po,,be,,belarusian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,100,513,427,1,3,0,0,101,516,az.po,,az,,azerbaijani,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,111,711,791,1,6,1,5,113,722,ast.po,,ast,,asturian,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,59,323,376,0,0,0,0,59,323,as.po,,as,,assamese,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,58,256,217,0,0,1,67,59,323,ar.po,,ar,,arabic,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,59,319,368,0,0,0,0,59,319,an.po,,an,,aragonese,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,52,145,143,4,11,45,360,101,516,am.po,,am,,amharic,,

- gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,50,299,309,0,0,0,0,50,299,af.po,,af,,afrikaans,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,47,313,257,42,196,82,525,171,1034,zu.po,,zu,,zulu,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,371,2549,601,0,0,0,0,371,2549,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,429,2607,645,0,0,0,0,429,2607,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,384,2659,578,0,0,0,0,384,2659,zh_cn.po,,zh,cn,chinese,,china

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,47,313,251,42,196,82,525,171,1034,xh.po,,xh,,xhosa,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,6,18,27,36,94,129,922,171,1034,wa.po,,wa,,walloon,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,406,2416,2967,0,0,0,0,406,2416,vi.po,,vi,,vietnamese,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,416,2494,2142,0,0,0,0,416,2494,uk.po,,uk,,ukrainian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,575,3618,2937,0,0,8,87,583,3705,ug.po,,ug,,uyghur,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,371,2549,2191,0,0,0,0,371,2549,tr.po,,tr,,turkish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,572,3740,1059,0,0,0,0,572,3740,th.po,,th,,thai,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,162,401,448,0,0,439,3297,601,3698,tg.po,,tg,,tajik,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,429,2607,2181,0,0,0,0,429,2607,te.po,,te,,telugu,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,429,2607,2102,0,0,0,0,429,2607,ta.po,,ta,,tamil,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,371,2549,2440,0,0,0,0,371,2549,sv.po,,sv,,swedish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,370,2547,2480,0,0,0,0,370,2547,sr@latin.po,latin,sr,,serbian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,371,2549,2493,0,0,0,0,371,2549,sr.po,,sr,,serbian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,70,408,399,28,120,73,506,171,1034,sq.po,,sq,,albanian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,371,2549,2505,0,0,0,0,371,2549,sl.po,,sl,,slovenian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,349,2281,2116,3,28,32,350,384,2659,sk.po,,sk,,slovak,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,12,21,28,13,29,146,984,171,1034,si.po,,si,,sinhala,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,6,6,6,76,494,89,534,171,1034,rw.po,,rw,,kinyarwanda,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,336,2292,2064,0,0,0,0,336,2292,ru.po,,ru,,russian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,371,2549,2775,0,0,0,0,371,2549,ro.po,,ro,,romanian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,371,2549,2888,0,0,0,0,371,2549,pt_br.po,,pt,br,portuguese,,brazil

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,406,2416,2740,0,0,0,0,406,2416,pt.po,,pt,,portuguese,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,371,2549,2398,0,0,0,0,371,2549,pl.po,,pl,,polish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,429,2607,2927,0,0,0,0,429,2607,pa.po,,pa,,punjabi,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,429,2607,2456,0,0,0,0,429,2607,or.po,,or,,odia,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,406,2416,2783,0,0,0,0,406,2416,oc.po,,oc,,occitan,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,47,313,460,42,196,82,525,171,1034,nso.po,,nso,,northern sotho,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,252,1704,1657,0,0,3,18,255,1722,nn.po,,nn,,norwegian nynorsk,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,371,2549,2601,0,0,0,0,371,2549,nl.po,,nl,,dutch,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,207,967,919,100,528,77,1164,384,2659,ne.po,,ne,,nepali,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,54,123,98,0,0,191,1501,245,1624,nds.po,,nds,,low german,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,306,1600,1583,6,26,72,1033,384,2659,nb.po,,nb,,norwegian bokmål,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,37,207,187,49,218,85,609,171,1034,ms.po,,ms,,malay,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,429,2607,2318,0,0,0,0,429,2607,mr.po,,mr,,marathi,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,70,408,328,32,129,69,497,171,1034,mn.po,,mn,,mongolian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,290,1678,1295,35,257,69,981,394,2916,ml.po,,ml,,malayalam,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,551,3749,3960,0,0,0,0,551,3749,mk.po,,mk,,macedonian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,70,408,391,32,129,69,497,171,1034,mg.po,,mg,,malagasy,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,68,227,263,0,0,177,1397,245,1624,mai.po,,mai,,maithili,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,371,2549,2214,0,0,0,0,371,2549,lv.po,,lv,,latvian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,371,2549,2057,0,0,0,0,371,2549,lt.po,,lt,,lithuanian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,67,369,377,39,181,65,484,171,1034,ku.po,,ku,,kurdish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,371,2549,1979,0,0,0,0,371,2549,ko.po,,ko,,korean,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,429,2607,2205,0,0,0,0,429,2607,kn.po,,kn,,kannada,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,572,3740,1282,0,0,0,0,572,3740,km.po,,km,,khmer,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,286,1410,1288,0,0,85,1139,371,2549,kk.po,,kk,,kazakh,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,72,436,315,33,114,66,484,171,1034,ka.po,,ka,,georgian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,606,3729,962,0,0,0,0,606,3729,ja.po,,ja,,japanese,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,371,2549,2774,0,0,0,0,371,2549,it.po,,it,,italian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,288,1378,1404,0,0,83,1171,371,2549,is.po,,is,,icelandic,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,371,2549,2339,0,0,0,0,371,2549,id.po,,id,,indonesian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,371,2549,2131,0,0,0,0,371,2549,hu.po,,hu,,hungarian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,371,2549,2378,0,0,0,0,371,2549,hr.po,,hr,,croatian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,429,2607,2968,0,0,0,0,429,2607,hi.po,,hi,,hindi,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,384,2659,2562,0,0,0,0,384,2659,he.po,,he,,hebrew,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,405,2303,2321,0,0,0,0,405,2303,gu.po,,gu,,gujarati,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,371,2549,2943,0,0,0,0,371,2549,gl.po,,gl,,galician,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,272,1325,1944,0,0,112,1334,384,2659,gd.po,,gd,,scottish gaelic,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,129,366,434,0,0,117,1261,246,1627,ga.po,,ga,,irish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,371,2549,3148,0,0,0,0,371,2549,fur.po,,fur,,friulian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,371,2549,2957,0,0,0,0,371,2549,fr.po,,fr,,french,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,266,1345,1030,27,216,78,988,371,2549,fi.po,,fi,,finnish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,486,2647,3054,6,24,80,1261,572,3932,fa.po,,fa,,persian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,384,2659,2163,0,0,0,0,384,2659,eu.po,,eu,,basque,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,325,1913,1488,0,0,0,0,325,1913,et.po,,et,,estonian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,371,2549,2971,0,0,0,0,371,2549,es.po,,es,,spanish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,367,2501,2362,0,0,0,0,367,2501,eo.po,,eo,,esperanto,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,371,2549,2549,0,0,0,0,371,2549,en_gb.po,,en,gb,english,,united kingdom

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,62,398,400,33,127,76,509,171,1034,en_ca.po,,en,ca,english,,canada

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,254,1652,1652,26,307,0,0,280,1959,en@shaw.po,shaw,en,,english,shavian,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,371,2549,2850,0,0,0,0,371,2549,el.po,,el,,greek,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,73,441,176,35,130,63,463,171,1034,dz.po,,dz,,dzongkha,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,371,2549,2508,0,0,0,0,371,2549,de.po,,de,,german,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,371,2549,2416,0,0,0,0,371,2549,da.po,,da,,danish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,70,408,410,28,120,73,506,171,1034,cy.po,,cy,,welsh,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,371,2549,2400,0,0,0,0,371,2549,cs.po,,cs,,czech,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,579,3694,3076,0,0,0,0,579,3694,crh.po,,crh,,crimean turkish,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,384,2659,3121,0,0,0,0,384,2659,ca@valencia.po,valencia,ca,,catalan,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,384,2659,3124,0,0,0,0,384,2659,ca.po,,ca,,catalan,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,416,2494,2426,0,0,0,0,416,2494,bs.po,,bs,,bosnian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,65,129,160,6,20,172,1469,243,1618,br.po,,br,,breton,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,429,2607,2682,0,0,0,0,429,2607,bn_in.po,,bn,in,bangla,,india

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,288,1752,1844,0,0,0,0,288,1752,bn.po,,bn,,bangla,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,572,3740,3973,0,0,0,0,572,3740,bg.po,,bg,,bulgarian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,171,1034,845,0,0,0,0,171,1034,be@latin.po,latin,be,,belarusian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,371,2549,2164,0,0,0,0,371,2549,be.po,,be,,belarusian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,47,313,260,42,196,82,525,171,1034,az.po,,az,,azerbaijani,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,569,3892,4208,0,0,0,0,569,3892,ast.po,,ast,,asturian,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,429,2607,2511,0,0,0,0,429,2607,as.po,,as,,assamese,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,318,1683,1582,23,80,149,1381,490,3144,ar.po,,ar,,arabic,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,3,3,5,27,60,141,971,171,1034,am.po,,am,,amharic,,

- gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,102,509,496,22,85,66,486,190,1080,af.po,,af,,afrikaans,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,232,4113,3533,0,0,0,0,232,4113,sv.po,,sv,,swedish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,19,141,143,23,202,187,3745,229,4088,ro.po,,ro,,romanian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,232,4113,4276,0,0,0,0,232,4113,pt_br.po,,pt,br,portuguese,,brazil

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pt/pt.po,229,4089,4167,0,0,0,0,229,4089,pt.po,,pt,,portuguese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,232,4113,3200,0,0,0,0,232,4113,pl.po,,pl,,polish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,232,4113,2765,0,0,0,0,232,4113,ko.po,,ko,,korean,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,232,4113,3177,0,0,0,0,232,4113,hu.po,,hu,,hungarian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,232,4113,4370,0,0,0,0,232,4113,fr.po,,fr,,french,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,232,4113,4335,0,0,0,0,232,4113,es.po,,es,,spanish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,229,4089,4061,0,0,0,0,229,4089,el.po,,el,,greek,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,232,4113,3790,0,0,0,0,232,4113,de.po,,de,,german,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,232,4113,3526,0,0,0,0,232,4113,cs.po,,cs,,czech,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,304,1444,440,0,0,0,0,304,1444,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,292,1289,430,0,0,0,0,292,1289,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,304,1439,483,0,0,0,0,304,1439,zh_cn.po,,zh,cn,chinese,,china

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,298,1365,1969,0,0,0,0,298,1365,vi.po,,vi,,vietnamese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,301,1396,1287,0,0,0,0,301,1396,uk.po,,uk,,ukrainian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,308,1280,1149,0,0,0,0,308,1280,ug.po,,ug,,uyghur,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,304,1444,1264,0,0,0,0,304,1444,tr.po,,tr,,turkish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,298,1365,589,0,0,0,0,298,1365,th.po,,th,,thai,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,291,1285,1309,0,0,0,0,291,1285,tg.po,,tg,,tajik,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,292,1289,1161,0,0,0,0,292,1289,te.po,,te,,telugu,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,292,1289,1142,0,0,0,0,292,1289,ta.po,,ta,,tamil,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,304,1444,1286,0,0,0,0,304,1444,sv.po,,sv,,swedish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,304,1439,1487,0,0,0,0,304,1439,sr@latin.po,latin,sr,,serbian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,304,1444,1491,0,0,0,0,304,1444,sr.po,,sr,,serbian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,177,645,806,0,0,0,0,177,645,sq.po,,sq,,albanian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,304,1444,1480,0,0,0,0,304,1444,sl.po,,sl,,slovenian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,302,1440,1340,0,0,0,0,302,1440,sk.po,,sk,,slovak,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,131,258,310,0,0,93,581,224,839,si.po,,si,,sinhala,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,22,22,23,86,471,61,117,169,610,rw.po,,rw,,kinyarwanda,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,304,1444,1370,0,0,0,0,304,1444,ru.po,,ru,,russian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,304,1444,1667,0,0,0,0,304,1444,ro.po,,ro,,romanian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,304,1444,1829,0,0,0,0,304,1444,pt_br.po,,pt,br,portuguese,,brazil

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,301,1396,1747,0,0,0,0,301,1396,pt.po,,pt,,portuguese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,177,479,567,0,0,53,389,230,868,ps.po,,ps,,pashto,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,304,1444,1391,0,0,0,0,304,1444,pl.po,,pl,,polish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,304,1439,1538,0,0,0,0,304,1439,pa.po,,pa,,punjabi,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,308,1280,1294,0,0,0,0,308,1280,or.po,,or,,odia,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,301,1396,1891,0,0,0,0,301,1396,oc.po,,oc,,occitan,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,231,874,858,0,0,0,0,231,874,nn.po,,nn,,norwegian nynorsk,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,304,1444,1383,0,0,0,0,304,1444,nl.po,,nl,,dutch,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,313,1462,1357,0,0,0,0,313,1462,ne.po,,ne,,nepali,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,56,97,89,0,0,188,836,244,933,nds.po,,nds,,low german,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,314,1463,1489,0,0,0,0,314,1463,nb.po,,nb,,norwegian bokmål,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,143,502,487,0,0,0,0,143,502,ms.po,,ms,,malay,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,292,1289,1164,0,0,0,0,292,1289,mr.po,,mr,,marathi,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,142,498,452,0,0,0,0,142,498,mn.po,,mn,,mongolian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,305,1440,1233,0,0,0,0,305,1440,ml.po,,ml,,malayalam,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,275,1072,1236,0,0,0,0,275,1072,mk.po,,mk,,macedonian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,209,845,929,1,1,0,0,210,846,mg.po,,mg,,malagasy,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,175,577,664,0,0,69,356,244,933,mai.po,,mai,,maithili,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,304,1444,1291,0,0,0,0,304,1444,lv.po,,lv,,latvian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,304,1444,1355,0,0,0,0,304,1444,lt.po,,lt,,lithuanian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/li.po,116,388,377,20,67,7,47,143,502,li.po,,li,,limburgish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,308,1283,1139,0,0,0,0,308,1283,ky.po,,ky,,kyrgyz,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,87,154,172,0,0,90,491,177,645,ku.po,,ku,,kurdish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,304,1444,1261,0,0,0,0,304,1444,ko.po,,ko,,korean,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,292,1289,1159,0,0,0,0,292,1289,kn.po,,kn,,kannada,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,294,1283,571,0,0,0,0,294,1283,km.po,,km,,khmer,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,304,1444,1280,0,0,0,0,304,1444,kk.po,,kk,,kazakh,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,224,839,738,0,0,0,0,224,839,ka.po,,ka,,georgian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,301,1437,469,0,0,3,7,304,1444,ja.po,,ja,,japanese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,304,1444,1560,0,0,0,0,304,1444,it.po,,it,,italian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,305,1440,1275,0,0,0,0,305,1440,is.po,,is,,icelandic,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,304,1444,1420,0,0,0,0,304,1444,id.po,,id,,indonesian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,304,1444,1336,0,0,0,0,304,1444,hu.po,,hu,,hungarian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,302,1440,1400,0,0,0,0,302,1440,hr.po,,hr,,croatian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,292,1289,1417,0,0,0,0,292,1289,hi.po,,hi,,hindi,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,298,1365,1323,0,0,0,0,298,1365,he.po,,he,,hebrew,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,308,1280,1348,0,0,0,0,308,1280,gu.po,,gu,,gujarati,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,304,1444,1852,0,0,0,0,304,1444,gl.po,,gl,,galician,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,313,1462,2024,0,0,0,0,313,1462,gd.po,,gd,,scottish gaelic,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,158,294,370,3,9,130,900,291,1203,ga.po,,ga,,irish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,304,1444,1699,0,0,0,0,304,1444,fur.po,,fur,,friulian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,304,1444,1972,0,0,0,0,304,1444,fr.po,,fr,,french,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,304,1444,1034,0,0,0,0,304,1444,fi.po,,fi,,finnish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,313,1462,1704,0,0,0,0,313,1462,fa.po,,fa,,persian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,304,1444,1259,0,0,0,0,304,1444,eu.po,,eu,,basque,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,292,1289,1018,0,0,0,0,292,1289,et.po,,et,,estonian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,304,1444,1905,0,0,0,0,304,1444,es.po,,es,,spanish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,303,1407,1194,0,0,0,0,303,1407,eo.po,,eo,,esperanto,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,304,1439,1462,0,0,0,0,304,1439,en_gb.po,,en,gb,english,,united kingdom

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,177,645,644,0,0,0,0,177,645,en_ca.po,,en,ca,english,,canada

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,210,727,728,34,206,0,0,244,933,en@shaw.po,shaw,en,,english,shavian,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,304,1444,1519,0,0,0,0,304,1444,el.po,,el,,greek,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,230,868,501,0,0,0,0,230,868,dz.po,,dz,,dzongkha,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,304,1444,1398,0,0,0,0,304,1444,de.po,,de,,german,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,302,1440,1275,0,0,0,0,302,1440,da.po,,da,,danish,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,177,645,711,0,0,0,0,177,645,cy.po,,cy,,welsh,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,304,1444,1381,0,0,0,0,304,1444,cs.po,,cs,,czech,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,313,1462,1833,0,0,0,0,313,1462,ca@valencia.po,valencia,ca,,catalan,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,303,1441,1813,0,0,1,1,304,1442,ca.po,,ca,,catalan,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,292,1289,1244,0,0,0,0,292,1289,bs.po,,bs,,bosnian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,292,1289,1317,0,0,0,0,292,1289,bn_in.po,,bn,in,bangla,,india

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,244,933,1055,0,0,0,0,244,933,bn.po,,bn,,bangla,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,313,1462,1581,0,0,0,0,313,1462,bg.po,,bg,,bulgarian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,184,545,507,0,0,54,368,238,913,be@latin.po,latin,be,,belarusian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,313,1462,1424,0,0,0,0,313,1462,be.po,,be,,belarusian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,143,502,449,0,0,0,0,143,502,az.po,,az,,azerbaijani,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,238,913,1131,0,0,1,5,239,918,ast.po,,ast,,asturian,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,292,1289,1253,0,0,0,0,292,1289,as.po,,as,,assamese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,304,1439,1575,0,0,0,0,304,1439,ar.po,,ar,,arabic,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,289,1276,1596,0,0,0,0,289,1276,an.po,,an,,aragonese,,

- gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,43,74,90,20,33,80,395,143,502,am.po,,am,,amharic,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,538,5361,4892,0,0,0,0,538,5361,sv.po,,sv,,swedish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,517,5232,4551,0,0,0,0,517,5232,ru.po,,ru,,russian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,538,5361,4355,0,0,0,0,538,5361,pl.po,,pl,,polish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ca/ca.po,513,5247,5593,0,0,0,0,513,5247,ca.po,,ca,,catalan,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,546,5468,6141,0,0,0,0,546,5468,fr.po,,fr,,french,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,513,5247,5419,0,0,0,0,513,5247,el.po,,el,,greek,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,225,1149,1244,23,108,254,3755,502,5012,gl.po,,gl,,galician,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,546,5468,5967,0,0,0,0,546,5468,pt_br.po,,pt,br,portuguese,,brazil

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,546,5468,5453,0,0,0,0,546,5468,de.po,,de,,german,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,546,5468,5010,0,0,0,0,546,5468,cs.po,,cs,,czech,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ro/ro.po,136,528,532,0,0,410,4940,546,5468,ro.po,,ro,,romanian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,546,5468,6142,0,0,0,0,546,5468,es.po,,es,,spanish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,546,5468,4047,0,0,0,0,546,5468,ko.po,,ko,,korean,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/fi/fi.po,481,4718,3149,16,225,20,289,517,5232,fi.po,,fi,,finnish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,538,5361,4551,0,0,0,0,538,5361,hu.po,,hu,,hungarian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,487,4145,4065,0,0,0,0,487,4145,mk.po,,mk,,macedonian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,488,2499,2977,0,0,0,0,488,2499,fur.po,,fur,,friulian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,493,4548,4706,0,0,0,0,493,4548,sq.po,,sq,,albanian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,55,69,71,395,4210,63,127,513,4406,rw.po,,rw,,kinyarwanda,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,339,3183,3289,65,365,38,355,442,3903,cy.po,,cy,,welsh,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/br.po,216,639,702,1,12,245,3296,462,3947,br.po,,br,,breton,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,304,1032,1108,20,102,94,1015,418,2149,ga.po,,ga,,irish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,488,2499,2363,0,0,0,0,488,2499,sl.po,,sl,,slovenian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,428,1785,1616,37,495,23,219,488,2499,ar.po,,ar,,arabic,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,488,2499,2353,0,0,0,0,488,2499,id.po,,id,,indonesian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,488,2499,2414,0,0,0,0,488,2499,nl.po,,nl,,dutch,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,342,3098,1233,84,548,61,499,487,4145,dz.po,,dz,,dzongkha,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,468,2085,1549,10,296,10,118,488,2499,fi.po,,fi,,finnish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,487,2554,2779,0,0,0,0,487,2554,bg.po,,bg,,bulgarian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,488,2499,2973,0,0,0,0,488,2499,gl.po,,gl,,galician,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,470,3947,4839,0,0,47,659,517,4606,wa.po,,wa,,walloon,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,487,2481,2050,0,0,1,18,488,2499,eu.po,,eu,,basque,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,488,2499,2319,0,0,0,0,488,2499,hr.po,,hr,,croatian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,486,2503,3017,0,0,0,0,486,2503,oc.po,,oc,,occitan,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,184,389,342,311,4177,20,36,515,4602,ka.po,,ka,,georgian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,488,2499,2940,0,0,0,0,488,2499,pt_br.po,,pt,br,portuguese,,brazil

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,487,2554,3241,0,0,0,0,487,2554,gd.po,,gd,,scottish gaelic,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,488,2499,2354,0,0,0,0,488,2499,sr.po,,sr,,serbian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,487,2554,3049,0,0,0,0,487,2554,ca@valencia.po,valencia,ca,,catalan,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,488,2499,2270,0,0,0,0,488,2499,ru.po,,ru,,russian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,433,2308,1973,0,0,0,0,433,2308,ug.po,,ug,,uyghur,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,488,2499,2205,0,0,0,0,488,2499,tr.po,,tr,,turkish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,442,2209,2362,0,0,0,0,442,2209,bn_in.po,,bn,in,bangla,,india

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,402,1638,1541,0,0,85,916,487,2554,is.po,,is,,icelandic,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,488,2499,2092,0,0,0,0,488,2499,lv.po,,lv,,latvian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,455,2265,1863,18,129,10,91,483,2485,ml.po,,ml,,malayalam,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,482,2416,2233,0,0,6,83,488,2499,eo.po,,eo,,esperanto,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,488,2499,2663,0,0,0,0,488,2499,ro.po,,ro,,romanian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,474,3480,2757,2,45,45,897,521,4422,mn.po,,mn,,mongolian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,496,4218,4219,0,0,0,0,496,4218,en@shaw.po,shaw,en,,english,shavian,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,442,2209,1883,0,0,0,0,442,2209,ta.po,,ta,,tamil,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,477,2511,2497,0,0,0,0,477,2511,he.po,,he,,hebrew,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,473,2336,2504,1,7,12,160,486,2503,pa.po,,pa,,punjabi,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,459,3933,3589,3,14,0,0,462,3947,nn.po,,nn,,norwegian nynorsk,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,442,2209,1841,0,0,0,0,442,2209,te.po,,te,,telugu,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,488,2499,2662,0,0,0,0,488,2499,el.po,,el,,greek,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,419,2157,1695,0,0,0,0,419,2157,et.po,,et,,estonian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,511,4558,4454,12,60,0,0,523,4618,mg.po,,mg,,malagasy,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,440,2218,2087,0,0,0,0,440,2218,bs.po,,bs,,bosnian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,348,3013,3089,0,0,43,383,391,3396,mai.po,,mai,,maithili,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,180,350,372,29,84,308,3978,517,4412,am.po,,am,,amharic,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,488,2499,3048,0,0,0,0,488,2499,es.po,,es,,spanish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,423,2045,2348,0,0,19,164,442,2209,hi.po,,hi,,hindi,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,486,2503,727,0,0,0,0,486,2503,zh_cn.po,,zh,cn,chinese,,china

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,488,2499,2216,0,0,0,0,488,2499,kk.po,,kk,,kazakh,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,372,1619,1730,1,6,145,2981,518,4606,ku.po,,ku,,kurdish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,488,2499,2839,0,0,0,0,488,2499,it.po,,it,,italian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,430,2248,720,0,0,0,0,430,2248,km.po,,km,,khmer,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,483,4141,4096,0,0,0,0,483,4141,bn.po,,bn,,bangla,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,476,2370,792,0,0,12,129,488,2499,ja.po,,ja,,japanese,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,471,2341,2214,8,73,7,89,486,2503,nb.po,,nb,,norwegian bokmål,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,488,2499,2991,0,0,0,0,488,2499,ca.po,,ca,,catalan,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,488,2499,707,0,0,0,0,488,2499,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,493,2543,2570,0,0,0,0,493,2543,en_gb.po,,en,gb,english,,united kingdom

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,437,2182,2144,0,0,0,0,437,2182,tg.po,,tg,,tajik,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,477,2511,805,0,0,0,0,477,2511,th.po,,th,,thai,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,487,4145,4425,0,0,0,0,487,4145,ast.po,,ast,,asturian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,430,3842,3156,0,0,2,45,432,3887,be@latin.po,latin,be,,belarusian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,511,4597,4609,0,0,0,0,511,4597,en_ca.po,,en,ca,english,,canada

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,273,806,977,1,3,247,3803,521,4612,si.po,,si,,sinhala,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,488,2499,2344,0,0,0,0,488,2499,cs.po,,cs,,czech,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,492,2542,2395,0,0,0,0,492,2542,sr@latin.po,latin,sr,,serbian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,439,2204,617,3,5,0,0,442,2209,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,488,2499,2166,0,0,0,0,488,2499,hu.po,,hu,,hungarian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,327,1321,1211,77,475,38,413,442,2209,ne.po,,ne,,nepali,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,440,2218,2646,0,0,0,0,440,2218,an.po,,an,,aragonese,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,427,2073,2232,9,93,6,43,442,2209,gu.po,,gu,,gujarati,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,442,2209,2268,0,0,0,0,442,2209,as.po,,as,,assamese,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,477,2511,2161,0,0,0,0,477,2511,uk.po,,uk,,ukrainian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,518,4397,3646,2,7,1,18,521,4422,xh.po,,xh,,xhosa,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,233,1064,1029,8,29,211,2835,452,3928,nds.po,,nds,,low german,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,508,2642,2427,0,0,0,0,508,2642,pl.po,,pl,,polish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hy.po,117,261,236,47,170,273,3463,437,3894,hy.po,,hy,,armenian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,488,2499,2283,0,0,0,0,488,2499,da.po,,da,,danish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,487,2554,2813,0,0,0,0,487,2554,fa.po,,fa,,persian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,488,2499,2098,0,0,0,0,488,2499,lt.po,,lt,,lithuanian,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,259,899,1024,0,0,131,2495,390,3394,ps.po,,ps,,pashto,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,453,2346,2188,25,98,14,98,492,2542,sk.po,,sk,,slovak,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,488,2499,3415,0,0,0,0,488,2499,vi.po,,vi,,vietnamese,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,442,2209,2040,0,0,0,0,442,2209,mr.po,,mr,,marathi,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,484,3691,3219,11,68,26,663,521,4422,ms.po,,ms,,malay,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,488,2499,3010,0,0,0,0,488,2499,fr.po,,fr,,french,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,488,2499,2494,0,0,0,0,488,2499,de.po,,de,,german,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,442,2209,1934,0,0,0,0,442,2209,kn.po,,kn,,kannada,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,477,2511,2819,0,0,0,0,477,2511,pt.po,,pt,,portuguese,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,488,2499,2064,0,0,0,0,488,2499,ko.po,,ko,,korean,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,511,4360,3358,9,44,1,18,521,4422,az.po,,az,,azerbaijani,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,434,2309,2400,0,0,0,0,434,2309,or.po,,or,,odia,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,488,2499,2332,0,0,0,0,488,2499,sv.po,,sv,,swedish,,

- gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,488,2499,2264,0,0,0,0,488,2499,be.po,,be,,belarusian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ln.po,4,10,13,0,0,0,0,4,10,ln.po,,ln,,lingala,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gd.po,6,15,18,0,0,0,0,6,15,gd.po,,gd,,scottish gaelic,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/it.po,6,15,16,0,0,0,0,6,15,it.po,,it,,italian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/eu.po,6,15,14,0,0,0,0,6,15,eu.po,,eu,,basque,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hi.po,5,12,11,0,0,0,0,5,12,hi.po,,hi,,hindi,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hr.po,6,15,13,0,0,0,0,6,15,hr.po,,hr,,croatian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ga.po,5,12,10,0,0,0,0,5,12,ga.po,,ga,,irish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/en_ca.po,9,24,24,0,0,0,0,9,24,en_ca.po,,en,ca,english,,canada

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/tr.po,6,15,15,0,0,0,0,6,15,tr.po,,tr,,turkish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/lt.po,6,15,11,0,0,0,0,6,15,lt.po,,lt,,lithuanian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/da.po,6,15,16,0,0,0,0,6,15,da.po,,da,,danish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/km.po,9,24,9,0,0,0,0,9,24,km.po,,km,,khmer,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/as.po,9,24,23,0,0,0,0,9,24,as.po,,as,,assamese,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fa.po,6,15,15,0,0,0,0,6,15,fa.po,,fa,,persian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/en_gb.po,9,24,24,0,0,0,0,9,24,en_gb.po,,en,gb,english,,united kingdom

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/kn.po,5,12,14,0,0,0,0,5,12,kn.po,,kn,,kannada,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ko.po,6,15,11,0,0,0,0,6,15,ko.po,,ko,,korean,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/id.po,6,15,14,0,0,0,0,6,15,id.po,,id,,indonesian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sv.po,6,15,16,0,0,0,0,6,15,sv.po,,sv,,swedish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/is.po,6,15,16,0,0,0,0,6,15,is.po,,is,,icelandic,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ne.po,6,15,13,0,0,0,0,6,15,ne.po,,ne,,nepali,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/kk.po,6,15,13,0,0,0,0,6,15,kk.po,,kk,,kazakh,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,6,15,15,0,0,0,0,6,15,ca@valencia.po,valencia,ca,,catalan,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/cs.po,6,15,15,0,0,0,0,6,15,cs.po,,cs,,czech,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/af.po,6,15,15,0,0,0,0,6,15,af.po,,af,,afrikaans,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/th.po,9,24,9,0,0,0,0,9,24,th.po,,th,,thai,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/tg.po,5,12,12,0,0,0,0,5,12,tg.po,,tg,,tajik,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/vi.po,9,24,31,0,0,0,0,9,24,vi.po,,vi,,vietnamese,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/an.po,9,24,26,0,0,0,0,9,24,an.po,,an,,aragonese,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_cn.po,6,15,6,0,0,0,0,6,15,zh_cn.po,,zh,cn,chinese,,china

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ug.po,9,24,23,0,0,0,0,9,24,ug.po,,ug,,uyghur,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hu.po,6,15,14,0,0,0,0,6,15,hu.po,,hu,,hungarian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sr.po,6,15,14,0,0,0,0,6,15,sr.po,,sr,,serbian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gu.po,9,24,24,0,0,0,0,9,24,gu.po,,gu,,gujarati,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fi.po,6,15,13,0,0,0,0,6,15,fi.po,,fi,,finnish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bn_in.po,5,12,11,0,0,0,0,5,12,bn_in.po,,bn,in,bangla,,india

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pt.po,6,15,14,0,0,0,0,6,15,pt.po,,pt,,portuguese,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pt_br.po,6,15,14,0,0,0,0,6,15,pt_br.po,,pt,br,portuguese,,brazil

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/eo.po,6,15,14,0,0,0,0,6,15,eo.po,,eo,,esperanto,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/lv.po,6,15,13,0,0,0,0,6,15,lv.po,,lv,,latvian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/es.po,6,15,15,0,0,0,0,6,15,es.po,,es,,spanish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,9,24,23,0,0,0,0,9,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pa.po,6,15,15,0,0,0,0,6,15,pa.po,,pa,,punjabi,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/el.po,6,15,14,0,0,0,0,6,15,el.po,,el,,greek,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_tw.po,6,15,6,0,0,0,0,6,15,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/de.po,6,15,17,0,0,0,0,6,15,de.po,,de,,german,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sl.po,6,15,17,0,0,0,0,6,15,sl.po,,sl,,slovenian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ta.po,9,24,23,0,0,0,0,9,24,ta.po,,ta,,tamil,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/te.po,9,24,23,0,0,0,0,9,24,te.po,,te,,telugu,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sk.po,6,15,15,0,0,0,0,6,15,sk.po,,sk,,slovak,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ro.po,9,24,27,0,0,0,0,9,24,ro.po,,ro,,romanian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/uk.po,6,15,14,0,0,0,0,6,15,uk.po,,uk,,ukrainian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/mr.po,9,24,23,0,0,0,0,9,24,mr.po,,mr,,marathi,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/nb.po,6,15,16,0,0,0,0,6,15,nb.po,,nb,,norwegian bokmål,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gl.po,6,15,15,0,0,0,0,6,15,gl.po,,gl,,galician,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/nl.po,6,15,18,0,0,0,0,6,15,nl.po,,nl,,dutch,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ja.po,9,24,9,0,0,0,0,9,24,ja.po,,ja,,japanese,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fur.po,6,15,16,0,0,0,0,6,15,fur.po,,fur,,friulian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bg.po,6,15,15,0,0,0,0,6,15,bg.po,,bg,,bulgarian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/be.po,6,15,15,0,0,0,0,6,15,be.po,,be,,belarusian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ru.po,6,15,12,0,0,0,0,6,15,ru.po,,ru,,russian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/et.po,9,24,17,0,0,0,0,9,24,et.po,,et,,estonian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pl.po,6,15,17,0,0,0,0,6,15,pl.po,,pl,,polish,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ml.po,5,12,11,0,0,0,0,5,12,ml.po,,ml,,malayalam,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fy.po,9,24,18,0,0,0,0,9,24,fy.po,,fy,,western frisian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ar.po,9,24,23,0,0,0,0,9,24,ar.po,,ar,,arabic,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/oc.po,4,10,12,0,0,0,0,4,10,oc.po,,oc,,occitan,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fr.po,6,15,20,0,0,0,0,6,15,fr.po,,fr,,french,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bs.po,4,10,9,0,0,0,0,4,10,bs.po,,bs,,bosnian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_hk.po,9,24,9,0,0,0,0,9,24,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sr@latin.po,6,15,14,0,0,0,0,6,15,sr@latin.po,latin,sr,,serbian,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ca.po,6,15,15,0,0,0,0,6,15,ca.po,,ca,,catalan,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/or.po,9,24,24,0,0,0,0,9,24,or.po,,or,,odia,,

- gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/he.po,6,15,13,0,0,0,0,6,15,he.po,,he,,hebrew,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/de/de.po,3202,56807,54927,0,0,0,0,3202,56807,de.po,,de,,german,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/kn/kn.po,350,897,882,0,0,2971,59356,3321,60253,kn.po,,kn,,kannada,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fr/fr.po,2704,47231,50188,321,7417,79,1325,3104,55973,fr.po,,fr,,french,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/as/as.po,2407,30614,27469,319,4795,495,23177,3221,58586,as.po,,as,,assamese,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hu/hu.po,3201,56823,45700,0,0,0,0,3201,56823,hu.po,,hu,,hungarian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/it/it.po,2088,36623,36404,480,7593,747,15915,3315,60131,it.po,,it,,italian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ta/ta.po,2795,50123,38336,275,5971,80,1791,3150,57885,ta.po,,ta,,tamil,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ro/ro.po,169,1855,1837,0,0,3035,54970,3204,56825,ro.po,,ro,,romanian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/vi/vi.po,2237,36788,39571,0,0,689,20176,2926,56964,vi.po,,vi,,vietnamese,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sv/sv.po,3201,56823,52768,0,0,0,0,3201,56823,sv.po,,sv,,swedish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ru/ru.po,2884,50476,42172,247,6960,40,732,3171,58168,ru.po,,ru,,russian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/he/he.po,4,8,11,0,0,3133,56398,3137,56406,he.po,,he,,hebrew,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt/pt.po,3115,55812,57231,19,532,6,81,3140,56425,pt.po,,pt,,portuguese,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/te/te.po,939,14118,10266,197,2937,2012,40704,3148,57759,te.po,,te,,telugu,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pl/pl.po,3201,56823,45248,0,0,0,0,3201,56823,pl.po,,pl,,polish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lv/lv.po,3191,57078,44920,5,20,0,0,3196,57098,lv.po,,lv,,latvian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/id/id.po,1798,20821,18532,402,6368,966,29651,3166,56840,id.po,,id,,indonesian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pa/pa.po,192,532,564,149,863,1900,44621,2241,46016,pa.po,,pa,,punjabi,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fi/fi.po,2052,28273,19055,649,15400,503,13152,3204,56825,fi.po,,fi,,finnish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/es/es.po,3075,54687,57662,111,1699,18,439,3204,56825,es.po,,es,,spanish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr@latin/sr@latin.po,3168,56855,51793,0,0,0,0,3168,56855,sr@latin.po,latin,sr,,serbian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_cn/zh_cn.po,2794,51114,5179,375,5958,147,3041,3316,60113,zh_cn.po,,zh,cn,chinese,,china

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/nl/nl.po,3168,56853,57429,0,0,0,0,3168,56853,nl.po,,nl,,dutch,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gu/gu.po,2515,39284,39210,412,9639,223,8947,3150,57870,gu.po,,gu,,gujarati,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ja/ja.po,1739,27509,3394,729,15161,636,13312,3104,55982,ja.po,,ja,,japanese,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sl/sl.po,2939,52634,44589,190,4255,70,1761,3199,58650,sl.po,,sl,,slovenian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr/sr.po,3168,56855,51793,0,0,0,0,3168,56855,sr.po,,sr,,serbian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hr/hr.po,307,2687,2329,18,30,2847,54227,3172,56944,hr.po,,hr,,croatian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/el/el.po,3111,56124,56974,0,0,0,0,3111,56124,el.po,,el,,greek,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hi/hi.po,164,3074,3661,1,19,2114,43704,2279,46797,hi.po,,hi,,hindi,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt_br/pt_br.po,3201,56823,59860,0,0,0,0,3201,56823,pt_br.po,,pt,br,portuguese,,brazil

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/cs/cs.po,3201,56823,49138,0,0,0,0,3201,56823,cs.po,,cs,,czech,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/da/da.po,1445,11583,10661,0,0,1756,45240,3201,56823,da.po,,da,,danish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gl/gl.po,2431,35551,36371,641,18198,132,3076,3204,56825,gl.po,,gl,,galician,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ca/ca.po,3047,54705,57389,121,1537,34,565,3202,56807,ca.po,,ca,,catalan,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/mr/mr.po,2559,44257,33981,563,12746,23,656,3145,57659,mr.po,,mr,,marathi,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/de/de.po,542,7433,7064,0,0,0,0,542,7433,de.po,,de,,german,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/hu/hu.po,547,7497,6920,0,0,0,0,547,7497,hu.po,,hu,,hungarian,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/sv/sv.po,661,9090,8055,0,0,0,0,661,9090,sv.po,,sv,,swedish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/es/es.po,593,7515,8331,15,527,53,1048,661,9090,es.po,,es,,spanish,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/pt_br/pt_br.po,542,7433,8003,0,0,0,0,542,7433,pt_br.po,,pt,br,portuguese,,brazil

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/cs/cs.po,542,7433,6580,0,0,0,0,542,7433,cs.po,,cs,,czech,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/ko/ko.po,661,9090,6736,0,0,0,0,661,9090,ko.po,,ko,,korean,,

- gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/gl/gl.po,238,1590,1823,19,118,285,5725,542,7433,gl.po,,gl,,galician,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,15,70,70,0,0,0,0,15,70,en_ca.po,,en,ca,english,,canada

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,52,57,0,0,0,0,11,52,pt_br.po,,pt,br,portuguese,,brazil

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ja.po,10,51,14,0,0,0,0,10,51,ja.po,,ja,,japanese,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/af.po,10,52,54,0,0,0,0,10,52,af.po,,af,,afrikaans,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/da.po,11,52,44,0,0,0,0,11,52,da.po,,da,,danish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nl.po,11,52,60,0,0,0,0,11,52,nl.po,,nl,,dutch,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mk.po,13,61,62,0,0,0,0,13,61,mk.po,,mk,,macedonian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/he.po,10,52,49,0,0,0,0,10,52,he.po,,he,,hebrew,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/rw.po,2,2,4,11,59,0,0,13,61,rw.po,,rw,,kinyarwanda,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sq.po,13,61,77,0,0,0,0,13,61,sq.po,,sq,,albanian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/tr.po,11,52,51,0,0,0,0,11,52,tr.po,,tr,,turkish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mr.po,29,160,160,0,0,0,0,29,160,mr.po,,mr,,marathi,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,10,52,17,0,0,0,0,10,52,zh_cn.po,,zh,cn,chinese,,china

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/de.po,11,52,56,0,0,0,0,11,52,de.po,,de,,german,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/be.po,10,52,60,0,0,0,0,10,52,be.po,,be,,belarusian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/it.po,11,52,57,0,0,0,0,11,52,it.po,,it,,italian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,51,316,419,0,0,0,0,51,316,bn_in.po,,bn,in,bangla,,india

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/te.po,29,160,126,0,0,0,0,29,160,te.po,,te,,telugu,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/vi.po,11,52,87,0,0,0,0,11,52,vi.po,,vi,,vietnamese,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/cs.po,11,52,50,0,0,0,0,11,52,cs.po,,cs,,czech,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/br.po,51,326,379,0,0,0,0,51,326,br.po,,br,,breton,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ast.po,51,326,353,0,0,0,0,51,326,ast.po,,ast,,asturian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/kk.po,10,51,51,0,0,0,0,10,51,kk.po,,kk,,kazakh,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/eo.po,10,52,51,0,0,0,0,10,52,eo.po,,eo,,esperanto,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hr.po,10,52,51,0,0,0,0,10,52,hr.po,,hr,,croatian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bg.po,10,52,61,0,0,0,0,10,52,bg.po,,bg,,bulgarian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bn.po,51,326,374,0,0,0,0,51,326,bn.po,,bn,,bangla,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mai.po,6,8,11,0,0,40,280,46,288,mai.po,,mai,,maithili,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hi.po,29,160,186,0,0,0,0,29,160,hi.po,,hi,,hindi,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/oc.po,10,52,64,0,0,0,0,10,52,oc.po,,oc,,occitan,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sr.po,11,52,59,0,0,0,0,11,52,sr.po,,sr,,serbian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pt.po,10,52,56,0,0,0,0,10,52,pt.po,,pt,,portuguese,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bs.po,26,136,134,0,0,0,0,26,136,bs.po,,bs,,bosnian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ko.po,11,52,42,0,0,0,0,11,52,ko.po,,ko,,korean,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ro.po,11,52,59,0,0,0,0,11,52,ro.po,,ro,,romanian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/is.po,10,52,50,0,0,0,0,10,52,is.po,,is,,icelandic,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pl.po,11,52,53,0,0,0,0,11,52,pl.po,,pl,,polish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ne.po,10,52,47,0,0,0,0,10,52,ne.po,,ne,,nepali,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/km.po,30,184,67,0,0,0,0,30,184,km.po,,km,,khmer,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/th.po,51,316,89,0,0,0,0,51,316,th.po,,th,,thai,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ga.po,46,288,361,0,0,0,0,46,288,ga.po,,ga,,irish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ta.po,29,160,139,0,0,0,0,29,160,ta.po,,ta,,tamil,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,10,51,13,0,0,0,0,10,51,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/lv.po,10,51,48,0,0,0,0,10,51,lv.po,,lv,,latvian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sk.po,10,52,51,0,0,0,0,10,52,sk.po,,sk,,slovak,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/or.po,29,160,169,0,0,0,0,29,160,or.po,,or,,odia,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/eu.po,10,52,47,0,0,0,0,10,52,eu.po,,eu,,basque,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ar.po,34,247,214,0,0,0,0,34,247,ar.po,,ar,,arabic,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/tg.po,26,136,136,0,0,0,0,26,136,tg.po,,tg,,tajik,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fur.po,10,51,54,0,0,0,0,10,51,fur.po,,fur,,friulian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/lt.po,11,52,44,0,0,0,0,11,52,lt.po,,lt,,lithuanian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fi.po,11,52,48,0,0,0,0,11,52,fi.po,,fi,,finnish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ca.po,10,52,65,0,0,0,0,10,52,ca.po,,ca,,catalan,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,10,52,52,0,0,0,0,10,52,en_gb.po,,en,gb,english,,united kingdom

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fa.po,10,52,58,0,0,0,0,10,52,fa.po,,fa,,persian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,10,52,65,0,0,0,0,10,52,ca@valencia.po,valencia,ca,,catalan,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/id.po,11,52,57,0,0,0,0,11,52,id.po,,id,,indonesian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/kn.po,29,160,126,0,0,0,0,29,160,kn.po,,kn,,kannada,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,51,326,326,0,0,0,0,51,326,en@shaw.po,shaw,en,,english,shavian,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ml.po,10,52,44,0,0,0,0,10,52,ml.po,,ml,,malayalam,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,10,52,59,0,0,0,0,10,52,sr@latin.po,latin,sr,,serbian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gd.po,10,52,63,0,0,0,0,10,52,gd.po,,gd,,scottish gaelic,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/el.po,10,51,62,0,0,0,0,10,51,el.po,,el,,greek,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,29,160,38,0,0,0,0,29,160,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sv.po,11,52,52,0,0,0,0,11,52,sv.po,,sv,,swedish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/uk.po,10,52,45,0,0,0,0,10,52,uk.po,,uk,,ukrainian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/et.po,10,52,55,0,0,0,0,10,52,et.po,,et,,estonian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nb.po,10,52,49,0,0,0,0,10,52,nb.po,,nb,,norwegian bokmål,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/an.po,29,160,187,0,0,0,0,29,160,an.po,,an,,aragonese,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gu.po,10,52,56,0,0,0,0,10,52,gu.po,,gu,,gujarati,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ln.po,10,52,57,0,0,0,0,10,52,ln.po,,ln,,lingala,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/es.po,11,52,62,0,0,0,0,11,52,es.po,,es,,spanish,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pa.po,10,52,57,0,0,0,0,10,52,pa.po,,pa,,punjabi,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/as.po,29,160,186,0,0,0,0,29,160,as.po,,as,,assamese,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gl.po,10,51,58,0,0,0,0,10,51,gl.po,,gl,,galician,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ug.po,29,224,183,0,0,0,0,29,224,ug.po,,ug,,uyghur,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nn.po,51,326,320,0,0,0,0,51,326,nn.po,,nn,,norwegian nynorsk,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fr.po,11,52,69,0,0,0,0,11,52,fr.po,,fr,,french,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hu.po,11,52,48,0,0,0,0,11,52,hu.po,,hu,,hungarian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sl.po,11,52,55,0,0,0,0,11,52,sl.po,,sl,,slovenian,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/dz.po,16,75,33,0,0,0,0,16,75,dz.po,,dz,,dzongkha,,

- gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ru.po,11,52,55,0,0,0,0,11,52,ru.po,,ru,,russian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/id.po,68,256,227,0,0,0,0,68,256,id.po,,id,,indonesian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pa.po,68,256,275,0,0,0,0,68,256,pa.po,,pa,,punjabi,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/te.po,68,256,208,0,0,0,0,68,256,te.po,,te,,telugu,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/oc.po,68,256,287,0,0,0,0,68,256,oc.po,,oc,,occitan,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/af.po,63,229,232,2,7,1,10,66,246,af.po,,af,,afrikaans,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sk.po,68,256,221,0,0,0,0,68,256,sk.po,,sk,,slovak,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bn.po,10,11,13,2,2,11,13,23,26,bn.po,,bn,,bangla,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hi.po,68,256,267,0,0,0,0,68,256,hi.po,,hi,,hindi,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/en_gb.po,68,256,256,0,0,0,0,68,256,en_gb.po,,en,gb,english,,united kingdom

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ka.po,10,11,11,2,2,11,13,23,26,ka.po,,ka,,georgian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ga.po,36,46,50,1,4,31,206,68,256,ga.po,,ga,,irish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ta.po,68,256,204,0,0,0,0,68,256,ta.po,,ta,,tamil,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/vi.po,68,256,299,0,0,0,0,68,256,vi.po,,vi,,vietnamese,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/tr.po,68,256,214,0,0,0,0,68,256,tr.po,,tr,,turkish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ca.po,68,256,292,0,0,0,0,68,256,ca.po,,ca,,catalan,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/th.po,68,256,72,0,0,0,0,68,256,th.po,,th,,thai,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ro.po,68,256,250,0,0,0,0,68,256,ro.po,,ro,,romanian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/et.po,68,256,176,0,0,0,0,68,256,et.po,,et,,estonian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/kn.po,10,11,12,2,2,11,13,23,26,kn.po,,kn,,kannada,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/lt.po,68,256,209,0,0,0,0,68,256,lt.po,,lt,,lithuanian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/be@latin.po,10,11,11,2,2,11,13,23,26,be@latin.po,latin,be,,belarusian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ms.po,7,8,9,5,5,11,13,23,26,ms.po,,ms,,malay,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,68,256,292,0,0,0,0,68,256,ca@valencia.po,valencia,ca,,catalan,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/en@shaw.po,10,11,11,2,2,11,13,23,26,en@shaw.po,shaw,en,,english,shavian,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nn.po,10,11,11,2,2,11,13,23,26,nn.po,,nn,,norwegian nynorsk,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sr.po,68,256,208,0,0,0,0,68,256,sr.po,,sr,,serbian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/or.po,10,11,12,2,2,11,13,23,26,or.po,,or,,odia,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nl.po,68,256,237,0,0,0,0,68,256,nl.po,,nl,,dutch,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sr@latin.po,68,256,208,0,0,0,0,68,256,sr@latin.po,latin,sr,,serbian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ar.po,10,11,11,2,2,11,13,23,26,ar.po,,ar,,arabic,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/gl.po,68,256,292,0,0,0,0,68,256,gl.po,,gl,,galician,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/gu.po,10,11,14,2,2,11,13,23,26,gu.po,,gu,,gujarati,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mk.po,10,11,11,2,2,11,13,23,26,mk.po,,mk,,macedonian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sl.po,68,256,229,0,0,0,0,68,256,sl.po,,sl,,slovenian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/es.po,68,256,310,0,0,0,0,68,256,es.po,,es,,spanish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hu.po,68,256,190,0,0,0,0,68,256,hu.po,,hu,,hungarian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/lv.po,68,256,203,0,0,0,0,68,256,lv.po,,lv,,latvian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fr.po,68,256,293,0,0,0,0,68,256,fr.po,,fr,,french,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mr.po,10,11,11,2,2,11,13,23,26,mr.po,,mr,,marathi,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nb.po,68,256,219,0,0,0,0,68,256,nb.po,,nb,,norwegian bokmål,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ml.po,68,256,194,0,0,0,0,68,256,ml.po,,ml,,malayalam,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ug.po,17,28,30,0,0,51,228,68,256,ug.po,,ug,,uyghur,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bs.po,68,256,227,0,0,0,0,68,256,bs.po,,bs,,bosnian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/as.po,68,256,238,0,0,0,0,68,256,as.po,,as,,assamese,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_cn.po,68,256,68,0,0,0,0,68,256,zh_cn.po,,zh,cn,chinese,,china

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bg.po,68,256,235,0,0,0,0,68,256,bg.po,,bg,,bulgarian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ast.po,10,11,13,2,2,11,13,23,26,ast.po,,ast,,asturian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/it.po,68,256,264,0,0,0,0,68,256,it.po,,it,,italian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/tg.po,11,11,15,0,0,57,245,68,256,tg.po,,tg,,tajik,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_hk.po,68,256,69,0,0,0,0,68,256,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nds.po,23,26,28,0,0,0,0,23,26,nds.po,,nds,,low german,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fa.po,68,256,271,0,0,0,0,68,256,fa.po,,fa,,persian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/eo.po,58,201,183,0,0,8,45,66,246,eo.po,,eo,,esperanto,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pt_br.po,68,256,285,0,0,0,0,68,256,pt_br.po,,pt,br,portuguese,,brazil

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_tw.po,68,256,69,0,0,0,0,68,256,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ko.po,68,256,160,0,0,0,0,68,256,ko.po,,ko,,korean,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pl.po,68,256,239,0,0,0,0,68,256,pl.po,,pl,,polish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ps.po,7,8,8,1,1,15,17,23,26,ps.po,,ps,,pashto,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/cs.po,68,256,234,0,0,0,0,68,256,cs.po,,cs,,czech,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/he.po,68,256,217,0,0,0,0,68,256,he.po,,he,,hebrew,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/km.po,66,246,75,0,0,0,0,66,246,km.po,,km,,khmer,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/eu.po,68,256,205,0,0,0,0,68,256,eu.po,,eu,,basque,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bn_in.po,10,11,11,2,2,11,13,23,26,bn_in.po,,bn,in,bangla,,india

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/el.po,68,256,250,0,0,0,0,68,256,el.po,,el,,greek,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fur.po,68,256,266,0,0,0,0,68,256,fur.po,,fur,,friulian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sq.po,10,11,14,2,2,11,13,23,26,sq.po,,sq,,albanian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hr.po,11,39,36,0,0,57,217,68,256,hr.po,,hr,,croatian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ku.po,10,11,11,2,2,11,13,23,26,ku.po,,ku,,kurdish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fi.po,68,256,169,0,0,0,0,68,256,fi.po,,fi,,finnish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/da.po,68,256,210,0,0,0,0,68,256,da.po,,da,,danish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/dz.po,10,11,11,2,2,11,13,23,26,dz.po,,dz,,dzongkha,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/be.po,68,256,175,0,0,0,0,68,256,be.po,,be,,belarusian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/uk.po,68,256,205,0,0,0,0,68,256,uk.po,,uk,,ukrainian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sv.po,68,256,233,0,0,0,0,68,256,sv.po,,sv,,swedish,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ru.po,68,256,165,0,0,0,0,68,256,ru.po,,ru,,russian,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mai.po,3,4,5,1,1,19,21,23,26,mai.po,,mai,,maithili,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ja.po,68,256,69,0,0,0,0,68,256,ja.po,,ja,,japanese,,

- gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/de.po,68,256,225,0,0,0,0,68,256,de.po,,de,,german,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,192,60,0,0,0,0,41,192,zh_tw.po,,zh,tw,chinese,,taiwan

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,37,164,56,0,0,0,0,37,164,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,42,192,88,0,0,0,0,42,192,zh_cn.po,,zh,cn,chinese,,china

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,42,195,284,0,0,0,0,42,195,vi.po,,vi,,vietnamese,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,42,192,168,0,0,0,0,42,192,uk.po,,uk,,ukrainian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,42,195,165,0,0,0,0,42,195,tr.po,,tr,,turkish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,42,192,65,0,0,0,0,42,192,th.po,,th,,thai,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,42,195,220,0,0,0,0,42,195,tg.po,,tg,,tajik,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,81,216,198,0,0,0,0,81,216,te.po,,te,,telugu,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,42,195,203,0,0,0,0,42,195,sv.po,,sv,,swedish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,42,192,182,0,0,0,0,42,192,sr@latin.po,latin,sr,,serbian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,42,195,183,0,0,0,0,42,195,sr.po,,sr,,serbian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,42,195,166,0,0,0,0,42,195,sl.po,,sl,,slovenian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,42,192,185,0,0,0,0,42,192,sk.po,,sk,,slovak,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,42,195,162,0,0,0,0,42,195,ru.po,,ru,,russian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,42,195,208,0,0,0,0,42,195,ro.po,,ro,,romanian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,42,195,223,0,0,0,0,42,195,pt_br.po,,pt,br,portuguese,,brazil

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,42,192,216,0,0,0,0,42,192,pt.po,,pt,,portuguese,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,42,195,188,0,0,0,0,42,195,pl.po,,pl,,polish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,41,191,228,0,0,0,0,41,191,pa.po,,pa,,punjabi,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,42,192,215,0,0,0,0,42,192,oc.po,,oc,,occitan,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,42,195,210,0,0,0,0,42,195,nl.po,,nl,,dutch,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,42,192,179,0,0,0,0,42,192,ne.po,,ne,,nepali,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,42,192,186,0,0,0,0,42,192,nb.po,,nb,,norwegian bokmål,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,42,192,141,0,0,0,0,42,192,ml.po,,ml,,malayalam,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,42,195,163,0,0,0,0,42,195,lv.po,,lv,,latvian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,42,195,147,0,0,0,0,42,195,lt.po,,lt,,lithuanian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,42,192,155,0,0,0,0,42,192,ko.po,,ko,,korean,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,67,129,142,0,0,5,74,72,203,kn.po,,kn,,kannada,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,41,192,172,0,0,0,0,41,192,kk.po,,kk,,kazakh,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,40,191,65,0,0,2,4,42,195,ja.po,,ja,,japanese,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,42,195,196,0,0,0,0,42,195,it.po,,it,,italian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,42,192,204,0,0,0,0,42,192,is.po,,is,,icelandic,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,42,195,195,0,0,0,0,42,195,id.po,,id,,indonesian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,42,195,179,0,0,0,0,42,195,hu.po,,hu,,hungarian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,42,195,175,0,0,0,0,42,195,hr.po,,hr,,croatian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,42,192,191,0,0,0,0,42,192,he.po,,he,,hebrew,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,42,195,207,0,0,0,0,42,195,gl.po,,gl,,galician,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,41,191,248,0,0,0,0,41,191,gd.po,,gd,,scottish gaelic,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,38,113,123,0,0,3,70,41,183,ga.po,,ga,,irish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,42,195,209,0,0,0,0,42,195,fur.po,,fur,,friulian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,42,195,228,0,0,0,0,42,195,fr.po,,fr,,french,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,42,195,140,0,0,0,0,42,195,fi.po,,fi,,finnish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,42,192,205,0,0,0,0,42,192,fa.po,,fa,,persian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,42,195,166,0,0,0,0,42,195,eu.po,,eu,,basque,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,42,195,160,0,0,0,0,42,195,et.po,,et,,estonian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,42,195,211,0,0,0,0,42,195,es.po,,es,,spanish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,42,195,194,0,0,0,0,42,195,eo.po,,eo,,esperanto,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,42,195,198,0,0,0,0,42,195,en_gb.po,,en,gb,english,,united kingdom

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,42,195,234,0,0,0,0,42,195,el.po,,el,,greek,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,42,195,223,0,0,0,0,42,195,de.po,,de,,german,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,42,195,200,0,0,0,0,42,195,da.po,,da,,danish,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,42,195,190,0,0,0,0,42,195,cs.po,,cs,,czech,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,41,191,219,0,0,0,0,41,191,ca@valencia.po,valencia,ca,,catalan,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,41,192,220,0,0,0,0,41,192,ca.po,,ca,,catalan,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,42,184,168,0,0,0,0,42,184,bs.po,,bs,,bosnian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,42,192,222,0,0,0,0,42,192,bg.po,,bg,,bulgarian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,42,192,177,0,0,0,0,42,192,be.po,,be,,belarusian,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,41,183,182,0,0,0,0,41,183,as.po,,as,,assamese,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,36,98,102,0,0,5,93,41,191,ar.po,,ar,,arabic,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,42,184,191,0,0,0,0,42,184,an.po,,an,,aragonese,,

- gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,40,191,205,0,0,0,0,40,191,af.po,,af,,afrikaans,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/hu.po,424,2524,2294,1133,6451,637,4459,2194,13434,hu.po,,hu,,hungarian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1932,11431,5338,176,1287,86,716,2194,13434,zh_tw.po,,zh,tw,chinese,,taiwan

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/cs.po,2191,13419,13386,2,10,1,5,2194,13434,cs.po,,cs,,czech,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/sv.po,1379,7982,7819,602,3778,213,1674,2194,13434,sv.po,,sv,,swedish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/id.po,424,2524,2366,1133,6451,637,4459,2194,13434,id.po,,id,,indonesian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/zh_cn.po,2164,13261,4683,21,127,9,46,2194,13434,zh_cn.po,,zh,cn,chinese,,china

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,2194,13434,13443,0,0,0,0,2194,13434,en@boldquot.po,boldquot,en,,english,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/de.po,2159,13089,13422,29,296,6,49,2194,13434,de.po,,de,,german,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/et.po,424,2524,2224,1133,6451,637,4459,2194,13434,et.po,,et,,estonian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ru.po,2191,13419,12826,2,10,1,5,2194,13434,ru.po,,ru,,russian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ro.po,823,4864,5237,853,4832,518,3738,2194,13434,ro.po,,ro,,romanian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/el.po,424,2524,2685,1133,6451,637,4459,2194,13434,el.po,,el,,greek,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/nb.po,2166,13252,12728,23,125,5,57,2194,13434,nb.po,,nb,,norwegian bokmål,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/sk.po,423,2519,2463,1134,6456,637,4459,2194,13434,sk.po,,sk,,slovak,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/uk.po,2138,13048,13776,45,295,11,91,2194,13434,uk.po,,uk,,ukrainian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/tr.po,1320,7635,7201,630,3919,244,1880,2194,13434,tr.po,,tr,,turkish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/pl.po,2192,13423,13597,1,6,1,5,2194,13434,pl.po,,pl,,polish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/gl.po,422,2496,2952,1154,6571,618,4367,2194,13434,gl.po,,gl,,galician,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/eo.po,298,1664,1573,1217,6924,679,4846,2194,13434,eo.po,,eo,,esperanto,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/da.po,1394,8105,7686,588,3662,212,1667,2194,13434,da.po,,da,,danish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/pt.po,365,2083,2357,1162,6610,667,4741,2194,13434,pt.po,,pt,,portuguese,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/en@quot.po,2194,13434,13434,0,0,0,0,2194,13434,en@quot.po,quot,en,,english,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/es.po,2177,13247,15305,7,39,10,148,2194,13434,es.po,,es,,spanish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ca.po,428,2505,3108,1134,6503,632,4426,2194,13434,ca.po,,ca,,catalan,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ja.po,2194,13434,3903,0,0,0,0,2194,13434,ja.po,,ja,,japanese,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/it.po,424,2524,2800,1133,6451,637,4459,2194,13434,it.po,,it,,italian,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/fi.po,424,2524,2068,1133,6451,637,4459,2194,13434,fi.po,,fi,,finnish,,

- gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/fr.po,1946,11450,13970,172,1282,76,702,2194,13434,fr.po,,fr,,french,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/ms.po,162,710,657,145,621,78,456,385,1787,ms.po,,ms,,malay,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/pt_br.po,281,1247,1430,59,286,45,254,385,1787,pt_br.po,,pt,br,portuguese,,brazil

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/fr.po,281,1247,1452,59,286,45,254,385,1787,fr.po,,fr,,french,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/pl.po,281,1247,1180,59,286,45,254,385,1787,pl.po,,pl,,polish,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/cs.po,281,1247,1172,59,286,45,254,385,1787,cs.po,,cs,,czech,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/es.po,281,1247,1338,59,286,45,254,385,1787,es.po,,es,,spanish,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/vi.po,281,1247,1814,59,286,45,254,385,1787,vi.po,,vi,,vietnamese,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/de.po,261,1162,1052,56,282,68,343,385,1787,de.po,,de,,german,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/eo.po,281,1247,1185,59,286,45,254,385,1787,eo.po,,eo,,esperanto,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/uk.po,281,1247,1202,59,286,45,254,385,1787,uk.po,,uk,,ukrainian,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/zh_cn.po,281,1247,480,59,286,45,254,385,1787,zh_cn.po,,zh,cn,chinese,,china

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/it.po,281,1247,1414,59,286,45,254,385,1787,it.po,,it,,italian,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/sr.po,281,1247,1176,59,286,45,254,385,1787,sr.po,,sr,,serbian,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/sv.po,281,1247,1048,59,286,45,254,385,1787,sv.po,,sv,,swedish,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/nl.po,281,1247,1154,59,286,45,254,385,1787,nl.po,,nl,,dutch,,

- gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/fi.po,281,1247,887,59,286,45,254,385,1787,fi.po,,fi,,finnish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/da.po,93,612,605,13,262,1,7,107,881,da.po,,da,,danish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ru.po,107,881,935,0,0,0,0,107,881,ru.po,,ru,,russian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/fr.po,94,615,700,12,259,1,7,107,881,fr.po,,fr,,french,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/sk.po,84,541,549,17,298,6,42,107,881,sk.po,,sk,,slovak,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/pt_br.po,107,881,1037,0,0,0,0,107,881,pt_br.po,,pt,br,portuguese,,brazil

- grep-3.1-9.fc30.src.rpm.stats.csv,po/eu.po,15,43,44,23,218,69,620,107,881,eu.po,,eu,,basque,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/uk.po,107,881,981,0,0,0,0,107,881,uk.po,,uk,,ukrainian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/be.po,15,43,42,22,214,70,624,107,881,be.po,,be,,belarusian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/pa.po,62,252,282,11,59,34,570,107,881,pa.po,,pa,,punjabi,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/lt.po,16,89,86,27,272,64,520,107,881,lt.po,,lt,,lithuanian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ky.po,16,89,89,26,239,65,553,107,881,ky.po,,ky,,kyrgyz,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ca.po,94,615,791,12,259,1,7,107,881,ca.po,,ca,,catalan,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/id.po,90,591,642,13,262,4,28,107,881,id.po,,id,,indonesian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/it.po,94,615,692,12,259,1,7,107,881,it.po,,it,,italian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/af.po,15,43,42,22,214,70,624,107,881,af.po,,af,,afrikaans,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/sr.po,94,615,639,12,259,1,7,107,881,sr.po,,sr,,serbian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/nl.po,107,881,956,0,0,0,0,107,881,nl.po,,nl,,dutch,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/th.po,94,615,378,12,259,1,7,107,881,th.po,,th,,thai,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/hr.po,94,615,620,12,259,1,7,107,881,hr.po,,hr,,croatian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/vi.po,107,881,1314,0,0,0,0,107,881,vi.po,,vi,,vietnamese,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/pt.po,15,43,57,22,214,70,624,107,881,pt.po,,pt,,portuguese,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/he.po,15,43,52,23,218,69,620,107,881,he.po,,he,,hebrew,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/hu.po,107,881,880,0,0,0,0,107,881,hu.po,,hu,,hungarian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/nb.po,94,615,669,12,259,1,7,107,881,nb.po,,nb,,norwegian bokmål,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/sv.po,107,881,897,0,0,0,0,107,881,sv.po,,sv,,swedish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/zh_tw.po,94,615,352,12,259,1,7,107,881,zh_tw.po,,zh,tw,chinese,,taiwan

- grep-3.1-9.fc30.src.rpm.stats.csv,po/zh_cn.po,94,615,339,12,259,1,7,107,881,zh_cn.po,,zh,cn,chinese,,china

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ro.po,15,43,47,22,214,70,624,107,881,ro.po,,ro,,romanian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/et.po,107,881,774,0,0,0,0,107,881,et.po,,et,,estonian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ga.po,107,881,967,0,0,0,0,107,881,ga.po,,ga,,irish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/sl.po,93,612,647,13,262,1,7,107,881,sl.po,,sl,,slovenian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/fi.po,94,615,550,12,259,1,7,107,881,fi.po,,fi,,finnish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/el.po,49,272,305,35,314,23,295,107,881,el.po,,el,,greek,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/pl.po,107,881,906,0,0,0,0,107,881,pl.po,,pl,,polish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/cs.po,94,615,640,12,259,1,7,107,881,cs.po,,cs,,czech,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/de.po,94,615,653,12,259,1,7,107,881,de.po,,de,,german,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/es.po,90,591,701,13,262,4,28,107,881,es.po,,es,,spanish,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ja.po,107,881,528,0,0,0,0,107,881,ja.po,,ja,,japanese,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/eo.po,94,615,633,12,259,1,7,107,881,eo.po,,eo,,esperanto,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/bg.po,107,881,1066,0,0,0,0,107,881,bg.po,,bg,,bulgarian,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/ko.po,4,11,11,17,72,86,798,107,881,ko.po,,ko,,korean,,

- grep-3.1-9.fc30.src.rpm.stats.csv,po/tr.po,15,43,44,23,218,69,620,107,881,tr.po,,tr,,turkish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,36,191,58,0,0,0,0,36,191,zh_tw.po,,zh,tw,chinese,,taiwan

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_hk.po,36,187,57,0,0,0,0,36,187,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,36,191,68,0,0,0,0,36,191,zh_cn.po,,zh,cn,chinese,,china

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/uk.po,36,187,177,0,0,0,0,36,187,uk.po,,uk,,ukrainian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/tr.po,36,191,166,0,0,0,0,36,191,tr.po,,tr,,turkish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/tg.po,36,187,199,0,0,0,0,36,187,tg.po,,tg,,tajik,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sv.po,36,191,179,0,0,0,0,36,191,sv.po,,sv,,swedish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sr@latin.po,37,194,204,0,0,0,0,37,194,sr@latin.po,latin,sr,,serbian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sr.po,36,191,201,0,0,0,0,36,191,sr.po,,sr,,serbian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sl.po,36,191,214,0,0,0,0,36,191,sl.po,,sl,,slovenian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sk.po,36,191,209,0,0,0,0,36,191,sk.po,,sk,,slovak,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ru.po,37,194,190,0,0,0,0,37,194,ru.po,,ru,,russian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ro.po,36,191,231,0,0,0,0,36,191,ro.po,,ro,,romanian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,36,191,227,0,0,0,0,36,191,pt_br.po,,pt,br,portuguese,,brazil

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pt.po,37,194,216,0,0,0,0,37,194,pt.po,,pt,,portuguese,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pl.po,36,191,197,0,0,0,0,36,191,pl.po,,pl,,polish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pa.po,36,187,226,0,0,0,0,36,187,pa.po,,pa,,punjabi,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/oc.po,36,191,246,0,0,0,0,36,191,oc.po,,oc,,occitan,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/nl.po,37,194,180,0,0,0,0,37,194,nl.po,,nl,,dutch,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ne.po,21,96,94,7,41,8,54,36,191,ne.po,,ne,,nepali,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/nb.po,37,194,205,0,0,0,0,37,194,nb.po,,nb,,norwegian bokmål,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ml.po,36,191,156,0,0,0,0,36,191,ml.po,,ml,,malayalam,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/lv.po,36,191,181,0,0,0,0,36,191,lv.po,,lv,,latvian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/lt.po,36,191,164,0,0,0,0,36,191,lt.po,,lt,,lithuanian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ko.po,36,191,168,0,0,0,0,36,191,ko.po,,ko,,korean,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ja.po,35,184,76,0,0,0,0,35,184,ja.po,,ja,,japanese,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/it.po,36,191,238,0,0,0,0,36,191,it.po,,it,,italian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/id.po,36,191,200,0,0,0,0,36,191,id.po,,id,,indonesian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/hu.po,36,191,192,0,0,0,0,36,191,hu.po,,hu,,hungarian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/hr.po,36,191,180,0,0,0,0,36,191,hr.po,,hr,,croatian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/he.po,37,194,194,0,0,0,0,37,194,he.po,,he,,hebrew,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/gl.po,36,191,257,0,0,0,0,36,191,gl.po,,gl,,galician,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fur.po,36,191,250,0,0,0,0,36,191,fur.po,,fur,,friulian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fr.po,36,191,247,0,0,0,0,36,191,fr.po,,fr,,french,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fi.po,19,85,71,0,0,17,106,36,191,fi.po,,fi,,finnish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/eu.po,37,194,205,0,0,0,0,37,194,eu.po,,eu,,basque,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/es.po,36,191,269,0,0,0,0,36,191,es.po,,es,,spanish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/eo.po,36,191,182,0,0,0,0,36,191,eo.po,,eo,,esperanto,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,37,194,194,0,0,0,0,37,194,en_gb.po,,en,gb,english,,united kingdom

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/el.po,37,194,219,0,0,0,0,37,194,el.po,,el,,greek,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/de.po,36,191,203,0,0,0,0,36,191,de.po,,de,,german,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/da.po,36,191,188,0,0,0,0,36,191,da.po,,da,,danish,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/cs.po,36,191,202,0,0,0,0,36,191,cs.po,,cs,,czech,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,36,191,278,0,0,0,0,36,191,ca@valencia.po,valencia,ca,,catalan,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ca.po,36,191,278,0,0,0,0,36,191,ca.po,,ca,,catalan,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/bs.po,36,187,177,0,0,0,0,36,187,bs.po,,bs,,bosnian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/bg.po,37,194,218,0,0,0,0,37,194,bg.po,,bg,,bulgarian,,

- grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/as.po,36,187,188,0,0,0,0,36,187,as.po,,as,,assamese,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/pl/pl.po,54,1294,1204,0,0,0,0,54,1294,pl.po,,pl,,polish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,54,1294,1346,0,0,0,0,54,1294,pt_br.po,,pt,br,portuguese,,brazil

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/es/es.po,36,668,699,0,0,11,205,47,873,es.po,,es,,spanish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/de/de.po,54,1294,1222,0,0,0,0,54,1294,de.po,,de,,german,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/sv/sv.po,54,1294,1233,0,0,0,0,54,1294,sv.po,,sv,,swedish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/cs/cs.po,54,1294,1216,0,0,0,0,54,1294,cs.po,,cs,,czech,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sr@latin.po,133,536,541,0,0,0,0,133,536,sr@latin.po,latin,sr,,serbian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ne.po,44,77,79,52,186,37,273,133,536,ne.po,,ne,,nepali,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fur.po,133,537,700,0,0,0,0,133,537,fur.po,,fur,,friulian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_cn.po,133,536,215,0,0,0,0,133,536,zh_cn.po,,zh,cn,chinese,,china

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/hu.po,133,537,473,0,0,0,0,133,537,hu.po,,hu,,hungarian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/bs.po,136,554,494,0,0,0,0,136,554,bs.po,,bs,,bosnian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/he.po,133,536,475,0,0,0,0,133,536,he.po,,he,,hebrew,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/eo.po,67,229,214,0,0,58,254,125,483,eo.po,,eo,,esperanto,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/es.po,133,537,643,0,0,0,0,133,537,es.po,,es,,spanish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pl.po,133,537,585,0,0,0,0,133,537,pl.po,,pl,,polish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/cs.po,133,537,481,0,0,0,0,133,537,cs.po,,cs,,czech,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ru.po,132,528,502,0,0,0,0,132,528,ru.po,,ru,,russian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/gl.po,133,537,695,0,0,0,0,133,537,gl.po,,gl,,galician,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ro.po,133,537,639,0,0,0,0,133,537,ro.po,,ro,,romanian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_tw.po,133,537,220,0,0,0,0,133,537,zh_tw.po,,zh,tw,chinese,,taiwan

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pt_br.po,133,537,617,0,0,0,0,133,537,pt_br.po,,pt,br,portuguese,,brazil

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/tr.po,133,537,510,0,0,0,0,133,537,tr.po,,tr,,turkish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/da.po,133,537,524,0,0,0,0,133,537,da.po,,da,,danish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ja.po,124,480,190,0,0,1,3,125,483,ja.po,,ja,,japanese,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/id.po,133,537,507,0,0,0,0,133,537,id.po,,id,,indonesian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/uk.po,125,483,458,0,0,0,0,125,483,uk.po,,uk,,ukrainian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/it.po,133,537,604,0,0,0,0,133,537,it.po,,it,,italian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/oc.po,132,528,620,0,0,0,0,132,528,oc.po,,oc,,occitan,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sl.po,133,537,528,0,0,0,0,133,537,sl.po,,sl,,slovenian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/lv.po,133,537,458,0,0,0,0,133,537,lv.po,,lv,,latvian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sr.po,133,536,541,0,0,0,0,133,536,sr.po,,sr,,serbian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pt.po,133,536,594,0,0,0,0,133,536,pt.po,,pt,,portuguese,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/de.po,133,537,532,0,0,0,0,133,537,de.po,,de,,german,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ko.po,133,537,453,0,0,0,0,133,537,ko.po,,ko,,korean,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/hr.po,133,537,476,0,0,0,0,133,537,hr.po,,hr,,croatian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fi.po,46,99,84,0,0,87,438,133,537,fi.po,,fi,,finnish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ca.po,133,536,698,0,0,0,0,133,536,ca.po,,ca,,catalan,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/nb.po,123,467,530,0,0,10,69,133,536,nb.po,,nb,,norwegian bokmål,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/lt.po,133,537,436,0,0,0,0,133,537,lt.po,,lt,,lithuanian,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/eu.po,133,536,499,0,0,0,0,133,536,eu.po,,eu,,basque,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/el.po,133,536,547,0,0,0,0,133,536,el.po,,el,,greek,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/nl.po,133,536,526,0,0,0,0,133,536,nl.po,,nl,,dutch,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fr.po,133,537,633,0,0,0,0,133,537,fr.po,,fr,,french,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/as.po,132,533,546,0,0,0,0,132,533,as.po,,as,,assamese,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sv.po,133,537,568,0,0,0,0,133,537,sv.po,,sv,,swedish,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_hk.po,132,533,227,0,0,0,0,132,533,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ml.po,27,51,51,0,0,98,432,125,483,ml.po,,ml,,malayalam,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/en_gb.po,133,536,535,0,0,0,0,133,536,en_gb.po,,en,gb,english,,united kingdom

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sk.po,133,536,494,0,0,0,0,133,536,sk.po,,sk,,slovak,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,133,536,698,0,0,0,0,133,536,ca@valencia.po,valencia,ca,,catalan,,

- grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/bg.po,133,536,593,0,0,0,0,133,536,bg.po,,bg,,bulgarian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/ast.po,193,962,1090,294,1618,857,4539,1344,7119,ast.po,,ast,,asturian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/ca.po,1344,7119,9408,0,0,0,0,1344,7119,ca.po,,ca,,catalan,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/da.po,1344,7119,6636,0,0,0,0,1344,7119,da.po,,da,,danish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/de.po,1337,7003,6648,0,0,7,116,1344,7119,de.po,,de,,german,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/de_ch.po,1337,7003,6648,0,0,7,116,1344,7119,de_ch.po,,de,ch,german,,switzerland

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/de@hebrew.po,1337,7003,6650,0,0,7,116,1344,7119,de@hebrew.po,hebrew,de,,german,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@arabic.po,1341,7111,7111,1,4,2,4,1344,7119,en@arabic.po,arabic,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@cyrillic.po,1341,7111,7111,1,4,2,4,1344,7119,en@cyrillic.po,cyrillic,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@greek.po,1341,7111,7111,1,4,2,4,1344,7119,en@greek.po,greek,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@hebrew.po,1341,7111,7113,1,4,2,4,1344,7119,en@hebrew.po,hebrew,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@piglatin.po,1344,7119,7128,0,0,0,0,1344,7119,en@piglatin.po,piglatin,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@quot.po,1344,7119,7119,0,0,0,0,1344,7119,en@quot.po,quot,en,,english,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/eo.po,496,2432,2251,68,403,780,4284,1344,7119,eo.po,,eo,,esperanto,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/es.po,1314,6962,8812,22,132,8,25,1344,7119,es.po,,es,,spanish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/fi.po,1314,6962,5587,23,134,7,23,1344,7119,fi.po,,fi,,finnish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/fr.po,1314,6962,8698,23,134,7,23,1344,7119,fr.po,,fr,,french,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/gl.po,1137,5711,7201,103,670,104,738,1344,7119,gl.po,,gl,,galician,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/hr.po,1344,7119,6868,0,0,0,0,1344,7119,hr.po,,hr,,croatian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/hu.po,1344,7119,7002,0,0,0,0,1344,7119,hu.po,,hu,,hungarian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/id.po,322,1633,1638,273,1517,749,3969,1344,7119,id.po,,id,,indonesian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/it.po,1344,7119,7898,0,0,0,0,1344,7119,it.po,,it,,italian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/ja.po,231,1063,408,399,1597,714,4459,1344,7119,ja.po,,ja,,japanese,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/ko.po,192,959,816,228,1299,924,4861,1344,7119,ko.po,,ko,,korean,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/lt.po,1104,5359,5109,17,89,223,1671,1344,7119,lt.po,,lt,,lithuanian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/nb.po,1344,7119,7057,0,0,0,0,1344,7119,nb.po,,nb,,norwegian bokmål,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/nl.po,1343,7115,7054,1,4,0,0,1344,7119,nl.po,,nl,,dutch,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/pa.po,663,2456,2720,73,339,608,4324,1344,7119,pa.po,,pa,,punjabi,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/pl.po,1344,7119,7178,0,0,0,0,1344,7119,pl.po,,pl,,polish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/pt_br.po,1013,4531,5407,181,984,150,1604,1344,7119,pt_br.po,,pt,br,portuguese,,brazil

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/ru.po,1344,7119,7014,0,0,0,0,1344,7119,ru.po,,ru,,russian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/sl.po,1067,5382,5546,119,719,158,1018,1344,7119,sl.po,,sl,,slovenian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/sr.po,1314,6962,7004,21,128,9,29,1344,7119,sr.po,,sr,,serbian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/sv.po,1344,7119,6673,0,0,0,0,1344,7119,sv.po,,sv,,swedish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/tr.po,827,3690,3455,15,66,502,3363,1344,7119,tr.po,,tr,,turkish,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/uk.po,1344,7119,7481,0,0,0,0,1344,7119,uk.po,,uk,,ukrainian,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/vi.po,1344,7119,10567,0,0,0,0,1344,7119,vi.po,,vi,,vietnamese,,

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/zh_cn.po,348,1731,681,271,1489,725,3899,1344,7119,zh_cn.po,,zh,cn,chinese,,china

- grub2-2.02-75.fc30.src.rpm.stats.csv,po/zh_tw.po,352,1741,734,240,1296,752,4082,1344,7119,zh_tw.po,,zh,tw,chinese,,taiwan

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,572,6378,1080,0,0,0,0,572,6378,zh_tw.po,,zh,tw,chinese,,taiwan

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,496,5665,914,0,0,0,0,496,5665,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,560,6232,1008,0,0,0,0,560,6232,zh_cn.po,,zh,cn,chinese,,china

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,154,762,963,0,0,121,1668,275,2430,vi.po,,vi,,vietnamese,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,106,1033,825,0,0,312,3552,418,4585,uk.po,,uk,,ukrainian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,428,3600,2844,0,0,40,1690,468,5290,ug.po,,ug,,uyghur,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,578,6423,5387,0,0,0,0,578,6423,tr.po,,tr,,turkish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,4,8,8,0,0,464,5282,468,5290,tg.po,,tg,,tajik,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,578,6423,5800,0,0,0,0,578,6423,sv.po,,sv,,swedish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,572,6378,6138,0,0,0,0,572,6378,sr@latin.po,latin,sr,,serbian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,578,6423,6191,0,0,0,0,578,6423,sr.po,,sr,,serbian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,578,6423,5836,0,0,0,0,578,6423,sl.po,,sl,,slovenian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,566,6311,6038,0,0,0,0,566,6311,sk.po,,sk,,slovak,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,490,4136,3625,62,1877,20,365,572,6378,ru.po,,ru,,russian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,252,1304,1494,3,299,317,4775,572,6378,ro.po,,ro,,romanian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,578,6423,7252,0,0,0,0,578,6423,pt_br.po,,pt,br,portuguese,,brazil

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,560,6232,7008,0,0,0,0,560,6232,pt.po,,pt,,portuguese,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,578,6423,5839,0,0,0,0,578,6423,pl.po,,pl,,polish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,236,2202,2292,1,7,159,2015,396,4224,pa.po,,pa,,punjabi,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,242,2113,1913,0,0,176,2472,418,4585,or.po,,or,,odia,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,531,5849,7068,1,14,0,0,532,5863,oc.po,,oc,,occitan,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,404,3033,2836,0,0,174,3390,578,6423,nl.po,,nl,,dutch,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,176,901,903,165,825,225,4585,566,6311,ne.po,,ne,,nepali,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,306,1575,1489,20,194,240,4542,566,6311,nb.po,,nb,,norwegian bokmål,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,101,582,442,11,59,357,4649,469,5290,ml.po,,ml,,malayalam,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,572,6378,5334,0,0,0,0,572,6378,lv.po,,lv,,latvian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,578,6423,5041,0,0,0,0,578,6423,lt.po,,lt,,lithuanian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,226,944,936,0,0,346,5434,572,6378,kk.po,,kk,,kazakh,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,166,1337,293,79,612,35,692,280,2641,ja.po,,ja,,japanese,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,578,6423,6991,0,0,0,0,578,6423,it.po,,it,,italian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,169,957,1004,0,0,391,5275,560,6232,is.po,,is,,icelandic,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,578,6423,5961,0,0,0,0,578,6423,id.po,,id,,indonesian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,578,6423,5714,0,0,0,0,578,6423,hu.po,,hu,,hungarian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,589,6560,5797,0,0,0,0,589,6560,hr.po,,hr,,croatian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,468,5290,6120,0,0,0,0,468,5290,hi.po,,hi,,hindi,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,570,6343,6343,0,0,0,0,570,6343,he.po,,he,,hebrew,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,246,1128,1131,12,86,238,4451,496,5665,gu.po,,gu,,gujarati,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,578,6423,7401,0,0,0,0,578,6423,gl.po,,gl,,galician,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,520,5279,6467,0,0,58,1144,578,6423,fur.po,,fur,,friulian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,578,6423,7857,0,0,0,0,578,6423,fr.po,,fr,,french,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,106,406,318,21,92,363,5060,490,5558,fi.po,,fi,,finnish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,578,6423,5418,0,0,0,0,578,6423,eu.po,,eu,,basque,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,578,6423,7631,0,0,0,0,578,6423,es.po,,es,,spanish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,224,1494,1390,10,120,336,4729,570,6343,eo.po,,eo,,esperanto,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,572,6378,6376,0,0,0,0,572,6378,en_gb.po,,en,gb,english,,united kingdom

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,532,5863,6193,0,0,0,0,532,5863,el.po,,el,,greek,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,578,6423,6100,0,0,0,0,578,6423,de.po,,de,,german,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,578,6423,5684,0,0,0,0,578,6423,da.po,,da,,danish,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,578,6423,6028,0,0,0,0,578,6423,cs.po,,cs,,czech,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,550,5942,7339,2,71,14,298,566,6311,ca@valencia.po,valencia,ca,,catalan,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,550,5942,7357,2,71,14,298,566,6311,ca.po,,ca,,catalan,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,527,5813,5446,0,0,0,0,527,5813,bs.po,,bs,,bosnian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,37,254,300,0,0,435,5065,472,5319,bg.po,,bg,,bulgarian,,

- gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,69,678,574,0,0,349,3907,418,4585,as.po,,as,,assamese,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/zh_tw.po,32,78,34,0,0,0,0,32,78,zh_tw.po,,zh,tw,chinese,,taiwan

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,32,78,34,0,0,0,0,32,78,zh_cn.po,,zh,cn,chinese,,china

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/vi.po,27,56,89,5,22,0,0,32,78,vi.po,,vi,,vietnamese,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/tr.po,32,78,79,0,0,0,0,32,78,tr.po,,tr,,turkish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sv.po,32,78,77,0,0,0,0,32,78,sv.po,,sv,,swedish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sr.po,32,78,81,0,0,0,0,32,78,sr.po,,sr,,serbian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sr@latin.po,32,78,81,0,0,0,0,32,78,sr@latin.po,latin,sr,,serbian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sl.po,32,78,80,0,0,0,0,32,78,sl.po,,sl,,slovenian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sk.po,32,78,80,0,0,0,0,32,78,sk.po,,sk,,slovak,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ru.po,26,53,51,4,9,2,16,32,78,ru.po,,ru,,russian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ro.po,32,78,84,0,0,0,0,32,78,ro.po,,ro,,romanian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pt.po,29,62,64,3,16,0,0,32,78,pt.po,,pt,,portuguese,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pt_br.po,32,78,86,0,0,0,0,32,78,pt_br.po,,pt,br,portuguese,,brazil

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pl.po,32,78,75,0,0,0,0,32,78,pl.po,,pl,,polish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pa.po,32,78,99,0,0,0,0,32,78,pa.po,,pa,,punjabi,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/oc.po,25,53,62,5,9,2,16,32,78,oc.po,,oc,,occitan,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/nl.po,32,78,79,0,0,0,0,32,78,nl.po,,nl,,dutch,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ne.po,32,78,87,0,0,0,0,32,78,ne.po,,ne,,nepali,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/nb.po,32,78,74,0,0,0,0,32,78,nb.po,,nb,,norwegian bokmål,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ml.po,32,78,85,0,0,0,0,32,78,ml.po,,ml,,malayalam,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/lv.po,32,78,76,0,0,0,0,32,78,lv.po,,lv,,latvian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/lt.po,32,78,72,0,0,0,0,32,78,lt.po,,lt,,lithuanian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ko.po,32,78,78,0,0,0,0,32,78,ko.po,,ko,,korean,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ja.po,26,53,29,4,9,2,16,32,78,ja.po,,ja,,japanese,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/it.po,32,78,80,0,0,0,0,32,78,it.po,,it,,italian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/id.po,32,78,90,0,0,0,0,32,78,id.po,,id,,indonesian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/hu.po,32,78,72,0,0,0,0,32,78,hu.po,,hu,,hungarian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/hr.po,32,78,77,0,0,0,0,32,78,hr.po,,hr,,croatian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/he.po,26,53,53,4,9,2,16,32,78,he.po,,he,,hebrew,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/gl.po,32,78,96,0,0,0,0,32,78,gl.po,,gl,,galician,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fur.po,32,78,85,0,0,0,0,32,78,fur.po,,fur,,friulian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fr.po,32,78,89,0,0,0,0,32,78,fr.po,,fr,,french,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fi.po,32,78,73,0,0,0,0,32,78,fi.po,,fi,,finnish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fa.po,32,78,89,0,0,0,0,32,78,fa.po,,fa,,persian,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/es.po,32,78,98,0,0,0,0,32,78,es.po,,es,,spanish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/eo.po,32,78,84,0,0,0,0,32,78,eo.po,,eo,,esperanto,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/en_gb.po,32,78,78,0,0,0,0,32,78,en_gb.po,,en,gb,english,,united kingdom

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/el.po,32,78,81,0,0,0,0,32,78,el.po,,el,,greek,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/de.po,32,78,79,0,0,0,0,32,78,de.po,,de,,german,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/da.po,32,78,78,0,0,0,0,32,78,da.po,,da,,danish,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/cs.po,32,78,79,0,0,0,0,32,78,cs.po,,cs,,czech,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,32,78,99,0,0,0,0,32,78,ca@valencia.po,valencia,ca,,catalan,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ca.po,32,78,99,0,0,0,0,32,78,ca.po,,ca,,catalan,,

- gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ar.po,32,78,83,0,0,0,0,32,78,ar.po,,ar,,arabic,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/gl.po,336,1861,2206,11,79,31,170,378,2110,gl.po,,gl,,galician,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/pl.po,378,2110,1997,0,0,0,0,378,2110,pl.po,,pl,,polish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,373,2074,543,2,5,3,31,378,2110,zh_cn.po,,zh,cn,chinese,,china

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sr.po,373,2074,2136,2,5,3,31,378,2110,sr.po,,sr,,serbian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/bg.po,373,2074,2319,2,5,3,31,378,2110,bg.po,,bg,,bulgarian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/hr.po,378,2110,2083,0,0,0,0,378,2110,hr.po,,hr,,croatian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fur.po,186,888,1037,2,5,190,1217,378,2110,fur.po,,fur,,friulian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ca.po,317,1736,2259,24,153,37,221,378,2110,ca.po,,ca,,catalan,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/vi.po,373,2074,3100,2,5,3,31,378,2110,vi.po,,vi,,vietnamese,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/az.po,24,41,41,12,43,342,2026,378,2110,az.po,,az,,azerbaijani,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/cs.po,373,2074,2102,2,5,3,31,378,2110,cs.po,,cs,,czech,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sl.po,349,1947,1915,8,52,21,111,378,2110,sl.po,,sl,,slovenian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/hu.po,373,2074,1873,2,5,3,31,378,2110,hu.po,,hu,,hungarian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,349,1965,495,5,30,24,115,378,2110,zh_tw.po,,zh,tw,chinese,,taiwan

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sv.po,378,2110,1970,0,0,0,0,378,2110,sv.po,,sv,,swedish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/be.po,42,175,169,22,121,314,1814,378,2110,be.po,,be,,belarusian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/nb.po,373,2074,1894,2,5,3,31,378,2110,nb.po,,nb,,norwegian bokmål,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/eu.po,292,1544,1333,34,209,52,357,378,2110,eu.po,,eu,,basque,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/de.po,373,2074,2104,2,5,3,31,378,2110,de.po,,de,,german,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ast.po,293,1550,1723,32,197,53,363,378,2110,ast.po,,ast,,asturian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fr.po,373,2074,2445,2,5,3,31,378,2110,fr.po,,fr,,french,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/tr.po,378,2110,1852,0,0,0,0,378,2110,tr.po,,tr,,turkish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sq.po,137,595,697,85,461,156,1054,378,2110,sq.po,,sq,,albanian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/es.po,322,1759,2195,22,147,34,204,378,2110,es.po,,es,,spanish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ru.po,378,2110,1940,0,0,0,0,378,2110,ru.po,,ru,,russian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/it.po,378,2110,2406,0,0,0,0,378,2110,it.po,,it,,italian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/id.po,369,2027,1939,5,37,4,46,378,2110,id.po,,id,,indonesian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/lt.po,305,1667,1403,28,173,45,270,378,2110,lt.po,,lt,,lithuanian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,369,2027,2390,5,37,4,46,378,2110,pt_br.po,,pt,br,portuguese,,brazil

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/af.po,166,743,759,80,420,132,947,378,2110,af.po,,af,,afrikaans,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ja.po,173,688,270,20,99,185,1323,378,2110,ja.po,,ja,,japanese,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,134,583,583,86,465,158,1062,378,2110,en_gb.po,,en,gb,english,,united kingdom

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fi.po,318,1743,1364,24,153,36,214,378,2110,fi.po,,fi,,finnish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ro.po,304,1666,1984,28,173,46,271,378,2110,ro.po,,ro,,romanian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/uk.po,378,2110,2029,0,0,0,0,378,2110,uk.po,,uk,,ukrainian,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/el.po,317,1736,1820,23,149,38,225,378,2110,el.po,,el,,greek,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/da.po,378,2110,1972,0,0,0,0,378,2110,da.po,,da,,danish,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/rw.po,5,4,4,198,1032,175,1074,378,2110,rw.po,,rw,,kinyarwanda,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/eo.po,67,161,169,4,16,307,1933,378,2110,eo.po,,eo,,esperanto,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sk.po,364,2008,1987,5,37,9,65,378,2110,sk.po,,sk,,slovak,,

- gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/nl.po,373,2074,2177,2,5,3,31,378,2110,nl.po,,nl,,dutch,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sl.po,10,73,63,3,22,16,102,29,197,sl.po,,sl,,slovenian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/gl.po,10,73,101,3,22,16,102,29,197,gl.po,,gl,,galician,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ro.po,8,49,59,4,26,17,122,29,197,ro.po,,ro,,romanian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ky.po,4,26,20,3,21,22,150,29,197,ky.po,,ky,,kyrgyz,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sq.po,5,30,36,6,39,18,128,29,197,sq.po,,sq,,albanian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hu.po,28,194,197,0,0,1,3,29,197,hu.po,,hu,,hungarian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hr.po,29,197,207,0,0,0,0,29,197,hr.po,,hr,,croatian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/af.po,2,12,13,8,53,19,132,29,197,af.po,,af,,afrikaans,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/id.po,28,194,189,0,0,1,3,29,197,id.po,,id,,indonesian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/uk.po,29,197,212,0,0,0,0,29,197,uk.po,,uk,,ukrainian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/bg.po,28,194,246,0,0,1,3,29,197,bg.po,,bg,,bulgarian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nb.po,28,194,173,0,0,1,3,29,197,nb.po,,nb,,norwegian bokmål,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/da.po,29,197,175,0,0,0,0,29,197,da.po,,da,,danish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/es.po,10,73,95,6,39,13,85,29,197,es.po,,es,,spanish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/tr.po,29,197,152,0,0,0,0,29,197,tr.po,,tr,,turkish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lv.po,17,126,105,9,57,3,14,29,197,lv.po,,lv,,latvian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fur.po,28,194,252,0,0,1,3,29,197,fur.po,,fur,,friulian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/mt.po,7,43,39,7,43,15,111,29,197,mt.po,,mt,,maltese,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/az.po,2,12,10,8,53,19,132,29,197,az.po,,az,,azerbaijani,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sv.po,29,197,197,0,0,0,0,29,197,sv.po,,sv,,swedish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ca.po,10,73,99,3,22,16,102,29,197,ca.po,,ca,,catalan,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nl.po,28,194,227,0,0,1,3,29,197,nl.po,,nl,,dutch,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sk.po,21,152,140,7,42,1,3,29,197,sk.po,,sk,,slovak,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/cs.po,28,194,211,0,0,1,3,29,197,cs.po,,cs,,czech,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/it.po,29,197,235,0,0,0,0,29,197,it.po,,it,,italian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sr.po,28,194,218,0,0,1,3,29,197,sr.po,,sr,,serbian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fi.po,8,49,38,7,43,14,105,29,197,fi.po,,fi,,finnish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/vi.po,28,194,297,0,0,1,3,29,197,vi.po,,vi,,vietnamese,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/el.po,10,73,72,3,22,16,102,29,197,el.po,,el,,greek,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pl.po,29,197,219,0,0,0,0,29,197,pl.po,,pl,,polish,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ru.po,29,197,188,0,0,0,0,29,197,ru.po,,ru,,russian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,28,194,29,0,0,1,3,29,197,zh_cn.po,,zh,cn,chinese,,china

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/de.po,29,197,205,0,0,0,0,29,197,de.po,,de,,german,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eu.po,8,49,47,4,26,17,122,29,197,eu.po,,eu,,basque,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eo.po,8,59,52,5,36,16,102,29,197,eo.po,,eo,,esperanto,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ja.po,10,73,20,6,39,13,85,29,197,ja.po,,ja,,japanese,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fr.po,28,194,238,0,0,1,3,29,197,fr.po,,fr,,french,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/or.po,2,12,10,8,53,19,132,29,197,or.po,,or,,odia,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lt.po,5,30,26,6,39,18,128,29,197,lt.po,,lt,,lithuanian,,

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,28,194,268,0,0,1,3,29,197,pt_br.po,,pt,br,portuguese,,brazil

- gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,2,12,12,8,53,19,132,29,197,en_gb.po,,en,gb,english,,united kingdom

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/gl.po,136,677,840,13,65,55,234,204,976,gl.po,,gl,,galician,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/pl.po,204,976,940,0,0,0,0,204,976,pl.po,,pl,,polish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,196,939,335,1,5,7,32,204,976,zh_cn.po,,zh,cn,chinese,,china

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sr.po,196,939,915,1,5,7,32,204,976,sr.po,,sr,,serbian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/bg.po,191,912,968,4,28,9,36,204,976,bg.po,,bg,,bulgarian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/hr.po,203,973,939,1,3,0,0,204,976,hr.po,,hr,,croatian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fur.po,131,590,681,2,8,71,378,204,976,fur.po,,fur,,friulian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ca.po,124,640,823,22,95,58,241,204,976,ca.po,,ca,,catalan,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/vi.po,196,939,1439,1,5,7,32,204,976,vi.po,,vi,,vietnamese,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/az.po,2,8,7,18,123,184,845,204,976,az.po,,az,,azerbaijani,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/cs.po,196,939,932,1,5,7,32,204,976,cs.po,,cs,,czech,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sl.po,136,677,628,11,55,57,244,204,976,sl.po,,sl,,slovenian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/hu.po,196,939,818,1,5,7,32,204,976,hu.po,,hu,,hungarian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sv.po,204,976,807,0,0,0,0,204,976,sv.po,,sv,,swedish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/nb.po,196,939,796,1,5,7,32,204,976,nb.po,,nb,,norwegian bokmål,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/eu.po,85,407,397,19,73,100,496,204,976,eu.po,,eu,,basque,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/de.po,204,976,868,0,0,0,0,204,976,de.po,,de,,german,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fr.po,196,939,1154,1,5,7,32,204,976,fr.po,,fr,,french,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/tr.po,204,976,853,0,0,0,0,204,976,tr.po,,tr,,turkish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sq.po,2,8,9,18,123,184,845,204,976,sq.po,,sq,,albanian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/es.po,126,651,827,20,84,58,241,204,976,es.po,,es,,spanish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ru.po,204,976,875,0,0,0,0,204,976,ru.po,,ru,,russian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/it.po,204,976,1067,0,0,0,0,204,976,it.po,,it,,italian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/id.po,196,939,912,1,5,7,32,204,976,id.po,,id,,indonesian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/lt.po,70,316,265,30,137,104,523,204,976,lt.po,,lt,,lithuanian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,196,939,1171,1,5,7,32,204,976,pt_br.po,,pt,br,portuguese,,brazil

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/af.po,2,8,9,18,123,184,845,204,976,af.po,,af,,afrikaans,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ja.po,94,448,197,20,75,90,453,204,976,ja.po,,ja,,japanese,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,2,8,8,18,123,184,845,204,976,en_gb.po,,en,gb,english,,united kingdom

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/lv.po,154,770,635,7,41,43,165,204,976,lv.po,,lv,,latvian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fi.po,124,640,416,22,95,58,241,204,976,fi.po,,fi,,finnish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ro.po,80,394,416,18,64,106,518,204,976,ro.po,,ro,,romanian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/or.po,2,8,7,18,123,184,845,204,976,or.po,,or,,odia,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/uk.po,204,976,935,0,0,0,0,204,976,uk.po,,uk,,ukrainian,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/el.po,126,651,687,20,84,58,241,204,976,el.po,,el,,greek,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/da.po,204,976,836,0,0,0,0,204,976,da.po,,da,,danish,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/eo.po,28,167,162,3,17,173,792,204,976,eo.po,,eo,,esperanto,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sk.po,186,887,804,4,28,14,61,204,976,sk.po,,sk,,slovak,,

- gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/nl.po,191,912,911,4,28,9,36,204,976,nl.po,,nl,,dutch,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/gl.po,65,558,715,20,152,13,92,98,802,gl.po,,gl,,galician,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/pl.po,98,802,784,0,0,0,0,98,802,pl.po,,pl,,polish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,88,716,147,6,43,4,43,98,802,zh_cn.po,,zh,cn,chinese,,china

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sr.po,88,716,740,6,43,4,43,98,802,sr.po,,sr,,serbian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/bg.po,88,716,741,6,43,4,43,98,802,bg.po,,bg,,bulgarian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/hr.po,98,802,756,0,0,0,0,98,802,hr.po,,hr,,croatian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fur.po,80,665,840,7,52,11,85,98,802,fur.po,,fur,,friulian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ca.po,53,458,593,29,231,16,113,98,802,ca.po,,ca,,catalan,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/vi.po,88,716,1097,6,43,4,43,98,802,vi.po,,vi,,vietnamese,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/az.po,1,10,9,34,254,63,538,98,802,az.po,,az,,azerbaijani,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/cs.po,88,716,639,6,43,4,43,98,802,cs.po,,cs,,czech,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sl.po,67,572,531,20,152,11,78,98,802,sl.po,,sl,,slovenian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/hu.po,88,716,666,6,43,4,43,98,802,hu.po,,hu,,hungarian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,6,54,8,1,9,91,739,98,802,zh_tw.po,,zh,tw,chinese,,taiwan

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sv.po,98,802,791,0,0,0,0,98,802,sv.po,,sv,,swedish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/nb.po,88,716,665,6,43,4,43,98,802,nb.po,,nb,,norwegian bokmål,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/eu.po,44,405,376,33,258,21,139,98,802,eu.po,,eu,,basque,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/de.po,98,802,845,0,0,0,0,98,802,de.po,,de,,german,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fr.po,88,716,866,6,43,4,43,98,802,fr.po,,fr,,french,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/tr.po,97,784,622,0,0,1,18,98,802,tr.po,,tr,,turkish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sq.po,1,10,13,36,265,61,527,98,802,sq.po,,sq,,albanian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/es.po,56,483,602,28,221,14,98,98,802,es.po,,es,,spanish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ru.po,98,802,694,0,0,0,0,98,802,ru.po,,ru,,russian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_hk.po,6,54,8,1,9,91,739,98,802,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/it.po,98,802,924,0,0,0,0,98,802,it.po,,it,,italian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/id.po,86,702,663,8,57,4,43,98,802,id.po,,id,,indonesian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/lt.po,44,405,308,33,258,21,139,98,802,lt.po,,lt,,lithuanian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/mt.po,40,340,319,36,293,22,169,98,802,mt.po,,mt,,maltese,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,88,716,875,6,43,4,43,98,802,pt_br.po,,pt,br,portuguese,,brazil

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/af.po,1,10,8,34,254,63,538,98,802,af.po,,af,,afrikaans,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ja.po,65,558,161,20,152,13,92,98,802,ja.po,,ja,,japanese,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/en_gb.po,1,10,10,36,265,61,527,98,802,en_gb.po,,en,gb,english,,united kingdom

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/lv.po,67,572,467,20,152,11,78,98,802,lv.po,,lv,,latvian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fi.po,50,432,344,32,258,16,112,98,802,fi.po,,fi,,finnish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ro.po,44,405,448,33,258,21,139,98,802,ro.po,,ro,,romanian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/or.po,1,10,9,38,295,59,497,98,802,or.po,,or,,odia,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/uk.po,98,802,783,0,0,0,0,98,802,uk.po,,uk,,ukrainian,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/el.po,53,458,516,23,186,22,158,98,802,el.po,,el,,greek,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/da.po,98,802,756,0,0,0,0,98,802,da.po,,da,,danish,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/eo.po,6,41,38,1,9,91,752,98,802,eo.po,,eo,,esperanto,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sk.po,83,686,644,8,57,7,59,98,802,sk.po,,sk,,slovak,,

- gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/nl.po,88,716,724,6,43,4,43,98,802,nl.po,,nl,,dutch,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sl.po,10,80,66,0,0,0,0,10,80,sl.po,,sl,,slovenian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/gl.po,10,80,107,0,0,0,0,10,80,gl.po,,gl,,galician,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ro.po,8,56,63,1,4,1,20,10,80,ro.po,,ro,,romanian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sq.po,1,7,8,4,21,5,52,10,80,sq.po,,sq,,albanian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hu.po,10,80,76,0,0,0,0,10,80,hu.po,,hu,,hungarian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hr.po,10,80,68,0,0,0,0,10,80,hr.po,,hr,,croatian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/af.po,1,7,8,4,21,5,52,10,80,af.po,,af,,afrikaans,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/id.po,10,80,71,0,0,0,0,10,80,id.po,,id,,indonesian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/uk.po,10,80,74,0,0,0,0,10,80,uk.po,,uk,,ukrainian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/bg.po,10,80,99,0,0,0,0,10,80,bg.po,,bg,,bulgarian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nb.po,10,80,72,0,0,0,0,10,80,nb.po,,nb,,norwegian bokmål,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/da.po,10,80,69,0,0,0,0,10,80,da.po,,da,,danish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/es.po,10,80,105,0,0,0,0,10,80,es.po,,es,,spanish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/tr.po,10,80,56,0,0,0,0,10,80,tr.po,,tr,,turkish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lv.po,10,80,59,0,0,0,0,10,80,lv.po,,lv,,latvian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fur.po,10,80,87,0,0,0,0,10,80,fur.po,,fur,,friulian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/mt.po,8,56,50,1,4,1,20,10,80,mt.po,,mt,,maltese,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/az.po,1,7,6,4,21,5,52,10,80,az.po,,az,,azerbaijani,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sv.po,10,80,75,0,0,0,0,10,80,sv.po,,sv,,swedish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ca.po,10,80,102,0,0,0,0,10,80,ca.po,,ca,,catalan,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nl.po,10,80,83,0,0,0,0,10,80,nl.po,,nl,,dutch,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sk.po,10,80,73,0,0,0,0,10,80,sk.po,,sk,,slovak,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/cs.po,10,80,75,0,0,0,0,10,80,cs.po,,cs,,czech,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/it.po,10,80,90,0,0,0,0,10,80,it.po,,it,,italian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sr.po,10,80,80,0,0,0,0,10,80,sr.po,,sr,,serbian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fi.po,8,56,47,1,4,1,20,10,80,fi.po,,fi,,finnish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/vi.po,10,80,100,0,0,0,0,10,80,vi.po,,vi,,vietnamese,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/el.po,10,80,107,0,0,0,0,10,80,el.po,,el,,greek,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pl.po,10,80,85,0,0,0,0,10,80,pl.po,,pl,,polish,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ru.po,10,80,67,0,0,0,0,10,80,ru.po,,ru,,russian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,10,80,32,0,0,0,0,10,80,zh_cn.po,,zh,cn,chinese,,china

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/de.po,10,80,91,0,0,0,0,10,80,de.po,,de,,german,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ms.po,8,56,51,1,4,1,20,10,80,ms.po,,ms,,malay,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eu.po,8,56,56,1,4,1,20,10,80,eu.po,,eu,,basque,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eo.po,10,80,79,0,0,0,0,10,80,eo.po,,eo,,esperanto,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ja.po,10,80,18,0,0,0,0,10,80,ja.po,,ja,,japanese,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fr.po,10,80,89,0,0,0,0,10,80,fr.po,,fr,,french,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/or.po,1,7,6,4,21,5,52,10,80,or.po,,or,,odia,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lt.po,5,38,30,3,16,2,26,10,80,lt.po,,lt,,lithuanian,,

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,10,80,107,0,0,0,0,10,80,pt_br.po,,pt,br,portuguese,,brazil

- gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,1,7,7,4,21,5,52,10,80,en_gb.po,,en,gb,english,,united kingdom

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/wa.po,459,1797,2311,184,817,1076,7228,1719,9842,wa.po,,wa,,walloon,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/en_ca.po,1501,8620,8623,165,887,53,335,1719,9842,en_ca.po,,en,ca,english,,canada

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/de.po,1911,10664,9730,0,0,0,0,1911,10664,de.po,,de,,german,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ar.po,1577,9006,7417,109,617,33,219,1719,9842,ar.po,,ar,,arabic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ka.po,1292,7118,4878,255,1448,172,1276,1719,9842,ka.po,,ka,,georgian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_hk.po,1716,9819,2089,0,0,0,0,1716,9819,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/am.po,91,161,170,250,902,1378,8779,1719,9842,am.po,,am,,amharic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uz@cyrillic.po,384,1279,1012,47,210,1288,8353,1719,9842,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bs.po,987,5438,5106,486,2657,246,1747,1719,9842,bs.po,,bs,,bosnian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/lv.po,1500,7984,6338,58,330,161,1528,1719,9842,lv.po,,lv,,latvian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nso.po,987,5438,7966,485,2651,247,1753,1719,9842,nso.po,,nso,,northern sotho,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/dz.po,1390,7921,3051,244,1359,85,562,1719,9842,dz.po,,dz,,dzongkha,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/th.po,154,879,249,41,226,1524,8737,1719,9842,th.po,,th,,thai,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pt.po,1716,9819,11377,0,0,0,0,1716,9819,pt.po,,pt,,portuguese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/yi.po,758,4040,4006,608,3317,353,2485,1719,9842,yi.po,,yi,,yiddish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/br.po,164,281,323,17,50,1538,9511,1719,9842,br.po,,br,,breton,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/te.po,1680,9570,6784,31,202,8,70,1719,9842,te.po,,te,,telugu,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nn.po,903,4951,4476,514,2808,302,2083,1719,9842,nn.po,,nn,,norwegian nynorsk,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bn.po,1718,9837,9350,1,5,0,0,1719,9842,bn.po,,bn,,bangla,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ca@valencia.po,1718,9837,11460,1,5,0,0,1719,9842,ca@valencia.po,valencia,ca,,catalan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/xh.po,1102,6156,5347,425,2339,192,1347,1719,9842,xh.po,,xh,,xhosa,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tr.po,1639,9337,7175,60,354,20,151,1719,9842,tr.po,,tr,,turkish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hu.po,1729,9908,8112,0,0,0,0,1729,9908,hu.po,,hu,,hungarian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nl.po,1641,9344,8717,58,347,20,151,1719,9842,nl.po,,nl,,dutch,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/eu.po,1716,9819,7953,0,0,0,0,1716,9819,eu.po,,eu,,basque,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/kk.po,7,7,7,164,368,1548,9467,1719,9842,kk.po,,kk,,kazakh,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pl.po,1729,9908,8858,0,0,0,0,1729,9908,pl.po,,pl,,polish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ta.po,1680,9570,7251,31,202,8,70,1719,9842,ta.po,,ta,,tamil,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_cn.po,1716,9819,2017,0,0,0,0,1716,9819,zh_cn.po,,zh,cn,chinese,,china

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mr.po,1718,9837,7966,1,5,0,0,1719,9842,mr.po,,mr,,marathi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mai.po,1680,9570,9441,31,202,8,70,1719,9842,mai.po,,mai,,maithili,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/be.po,758,4040,3415,608,3317,353,2485,1719,9842,be.po,,be,,belarusian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bg.po,1718,9837,10226,1,5,0,0,1719,9842,bg.po,,bg,,bulgarian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/gu.po,1680,9570,9098,31,202,8,70,1719,9842,gu.po,,gu,,gujarati,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ku.po,69,108,110,86,280,1564,9454,1719,9842,ku.po,,ku,,kurdish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/en_gb.po,1721,9860,9849,0,0,0,0,1721,9860,en_gb.po,,en,gb,english,,united kingdom

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/az_ir.po,1,2,2,2,4,1716,9836,1719,9842,az_ir.po,,az,ir,azerbaijani,,iran

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/li.po,758,4040,3744,608,3317,353,2485,1719,9842,li.po,,li,,limburgish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/af.po,980,5396,5019,489,2677,250,1769,1719,9842,af.po,,af,,afrikaans,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/si.po,332,1377,1206,103,457,1284,8008,1719,9842,si.po,,si,,sinhala,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/is.po,69,376,332,249,1210,1401,8256,1719,9842,is.po,,is,,icelandic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/it.po,1723,9871,10787,0,0,0,0,1723,9871,it.po,,it,,italian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ang.po,33,91,82,54,225,1632,9526,1719,9842,ang.po,,ang,,old english,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ms.po,925,5021,4230,508,2765,286,2056,1719,9842,ms.po,,ms,,malay,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hi.po,1680,9570,10235,31,202,8,70,1719,9842,hi.po,,hi,,hindi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ro.po,1723,9871,9712,0,0,0,0,1723,9871,ro.po,,ro,,romanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ast.po,1690,9636,10837,23,157,6,49,1719,9842,ast.po,,ast,,asturian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/id.po,1729,9908,8933,0,0,0,0,1729,9908,id.po,,id,,indonesian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sl.po,1716,9819,8802,0,0,0,0,1716,9819,sl.po,,sl,,slovenian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/et.po,822,4033,2992,99,569,794,5215,1715,9817,et.po,,et,,estonian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/my.po,1651,9398,6432,52,316,16,128,1719,9842,my.po,,my,,burmese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/he.po,1716,9819,9819,0,0,0,0,1716,9819,he.po,,he,,hebrew,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mi.po,1,1,1,113,219,1605,9622,1719,9842,mi.po,,mi,,maori,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hr.po,1138,6381,5836,395,2095,186,1366,1719,9842,hr.po,,hr,,croatian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/vi.po,1718,9837,13588,1,5,0,0,1719,9842,vi.po,,vi,,vietnamese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sv.po,1716,9819,8097,0,0,0,0,1716,9819,sv.po,,sv,,swedish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uk.po,1718,9837,8324,1,5,0,0,1719,9842,uk.po,,uk,,ukrainian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/cs.po,1716,9819,8344,0,0,0,0,1716,9819,cs.po,,cs,,czech,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uz.po,384,1279,1012,47,210,1288,8353,1719,9842,uz.po,,uz,,uzbek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr.po,1718,9837,9052,1,5,0,0,1719,9842,sr.po,,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ug.po,12,15,18,253,616,1451,9188,1716,9819,ug.po,,ug,,uyghur,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ml.po,1680,9570,6829,31,202,8,70,1719,9842,ml.po,,ml,,malayalam,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nds.po,560,1536,1242,1153,8239,6,67,1719,9842,nds.po,,nds,,low german,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/gl.po,1716,9819,11730,0,0,0,0,1716,9819,gl.po,,gl,,galician,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ja.po,1713,9814,2317,0,0,3,5,1716,9819,ja.po,,ja,,japanese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/cy.po,1507,8597,8895,163,923,49,322,1719,9842,cy.po,,cy,,welsh,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ps.po,509,1582,1638,33,172,1177,8088,1719,9842,ps.po,,ps,,pashto,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mk.po,1489,8558,8759,176,945,54,339,1719,9842,mk.po,,mk,,macedonian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/io.po,0,0,0,0,0,1719,9842,1719,9842,io.po,,io,,ido,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pt_br.po,1716,9819,11008,0,0,0,0,1716,9819,pt_br.po,,pt,br,portuguese,,brazil

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/or.po,1680,9570,8501,31,202,8,70,1719,9842,or.po,,or,,odia,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ia.po,1,1,1,199,429,1519,9412,1719,9842,ia.po,,ia,,interlingua,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tk.po,5,6,6,204,602,1510,9234,1719,9842,tk.po,,tk,,turkmen,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/el.po,1718,9837,10251,1,5,0,0,1719,9842,el.po,,el,,greek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fa.po,308,1016,970,343,1492,1068,7334,1719,9842,fa.po,,fa,,persian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr@ije.po,987,5438,5051,485,2655,247,1749,1719,9842,sr@ije.po,ije,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mn.po,987,5438,4334,486,2660,246,1744,1719,9842,mn.po,,mn,,mongolian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/oc.po,2110,11611,14089,0,0,0,0,2110,11611,oc.po,,oc,,occitan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sq.po,1577,9006,9943,109,617,33,219,1719,9842,sq.po,,sq,,albanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nb.po,1479,7808,6611,130,1066,107,945,1716,9819,nb.po,,nb,,norwegian bokmål,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sk.po,1559,8863,7526,122,720,38,259,1719,9842,sk.po,,sk,,slovak,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/da.po,1716,9819,8130,0,0,0,0,1716,9819,da.po,,da,,danish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/lt.po,1718,9837,7657,1,5,0,0,1719,9842,lt.po,,lt,,lithuanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ca.po,1718,9837,11460,1,5,0,0,1719,9842,ca.po,,ca,,catalan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr@latin.po,1718,9837,9052,1,5,0,0,1719,9842,sr@latin.po,latin,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pa.po,1718,9837,9672,1,5,0,0,1719,9842,pa.po,,pa,,punjabi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bn_in.po,1718,9837,9344,1,5,0,0,1719,9842,bn_in.po,,bn,in,bangla,,india

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/crh.po,1641,9344,7537,58,347,20,151,1719,9842,crh.po,,crh,,crimean turkish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hy.po,16,38,27,162,489,1541,9315,1719,9842,hy.po,,hy,,armenian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ne.po,1121,6287,5162,411,2240,187,1315,1719,9842,ne.po,,ne,,nepali,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_tw.po,1716,9819,2089,0,0,0,0,1716,9819,zh_tw.po,,zh,tw,chinese,,taiwan

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tt.po,232,533,475,188,679,1299,8630,1719,9842,tt.po,,tt,,tatar,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/es.po,1716,9819,11866,0,0,0,0,1716,9819,es.po,,es,,spanish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/eo.po,0,0,0,0,0,1719,9842,1719,9842,eo.po,,eo,,esperanto,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/kn.po,1682,9574,7031,29,198,8,70,1719,9842,kn.po,,kn,,kannada,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fr.po,1716,9819,11527,0,0,0,0,1716,9819,fr.po,,fr,,french,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ur.po,4,4,4,42,69,1673,9769,1719,9842,ur.po,,ur,,urdu,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/be@latin.po,1490,8572,7361,175,931,54,339,1719,9842,be@latin.po,latin,be,,belarusian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/az.po,987,5438,4244,485,2655,247,1749,1719,9842,az.po,,az,,azerbaijani,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ga.po,158,286,296,83,244,1478,9312,1719,9842,ga.po,,ga,,irish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ko.po,1716,9819,7563,0,0,0,0,1716,9819,ko.po,,ko,,korean,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fi.po,1718,9837,6213,1,5,0,0,1719,9842,fi.po,,fi,,finnish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ru.po,1718,9837,8315,1,5,0,0,1719,9842,ru.po,,ru,,russian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/as.po,1680,9570,8145,31,202,8,70,1719,9842,as.po,,as,,assamese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/rw.po,84,104,104,1156,7791,479,1947,1719,9842,rw.po,,rw,,kinyarwanda,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/wa.po,438,1881,2694,263,570,364,1411,1065,3862,wa.po,,wa,,walloon,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/en_ca.po,586,2734,2735,249,477,230,651,1065,3862,en_ca.po,,en,ca,english,,canada

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/de.po,868,2604,2541,0,0,0,0,868,2604,de.po,,de,,german,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ar.po,866,2562,2420,0,0,0,0,866,2562,ar.po,,ar,,arabic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ka.po,650,3011,2416,222,395,193,456,1065,3862,ka.po,,ka,,georgian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_hk.po,866,2562,1183,0,0,0,0,866,2562,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/am.po,46,64,79,249,442,770,3356,1065,3862,am.po,,am,,amharic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,621,1366,1292,64,128,380,2368,1065,3862,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bs.po,257,1447,1390,324,851,484,1564,1065,3862,bs.po,,bs,,bosnian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/lv.po,1065,3862,3364,0,0,0,0,1065,3862,lv.po,,lv,,latvian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nso.po,258,1448,2259,322,849,485,1565,1065,3862,nso.po,,nso,,northern sotho,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/dz.po,524,2500,1298,404,759,137,603,1065,3862,dz.po,,dz,,dzongkha,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/th.po,870,2610,1383,0,0,0,0,870,2610,th.po,,th,,thai,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pt.po,866,2562,2800,0,0,0,0,866,2562,pt.po,,pt,,portuguese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/yi.po,205,1183,1189,343,960,517,1719,1065,3862,yi.po,,yi,,yiddish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/br.po,530,1052,1227,12,47,523,2763,1065,3862,br.po,,br,,breton,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/te.po,1037,3689,3156,18,93,10,80,1065,3862,te.po,,te,,telugu,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nn.po,972,3463,3395,44,134,49,265,1065,3862,nn.po,,nn,,norwegian nynorsk,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bn.po,1065,3862,4093,0,0,0,0,1065,3862,bn.po,,bn,,bangla,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,1065,3862,4945,0,0,0,0,1065,3862,ca@valencia.po,valencia,ca,,catalan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/xh.po,325,1728,1528,299,728,441,1406,1065,3862,xh.po,,xh,,xhosa,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tr.po,988,3511,3047,40,121,37,230,1065,3862,tr.po,,tr,,turkish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hu.po,870,2610,2408,0,0,0,0,870,2610,hu.po,,hu,,hungarian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nl.po,867,2581,2594,0,0,0,0,867,2581,nl.po,,nl,,dutch,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/eu.po,540,2125,1874,0,0,0,0,540,2125,eu.po,,eu,,basque,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/kk.po,866,2562,2305,0,0,0,0,866,2562,kk.po,,kk,,kazakh,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pl.po,862,2584,2598,0,0,0,0,862,2584,pl.po,,pl,,polish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ta.po,1037,3689,3321,18,93,10,80,1065,3862,ta.po,,ta,,tamil,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_cn.po,862,2553,1129,3,20,3,31,868,2604,zh_cn.po,,zh,cn,chinese,,china

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mr.po,1063,3840,3970,2,22,0,0,1065,3862,mr.po,,mr,,marathi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mai.po,1037,3689,4108,18,93,10,80,1065,3862,mai.po,,mai,,maithili,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/be.po,855,2469,2285,0,0,13,135,868,2604,be.po,,be,,belarusian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bg.po,1065,3862,4582,0,0,0,0,1065,3862,bg.po,,bg,,bulgarian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/gu.po,844,2436,2775,19,106,3,20,866,2562,gu.po,,gu,,gujarati,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ku.po,621,2761,3002,219,443,225,658,1065,3862,ku.po,,ku,,kurdish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/en_gb.po,867,2581,2582,0,0,0,0,867,2581,en_gb.po,,en,gb,english,,united kingdom

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,1052,3847,1065,3862,az_ir.po,,az,ir,azerbaijani,,iran

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/li.po,205,1183,1145,343,960,517,1719,1065,3862,li.po,,li,,limburgish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/af.po,927,3241,3225,24,61,114,560,1065,3862,af.po,,af,,afrikaans,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/si.po,482,2073,2186,268,561,315,1228,1065,3862,si.po,,si,,sinhala,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/is.po,215,1079,1062,318,849,532,1934,1065,3862,is.po,,is,,icelandic,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/it.po,867,2581,2742,0,0,0,0,867,2581,it.po,,it,,italian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ang.po,78,312,272,171,421,816,3129,1065,3862,ang.po,,ang,,old english,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ms.po,240,1320,1237,323,844,502,1698,1065,3862,ms.po,,ms,,malay,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hi.po,1037,3689,4363,18,93,10,80,1065,3862,hi.po,,hi,,hindi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ro.po,868,2604,2807,0,0,0,0,868,2604,ro.po,,ro,,romanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ast.po,1053,3792,4231,9,49,3,21,1065,3862,ast.po,,ast,,asturian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/id.po,862,2584,2525,0,0,0,0,862,2584,id.po,,id,,indonesian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sl.po,866,2562,2540,0,0,0,0,866,2562,sl.po,,sl,,slovenian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/et.po,866,2562,2217,0,0,0,0,866,2562,et.po,,et,,estonian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/my.po,1019,3612,2931,25,127,21,123,1065,3862,my.po,,my,,burmese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/he.po,870,2610,2495,0,0,0,0,870,2610,he.po,,he,,hebrew,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mi.po,204,1018,1135,310,826,551,2018,1065,3862,mi.po,,mi,,maori,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hr.po,348,1906,1845,276,617,441,1339,1065,3862,hr.po,,hr,,croatian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/vi.po,1063,3840,5204,2,22,0,0,1065,3862,vi.po,,vi,,vietnamese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sv.po,866,2562,2479,0,0,0,0,866,2562,sv.po,,sv,,swedish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uk.po,1065,3862,3708,0,0,0,0,1065,3862,uk.po,,uk,,ukrainian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/cs.po,867,2581,2414,0,0,0,0,867,2581,cs.po,,cs,,czech,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uz.po,621,1366,1292,64,128,380,2368,1065,3862,uz.po,,uz,,uzbek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr.po,1065,3862,3844,0,0,0,0,1065,3862,sr.po,,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ug.po,866,2562,2312,0,0,0,0,866,2562,ug.po,,ug,,uyghur,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ml.po,1037,3689,3259,18,93,10,80,1065,3862,ml.po,,ml,,malayalam,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nds.po,678,1422,1536,0,0,387,2440,1065,3862,nds.po,,nds,,low german,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/gl.po,866,2562,3000,0,0,0,0,866,2562,gl.po,,gl,,galician,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ja.po,861,2550,1329,5,29,4,31,870,2610,ja.po,,ja,,japanese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/cy.po,901,3190,3511,75,201,89,471,1065,3862,cy.po,,cy,,welsh,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ps.po,413,859,939,29,69,623,2934,1065,3862,ps.po,,ps,,pashto,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mk.po,559,2639,2994,272,560,234,663,1065,3862,mk.po,,mk,,macedonian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/io.po,348,1168,1106,247,467,470,2227,1065,3862,io.po,,io,,ido,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pt_br.po,866,2562,2849,0,0,0,0,866,2562,pt_br.po,,pt,br,portuguese,,brazil

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/or.po,1044,3721,3892,10,60,11,81,1065,3862,or.po,,or,,odia,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ia.po,868,2604,2983,0,0,0,0,868,2604,ia.po,,ia,,interlingua,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tk.po,77,209,210,264,543,724,3110,1065,3862,tk.po,,tk,,turkmen,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/el.po,866,2562,2736,0,0,0,0,866,2562,el.po,,el,,greek,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fa.po,319,1713,1772,301,738,445,1411,1065,3862,fa.po,,fa,,persian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr@ije.po,258,1448,1397,326,853,481,1561,1065,3862,sr@ije.po,ije,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mn.po,255,1429,1314,328,869,482,1564,1065,3862,mn.po,,mn,,mongolian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/oc.po,1245,3525,4086,0,0,4,17,1249,3542,oc.po,,oc,,occitan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sq.po,987,3503,4104,39,119,39,240,1065,3862,sq.po,,sq,,albanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nb.po,868,2604,2585,0,0,0,0,868,2604,nb.po,,nb,,norwegian bokmål,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sk.po,1043,3724,3552,14,83,8,55,1065,3862,sk.po,,sk,,slovak,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/da.po,866,2562,2420,0,0,0,0,866,2562,da.po,,da,,danish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/lt.po,1065,3862,3397,0,0,0,0,1065,3862,lt.po,,lt,,lithuanian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ca.po,1065,3862,4949,0,0,0,0,1065,3862,ca.po,,ca,,catalan,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr@latin.po,1065,3862,3844,0,0,0,0,1065,3862,sr@latin.po,latin,sr,,serbian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pa.po,1065,3862,4366,0,0,0,0,1065,3862,pa.po,,pa,,punjabi,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bn_in.po,1063,3840,4178,2,22,0,0,1065,3862,bn_in.po,,bn,in,bangla,,india

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/crh.po,981,3469,3047,39,119,45,274,1065,3862,crh.po,,crh,,crimean turkish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hy.po,299,1638,1500,301,790,465,1434,1065,3862,hy.po,,hy,,armenian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ne.po,343,1874,1801,258,607,464,1381,1065,3862,ne.po,,ne,,nepali,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_tw.po,866,2562,1183,0,0,0,0,866,2562,zh_tw.po,,zh,tw,chinese,,taiwan

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tt.po,179,608,466,236,477,650,2777,1065,3862,tt.po,,tt,,tatar,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/es.po,868,2604,3060,0,0,0,0,868,2604,es.po,,es,,spanish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/eo.po,503,2364,2212,228,483,334,1015,1065,3862,eo.po,,eo,,esperanto,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/kn.po,1047,3748,3374,10,59,8,55,1065,3862,kn.po,,kn,,kannada,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fr.po,866,2562,2975,0,0,0,0,866,2562,fr.po,,fr,,french,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ur.po,12,12,14,42,44,1011,3806,1065,3862,ur.po,,ur,,urdu,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/be@latin.po,986,3491,3344,39,119,40,252,1065,3862,be@latin.po,latin,be,,belarusian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/az.po,257,1447,1258,323,848,485,1567,1065,3862,az.po,,az,,azerbaijani,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ga.po,990,3234,3657,18,93,57,535,1065,3862,ga.po,,ga,,irish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ko.po,866,2562,2312,0,0,0,0,866,2562,ko.po,,ko,,korean,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fi.po,1065,3862,3092,0,0,0,0,1065,3862,fi.po,,fi,,finnish,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ru.po,1063,3840,3771,2,22,0,0,1065,3862,ru.po,,ru,,russian,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/as.po,1039,3711,3899,18,96,8,55,1065,3862,as.po,,as,,assamese,,

- gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/rw.po,28,32,36,545,2359,492,1471,1065,3862,rw.po,,rw,,kinyarwanda,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ja.po,1628,9159,2151,197,931,86,566,1911,10656,ja.po,,ja,,japanese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mn.po,890,4865,3867,522,2791,254,1765,1666,9421,mn.po,,mn,,mongolian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nso.po,890,4865,7165,521,2782,255,1774,1666,9421,nso.po,,nso,,northern sotho,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ta.po,2041,11341,8502,0,0,0,0,2041,11341,ta.po,,ta,,tamil,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ne.po,1085,5689,4718,963,4712,177,1762,2225,12163,ne.po,,ne,,nepali,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/as.po,2041,11341,9554,0,0,0,0,2041,11341,as.po,,as,,assamese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ky.po,94,351,263,0,0,1817,10305,1911,10656,ky.po,,ky,,kyrgyz,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fi.po,1629,8902,5674,408,2121,206,1236,2243,12259,fi.po,,fi,,finnish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/az.po,890,4865,3819,521,2786,255,1770,1666,9421,az.po,,az,,azerbaijani,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/be@latin.po,1364,7766,6691,228,1205,74,450,1666,9421,be@latin.po,latin,be,,belarusian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nl.po,2243,12259,11695,0,0,0,0,2243,12259,nl.po,,nl,,dutch,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pt.po,2223,12154,14095,0,0,0,0,2223,12154,pt.po,,pt,,portuguese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/my.po,1515,8550,5859,115,632,36,239,1666,9421,my.po,,my,,burmese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_hk.po,2041,11341,2453,0,0,0,0,2041,11341,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ga.po,144,259,269,100,287,1422,8875,1666,9421,ga.po,,ga,,irish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/eu.po,2243,12259,9908,0,0,0,0,2243,12259,eu.po,,eu,,basque,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tr.po,2243,12259,9730,0,0,0,0,2243,12259,tr.po,,tr,,turkish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ang.po,30,79,73,61,254,1575,9088,1666,9421,ang.po,,ang,,old english,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hi.po,1911,10656,11375,0,0,0,0,1911,10656,hi.po,,hi,,hindi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hy.po,1627,9220,7803,23,115,16,86,1666,9421,hy.po,,hy,,armenian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/am.po,86,152,157,270,976,1310,8293,1666,9421,am.po,,am,,amharic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sk.po,2243,12259,11162,0,0,0,0,2243,12259,sk.po,,sk,,slovak,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en_gb.po,2223,12154,12167,0,0,0,0,2223,12154,en_gb.po,,en,gb,english,,united kingdom

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kn.po,1146,3235,3216,0,0,0,0,1146,3235,kn.po,,kn,,kannada,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mk.po,1363,7752,7949,229,1219,74,450,1666,9421,mk.po,,mk,,macedonian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ast.po,1818,10199,11398,0,0,0,0,1818,10199,ast.po,,ast,,asturian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tg.po,2023,11243,10638,0,0,0,0,2023,11243,tg.po,,tg,,tajik,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uz.po,368,1220,962,88,399,1210,7802,1666,9421,uz.po,,uz,,uzbek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en@shaw.po,1362,7355,7355,310,2235,0,0,1672,9590,en@shaw.po,shaw,en,,english,shavian,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/xh.po,1002,5559,4834,463,2493,201,1369,1666,9421,xh.po,,xh,,xhosa,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ar.po,1446,8183,6712,167,908,53,330,1666,9421,ar.po,,ar,,arabic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hu.po,2243,12259,9978,0,0,0,0,2243,12259,hu.po,,hu,,hungarian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ug.po,1908,10631,8566,0,0,7,53,1915,10684,ug.po,,ug,,uyghur,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ko.po,2243,12259,9423,0,0,0,0,2243,12259,ko.po,,ko,,korean,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ka.po,1183,6448,4441,304,1688,179,1285,1666,9421,ka.po,,ka,,georgian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/rw.po,82,101,100,1116,7392,468,1928,1666,9421,rw.po,,rw,,kinyarwanda,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ro.po,1798,9969,10048,294,1441,151,849,2243,12259,ro.po,,ro,,romanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fur.po,669,3021,3483,27,102,1531,9053,2227,12176,fur.po,,fur,,friulian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/af.po,852,4606,4261,910,4648,467,2933,2229,12187,af.po,,af,,afrikaans,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bg.po,1915,10684,11145,0,0,0,0,1915,10684,bg.po,,bg,,bulgarian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en.po,0,0,0,0,0,1778,9985,1778,9985,en.po,,en,,english,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/wa.po,427,1664,2145,223,988,1016,6769,1666,9421,wa.po,,wa,,walloon,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kk.po,277,661,588,0,0,1966,11598,2243,12259,kk.po,,kk,,kazakh,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/it.po,2243,12259,13361,0,0,0,0,2243,12259,it.po,,it,,italian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nds.po,515,1405,1134,1125,7838,26,178,1666,9421,nds.po,,nds,,low german,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lv.po,2243,12259,9790,0,0,0,0,2243,12259,lv.po,,lv,,latvian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/io.po,0,0,0,0,0,1666,9421,1666,9421,io.po,,io,,ido,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gl.po,2243,12259,14529,0,0,0,0,2243,12259,gl.po,,gl,,galician,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ur.po,4,4,4,44,74,1618,9343,1666,9421,ur.po,,ur,,urdu,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/yi.po,681,3591,3559,632,3374,353,2456,1666,9421,yi.po,,yi,,yiddish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gd.po,2227,12176,15288,0,0,0,0,2227,12176,gd.po,,gd,,scottish gaelic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr@latin.po,2227,12176,11384,0,0,0,0,2227,12176,sr@latin.po,latin,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ia.po,1,1,1,207,454,1458,8966,1666,9421,ia.po,,ia,,interlingua,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/id.po,2243,12259,10976,0,0,0,0,2243,12259,id.po,,id,,indonesian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/es.po,2243,12259,14808,0,0,0,0,2243,12259,es.po,,es,,spanish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pa.po,2181,11945,11750,2,18,2,24,2185,11987,pa.po,,pa,,punjabi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_tw.po,2243,12259,2724,0,0,0,0,2243,12259,zh_tw.po,,zh,tw,chinese,,taiwan

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/vi.po,2154,11849,16298,0,0,0,0,2154,11849,vi.po,,vi,,vietnamese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mi.po,1,1,1,120,236,1545,9184,1666,9421,mi.po,,mi,,maori,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/cs.po,2243,12259,10613,0,0,0,0,2243,12259,cs.po,,cs,,czech,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ms.po,840,4514,3815,540,2876,286,2031,1666,9421,ms.po,,ms,,malay,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/el.po,2225,12163,12801,0,0,0,0,2225,12163,el.po,,el,,greek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/br.po,157,265,306,18,41,1491,9115,1666,9421,br.po,,br,,breton,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en_ca.po,1375,7814,7817,218,1161,73,446,1666,9421,en_ca.po,,en,ca,english,,canada

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fr.po,2243,12259,14758,0,0,0,0,2243,12259,fr.po,,fr,,french,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tk.po,5,6,6,217,647,1444,8768,1666,9421,tk.po,,tk,,turkmen,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bn_in.po,1577,8957,8514,69,353,20,111,1666,9421,bn_in.po,,bn,in,bangla,,india

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/az_ir.po,0,0,0,2,4,1664,9417,1666,9421,az_ir.po,,az,ir,azerbaijani,,iran

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/km.po,1911,10656,2871,0,0,0,0,1911,10656,km.po,,km,,khmer,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kg.po,12,15,15,257,630,1397,8776,1666,9421,kg.po,,kg,,kongo,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/et.po,791,3778,2802,457,2259,979,6139,2227,12176,et.po,,et,,estonian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/da.po,2243,12259,10083,0,0,0,0,2243,12259,da.po,,da,,danish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr@ije.po,890,4865,4522,521,2786,255,1770,1666,9421,sr@ije.po,ije,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mr.po,2041,11341,9083,0,0,0,0,2041,11341,mr.po,,mr,,marathi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_cn.po,2227,12176,2644,1,1,1,10,2229,12187,zh_cn.po,,zh,cn,chinese,,china

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gu.po,1933,10695,10095,79,440,29,206,2041,11341,gu.po,,gu,,gujarati,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fa.po,381,1236,1168,386,1801,1039,7092,1806,10129,fa.po,,fa,,persian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pt_br.po,2243,12259,13818,0,0,0,0,2243,12259,pt_br.po,,pt,br,portuguese,,brazil

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/eo.po,729,2911,2640,136,663,1362,8602,2227,12176,eo.po,,eo,,esperanto,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/dz.po,1270,7185,2790,291,1563,105,673,1666,9421,dz.po,,dz,,dzongkha,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/si.po,317,1290,1143,142,647,1207,7484,1666,9421,si.po,,si,,sinhala,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uz@cyrillic.po,368,1220,962,88,399,1210,7802,1666,9421,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uk.po,1877,10467,8839,0,0,0,0,1877,10467,uk.po,,uk,,ukrainian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sl.po,2243,12259,11145,0,0,0,0,2243,12259,sl.po,,sl,,slovenian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bs.po,1919,10700,9951,0,0,0,0,1919,10700,bs.po,,bs,,bosnian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pl.po,2243,12259,10989,0,0,0,0,2243,12259,pl.po,,pl,,polish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/li.po,681,3591,3334,632,3374,353,2456,1666,9421,li.po,,li,,limburgish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ku.po,66,103,102,97,325,1503,8993,1666,9421,ku.po,,ku,,kurdish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/crh.po,1692,9595,7730,9,102,18,145,1719,9842,crh.po,,crh,,crimean turkish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lg.po,0,0,0,0,0,1716,9819,1716,9819,lg.po,,lg,,ganda,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/he.po,2227,12176,12176,0,0,0,0,2227,12176,he.po,,he,,hebrew,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr.po,2243,12259,11458,0,0,0,0,2243,12259,sr.po,,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ca.po,2236,12225,14501,4,18,1,9,2241,12252,ca.po,,ca,,catalan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nn.po,831,4515,4075,539,2880,296,2026,1666,9421,nn.po,,nn,,norwegian nynorsk,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/an.po,1633,8891,10178,380,2291,7,45,2020,11227,an.po,,an,,aragonese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ru.po,2243,12259,10502,0,0,0,0,2243,12259,ru.po,,ru,,russian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lt.po,2243,12259,9597,0,0,0,0,2243,12259,lt.po,,lt,,lithuanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bn.po,1577,8957,8520,69,353,20,111,1666,9421,bn.po,,bn,,bangla,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/or.po,1749,9448,8442,82,578,46,441,1877,10467,or.po,,or,,odia,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/oc.po,2104,11544,13971,83,438,17,90,2204,12072,oc.po,,oc,,occitan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mai.po,1540,8700,8583,98,540,28,181,1666,9421,mai.po,,mai,,maithili,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/be.po,681,3591,3020,632,3374,353,2456,1666,9421,be.po,,be,,belarusian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sq.po,1446,8183,9029,167,908,53,330,1666,9421,sq.po,,sq,,albanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sv.po,2243,12259,10152,0,0,0,0,2243,12259,sv.po,,sv,,swedish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ca@valencia.po,2225,12163,14425,0,0,0,0,2225,12163,ca@valencia.po,valencia,ca,,catalan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ml.po,1540,8700,6215,98,540,28,181,1666,9421,ml.po,,ml,,malayalam,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hr.po,2243,12259,10859,0,0,0,0,2243,12259,hr.po,,hr,,croatian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/th.po,153,862,236,72,395,1441,8164,1666,9421,th.po,,th,,thai,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/te.po,1911,10656,7759,0,0,0,0,1911,10656,te.po,,te,,telugu,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/is.po,539,1577,1390,27,133,1661,10466,2227,12176,is.po,,is,,icelandic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/de.po,2243,12259,11338,0,0,0,0,2243,12259,de.po,,de,,german,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nb.po,1622,8025,6828,274,1927,205,1627,2101,11579,nb.po,,nb,,norwegian bokmål,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tt.po,220,509,455,222,836,1224,8076,1666,9421,tt.po,,tt,,tatar,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ps.po,470,1445,1510,76,351,1120,7625,1666,9421,ps.po,,ps,,pashto,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/cy.po,1381,7791,8074,216,1197,69,433,1666,9421,cy.po,,cy,,welsh,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ja.po,1450,3824,2047,42,132,173,452,1665,4408,ja.po,,ja,,japanese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mn.po,82,395,338,265,506,474,1531,821,2432,mn.po,,mn,,mongolian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nso.po,84,399,562,260,501,477,1532,821,2432,nso.po,,nso,,northern sotho,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ta.po,1146,3235,3081,0,0,0,0,1146,3235,ta.po,,ta,,tamil,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ne.po,709,1600,1628,565,1628,85,618,1359,3846,ne.po,,ne,,nepali,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/as.po,1142,3231,3574,0,0,0,0,1142,3231,as.po,,as,,assamese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ky.po,66,83,82,3,3,862,2609,931,2695,ky.po,,ky,,kyrgyz,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fi.po,1191,3258,2783,95,219,377,929,1663,4406,fi.po,,fi,,finnish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/az.po,83,398,331,261,500,477,1534,821,2432,az.po,,az,,azerbaijani,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/be@latin.po,743,2090,1940,41,107,37,235,821,2432,be@latin.po,latin,be,,belarusian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nl.po,1663,4406,4336,0,0,0,0,1663,4406,nl.po,,nl,,dutch,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pt.po,1351,3852,4234,0,0,0,0,1351,3852,pt.po,,pt,,portuguese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/my.po,776,2216,1810,29,135,16,81,821,2432,my.po,,my,,burmese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1142,3231,1571,0,0,0,0,1142,3231,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ga.po,882,2141,2357,51,273,163,896,1096,3310,ga.po,,ga,,irish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/eu.po,1663,4406,4206,0,0,0,0,1663,4406,eu.po,,eu,,basque,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tr.po,1663,4408,4108,0,0,0,0,1663,4408,tr.po,,tr,,turkish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ang.po,27,79,71,138,256,656,2097,821,2432,ang.po,,ang,,old english,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hi.po,1146,3235,3797,0,0,0,0,1146,3235,hi.po,,hi,,hindi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hy.po,494,1993,1802,53,67,274,372,821,2432,hy.po,,hy,,armenian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/am.po,23,32,42,233,378,565,2022,821,2432,am.po,,am,,amharic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sk.po,1516,4060,4027,26,51,124,298,1666,4409,sk.po,,sk,,slovak,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en_gb.po,1666,4409,4450,0,0,0,0,1666,4409,en_gb.po,,en,gb,english,,united kingdom

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kn.po,1146,3235,3216,0,0,0,0,1146,3235,kn.po,,kn,,kannada,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mk.po,342,1357,1470,249,435,230,640,821,2432,mk.po,,mk,,macedonian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ast.po,810,2366,2499,10,55,1,11,821,2432,ast.po,,ast,,asturian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tg.po,1136,2881,3208,58,356,53,273,1247,3510,tg.po,,tg,,tajik,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uz.po,555,1157,1093,67,127,199,1148,821,2432,uz.po,,uz,,uzbek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en@shaw.po,782,3077,3078,235,633,0,0,1017,3710,en@shaw.po,shaw,en,,english,shavian,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/xh.po,135,597,506,254,481,432,1354,821,2432,xh.po,,xh,,xhosa,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ar.po,1217,3377,3270,7,12,144,468,1368,3857,ar.po,,ar,,arabic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hu.po,1663,4408,4209,0,0,0,0,1663,4408,hu.po,,hu,,hungarian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ug.po,932,2707,2470,0,0,0,0,932,2707,ug.po,,ug,,uyghur,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ko.po,1663,4406,4240,0,0,0,0,1663,4406,ko.po,,ko,,korean,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ka.po,409,1612,1257,222,381,190,439,821,2432,ka.po,,ka,,georgian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/rw.po,21,24,26,323,983,477,1425,821,2432,rw.po,,rw,,kinyarwanda,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ro.po,1620,4307,4773,11,24,32,77,1663,4408,ro.po,,ro,,romanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fur.po,1539,4097,4649,18,37,109,275,1666,4409,fur.po,,fur,,friulian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/af.po,1238,3162,3202,0,0,134,707,1372,3869,af.po,,af,,afrikaans,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bg.po,1334,3782,4286,0,0,0,0,1334,3782,bg.po,,bg,,bulgarian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en.po,49,49,92,0,0,817,2517,866,2566,en.po,,en,,english,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/wa.po,251,797,1053,241,452,329,1183,821,2432,wa.po,,wa,,walloon,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kk.po,1522,4091,3836,0,0,141,315,1663,4406,kk.po,,kk,,kazakh,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/it.po,1663,4408,4719,0,0,0,0,1663,4408,it.po,,it,,italian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nds.po,580,1062,1119,8,24,233,1346,821,2432,nds.po,,nds,,low german,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lv.po,1666,4409,4164,0,0,0,0,1666,4409,lv.po,,lv,,latvian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/io.po,248,782,739,229,378,344,1272,821,2432,io.po,,io,,ido,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gl.po,1666,4409,5144,0,0,0,0,1666,4409,gl.po,,gl,,galician,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ur.po,11,11,13,43,45,767,2376,821,2432,ur.po,,ur,,urdu,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/yi.po,55,288,315,262,490,504,1654,821,2432,yi.po,,yi,,yiddish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gd.po,1372,3869,4975,0,0,0,0,1372,3869,gd.po,,gd,,scottish gaelic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1372,3869,3915,0,0,0,0,1372,3869,sr@latin.po,latin,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ia.po,932,2706,3109,0,0,0,0,932,2706,ia.po,,ia,,interlingua,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/id.po,1663,4408,4365,0,0,0,0,1663,4408,id.po,,id,,indonesian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/es.po,1663,4408,5201,0,0,0,0,1663,4408,es.po,,es,,spanish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pa.po,1335,3791,4225,0,0,0,0,1335,3791,pa.po,,pa,,punjabi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1377,3875,1887,42,76,247,458,1666,4409,zh_tw.po,,zh,tw,chinese,,taiwan

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/vi.po,1308,3731,5136,0,0,0,0,1308,3731,vi.po,,vi,,vietnamese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mi.po,56,211,200,252,500,513,1721,821,2432,mi.po,,mi,,maori,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/cs.po,1663,4408,4287,0,0,0,0,1663,4408,cs.po,,cs,,czech,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ms.po,72,331,295,263,504,486,1597,821,2432,ms.po,,ms,,malay,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/el.po,1234,3227,3487,60,136,290,764,1584,4127,el.po,,el,,greek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/br.po,794,1424,1712,1,2,439,2037,1234,3463,br.po,,br,,breton,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en_ca.po,357,1388,1387,238,416,226,628,821,2432,en_ca.po,,en,ca,english,,canada

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fr.po,1666,4409,5163,0,0,0,0,1666,4409,fr.po,,fr,,french,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tk.po,35,73,74,239,427,547,1932,821,2432,tk.po,,tk,,turkmen,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bn_in.po,955,2772,3100,0,0,0,0,955,2772,bn_in.po,,bn,in,bangla,,india

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,808,2417,821,2432,az_ir.po,,az,ir,azerbaijani,,iran

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/km.po,931,2695,1578,0,0,0,0,931,2695,km.po,,km,,khmer,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kg.po,971,3230,3181,21,118,73,514,1065,3862,kg.po,,kg,,kongo,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/et.po,955,2408,2206,158,550,257,902,1370,3860,et.po,,et,,estonian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/da.po,1663,4408,4122,0,0,0,0,1663,4408,da.po,,da,,danish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr@ije.po,84,399,378,264,505,473,1528,821,2432,sr@ije.po,ije,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mr.po,1142,3231,3362,0,0,0,0,1142,3231,mr.po,,mr,,marathi,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1372,3869,1845,0,0,0,0,1372,3869,zh_cn.po,,zh,cn,chinese,,china

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gu.po,1110,2996,3452,7,52,25,183,1142,3231,gu.po,,gu,,gujarati,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fa.po,1361,3850,4292,0,0,0,0,1361,3850,fa.po,,fa,,persian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pt_br.po,1663,4408,4961,0,0,0,0,1663,4408,pt_br.po,,pt,br,portuguese,,brazil

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/eo.po,1522,4109,3955,20,39,124,261,1666,4409,eo.po,,eo,,esperanto,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/dz.po,306,1223,605,380,627,135,582,821,2432,dz.po,,dz,,dzongkha,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/si.po,279,908,979,243,421,299,1103,821,2432,si.po,,si,,sinhala,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,555,1157,1093,67,127,199,1148,821,2432,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uk.po,1352,3855,3559,0,0,0,0,1352,3855,uk.po,,uk,,ukrainian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sl.po,1663,4406,4499,0,0,0,0,1663,4406,sl.po,,sl,,slovenian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bs.po,1030,3062,2991,0,0,0,0,1030,3062,bs.po,,bs,,bosnian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pl.po,1664,4410,4533,0,0,0,0,1664,4410,pl.po,,pl,,polish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/li.po,55,288,286,262,490,504,1654,821,2432,li.po,,li,,limburgish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ku.po,775,2301,2489,3,14,44,137,822,2452,ku.po,,ku,,kurdish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/crh.po,789,2121,1901,21,72,114,459,924,2652,crh.po,,crh,,crimean turkish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lg.po,677,1889,2048,0,0,162,633,839,2522,lg.po,,lg,,ganda,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/he.po,1370,3860,3820,0,0,0,0,1370,3860,he.po,,he,,hebrew,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr.po,1518,4130,4187,34,72,111,204,1663,4406,sr.po,,sr,,serbian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ca.po,1580,4182,5060,75,193,11,34,1666,4409,ca.po,,ca,,catalan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nn.po,854,2383,2324,15,58,55,210,924,2651,nn.po,,nn,,norwegian nynorsk,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/an.po,955,2772,3218,0,0,0,0,955,2772,an.po,,an,,aragonese,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ru.po,1437,3983,3860,23,45,206,381,1666,4409,ru.po,,ru,,russian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lt.po,1666,4409,4027,0,0,0,0,1666,4409,lt.po,,lt,,lithuanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bn.po,866,2566,2762,0,0,0,0,866,2566,bn.po,,bn,,bangla,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/or.po,955,2772,2979,0,0,0,0,955,2772,or.po,,or,,odia,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/oc.po,1278,3532,4119,21,94,53,227,1352,3853,oc.po,,oc,,occitan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mai.po,791,2273,2543,25,121,5,38,821,2432,mai.po,,mai,,maithili,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/be.po,1048,2981,2786,0,0,0,0,1048,2981,be.po,,be,,belarusian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sq.po,744,2102,2391,41,107,36,223,821,2432,sq.po,,sq,,albanian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sv.po,1663,4408,4191,0,0,0,0,1663,4408,sv.po,,sv,,swedish,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1361,3850,4686,0,0,0,0,1361,3850,ca@valencia.po,valencia,ca,,catalan,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ml.po,955,2772,2485,0,0,0,0,955,2772,ml.po,,ml,,malayalam,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hr.po,1666,4409,4322,0,0,0,0,1666,4409,hr.po,,hr,,croatian,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/th.po,1351,3852,2114,0,0,0,0,1351,3852,th.po,,th,,thai,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/te.po,1146,3235,3019,0,0,0,0,1146,3235,te.po,,te,,telugu,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/is.po,1527,4024,3994,17,40,119,342,1663,4406,is.po,,is,,icelandic,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/de.po,1663,4408,4294,0,0,0,0,1663,4408,de.po,,de,,german,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nb.po,1370,3860,3854,0,0,0,0,1370,3860,nb.po,,nb,,norwegian bokmål,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tt.po,87,186,161,208,359,526,1887,821,2432,tt.po,,tt,,tatar,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ps.po,345,636,671,31,64,445,1732,821,2432,ps.po,,ps,,pashto,,

- gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/cy.po,670,1846,1951,66,138,85,448,821,2432,cy.po,,cy,,welsh,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/si.po,7,8,9,9,14,90,300,106,322,si.po,,si,,sinhala,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pt.po,94,255,296,12,67,0,0,106,322,pt.po,,pt,,portuguese,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en_ca.po,16,72,72,23,84,67,166,106,322,en_ca.po,,en,ca,english,,canada

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sk.po,105,320,327,1,2,0,0,106,322,sk.po,,sk,,slovak,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_cn.po,105,320,145,1,2,0,0,106,322,zh_cn.po,,zh,cn,chinese,,china

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/de.po,106,322,297,0,0,0,0,106,322,de.po,,de,,german,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/dz.po,16,72,44,25,87,65,163,106,322,dz.po,,dz,,dzongkha,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nb.po,103,315,306,1,2,2,5,106,322,nb.po,,nb,,norwegian bokmål,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/gl.po,105,320,384,1,2,0,0,106,322,gl.po,,gl,,galician,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/eu.po,106,322,290,0,0,0,0,106,322,eu.po,,eu,,basque,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/rw.po,1,1,1,5,7,100,314,106,322,rw.po,,rw,,kinyarwanda,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pl.po,106,322,317,0,0,0,0,106,322,pl.po,,pl,,polish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mg.po,3,4,5,10,15,93,303,106,322,mg.po,,mg,,malagasy,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hu.po,106,322,295,0,0,0,0,106,322,hu.po,,hu,,hungarian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fur.po,57,79,82,1,2,48,241,106,322,fur.po,,fur,,friulian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_tw.po,105,320,143,1,2,0,0,106,322,zh_tw.po,,zh,tw,chinese,,taiwan

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mr.po,20,94,94,25,83,61,145,106,322,mr.po,,mr,,marathi,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/he.po,94,255,253,12,67,0,0,106,322,he.po,,he,,hebrew,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en@shaw.po,22,74,74,29,115,55,133,106,322,en@shaw.po,shaw,en,,english,shavian,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fi.po,59,163,128,16,73,31,86,106,322,fi.po,,fi,,finnish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sr@latin.po,105,320,331,1,2,0,0,106,322,sr@latin.po,latin,sr,,serbian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/be.po,105,320,314,1,2,0,0,106,322,be.po,,be,,belarusian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/kk.po,79,145,144,1,2,26,175,106,322,kk.po,,kk,,kazakh,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pa.po,43,130,136,23,87,40,105,106,322,pa.po,,pa,,punjabi,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sq.po,3,4,5,10,15,93,303,106,322,sq.po,,sq,,albanian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/es.po,106,322,398,0,0,0,0,106,322,es.po,,es,,spanish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/cs.po,106,322,320,0,0,0,0,106,322,cs.po,,cs,,czech,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ar.po,20,94,85,25,83,61,145,106,322,ar.po,,ar,,arabic,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bn_in.po,20,94,101,25,83,61,145,106,322,bn_in.po,,bn,in,bangla,,india

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/et.po,30,106,83,17,61,59,155,106,322,et.po,,et,,estonian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ru.po,88,220,211,13,69,5,33,106,322,ru.po,,ru,,russian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/tg.po,11,11,13,6,8,89,303,106,322,tg.po,,tg,,tajik,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ga.po,16,39,38,10,27,80,256,106,322,ga.po,,ga,,irish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/cy.po,3,4,4,10,15,93,303,106,322,cy.po,,cy,,welsh,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fa.po,4,8,8,9,13,93,301,106,322,fa.po,,fa,,persian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,90,223,283,11,66,5,33,106,322,ca@valencia.po,valencia,ca,,catalan,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fr.po,106,322,403,0,0,0,0,106,322,fr.po,,fr,,french,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/it.po,106,322,353,0,0,0,0,106,322,it.po,,it,,italian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/uk.po,39,123,114,21,85,46,114,106,322,uk.po,,uk,,ukrainian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/te.po,39,123,114,21,85,46,114,106,322,te.po,,te,,telugu,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ro.po,105,320,375,1,2,0,0,106,322,ro.po,,ro,,romanian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/lv.po,105,320,300,1,2,0,0,106,322,lv.po,,lv,,latvian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/az.po,3,4,4,8,12,95,306,106,322,az.po,,az,,azerbaijani,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hr.po,105,320,310,1,2,0,0,106,322,hr.po,,hr,,croatian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pt_br.po,106,322,371,0,0,0,0,106,322,pt_br.po,,pt,br,portuguese,,brazil

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ml.po,20,94,69,25,83,61,145,106,322,ml.po,,ml,,malayalam,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/lt.po,106,322,285,0,0,0,0,106,322,lt.po,,lt,,lithuanian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hi.po,40,127,128,21,82,45,113,106,322,hi.po,,hi,,hindi,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/kn.po,37,118,103,20,82,49,122,106,322,kn.po,,kn,,kannada,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/as.po,84,213,225,16,75,6,34,106,322,as.po,,as,,assamese,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bn.po,26,103,110,25,86,55,133,106,322,bn.po,,bn,,bangla,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/da.po,105,320,292,1,2,0,0,106,322,da.po,,da,,danish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ne.po,16,72,70,23,84,67,166,106,322,ne.po,,ne,,nepali,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/vi.po,94,255,378,12,67,0,0,106,322,vi.po,,vi,,vietnamese,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/el.po,105,320,339,1,2,0,0,106,322,el.po,,el,,greek,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/eo.po,15,16,15,8,11,83,295,106,322,eo.po,,eo,,esperanto,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mk.po,38,119,141,21,85,47,118,106,322,mk.po,,mk,,macedonian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bs.po,87,218,214,14,71,5,33,106,322,bs.po,,bs,,bosnian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ast.po,38,119,143,21,85,47,118,106,322,ast.po,,ast,,asturian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sv.po,106,322,280,0,0,0,0,106,322,sv.po,,sv,,swedish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sl.po,106,322,308,0,0,0,0,106,322,sl.po,,sl,,slovenian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/gu.po,67,162,174,21,79,18,81,106,322,gu.po,,gu,,gujarati,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ko.po,105,320,301,1,2,0,0,106,322,ko.po,,ko,,korean,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/xh.po,3,4,5,9,13,94,305,106,322,xh.po,,xh,,xhosa,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_hk.po,84,213,114,16,75,6,34,106,322,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mn.po,3,4,4,8,12,95,306,106,322,mn.po,,mn,,mongolian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nl.po,105,320,288,1,2,0,0,106,322,nl.po,,nl,,dutch,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ms.po,3,4,4,9,13,94,305,106,322,ms.po,,ms,,malay,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/id.po,106,322,327,0,0,0,0,106,322,id.po,,id,,indonesian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ug.po,40,127,120,21,82,45,113,106,322,ug.po,,ug,,uyghur,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ca.po,90,223,283,11,66,5,33,106,322,ca.po,,ca,,catalan,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bg.po,93,251,285,11,66,2,5,106,322,bg.po,,bg,,bulgarian,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nn.po,26,103,85,23,82,57,137,106,322,nn.po,,nn,,norwegian nynorsk,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ja.po,86,210,119,12,68,8,44,106,322,ja.po,,ja,,japanese,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/th.po,40,127,66,20,81,46,114,106,322,th.po,,th,,thai,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en_gb.po,94,255,254,12,67,0,0,106,322,en_gb.po,,en,gb,english,,united kingdom

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mai.po,6,7,8,10,15,90,300,106,322,mai.po,,mai,,maithili,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ta.po,40,127,117,21,82,45,113,106,322,ta.po,,ta,,tamil,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/tr.po,106,322,291,0,0,0,0,106,322,tr.po,,tr,,turkish,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/or.po,34,113,110,21,83,51,126,106,322,or.po,,or,,odia,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/oc.po,105,320,396,1,2,0,0,106,322,oc.po,,oc,,occitan,,

- gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sr.po,106,322,333,0,0,0,0,106,322,sr.po,,sr,,serbian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/si.po,6,7,8,6,11,82,290,94,308,si.po,,si,,sinhala,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pt.po,82,241,278,12,67,0,0,94,308,pt.po,,pt,,portuguese,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,15,71,71,19,80,60,157,94,308,en_ca.po,,en,ca,english,,canada

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sk.po,93,306,313,1,2,0,0,94,308,sk.po,,sk,,slovak,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,93,306,133,1,2,0,0,94,308,zh_cn.po,,zh,cn,chinese,,china

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/de.po,94,308,283,0,0,0,0,94,308,de.po,,de,,german,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/dz.po,15,71,43,21,83,58,154,94,308,dz.po,,dz,,dzongkha,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nb.po,90,299,289,2,4,2,5,94,308,nb.po,,nb,,norwegian bokmål,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/gl.po,94,308,372,0,0,0,0,94,308,gl.po,,gl,,galician,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/eu.po,93,306,272,1,2,0,0,94,308,eu.po,,eu,,basque,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/rw.po,1,1,1,3,5,90,302,94,308,rw.po,,rw,,kinyarwanda,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pl.po,94,308,303,0,0,0,0,94,308,pl.po,,pl,,polish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mg.po,3,4,5,8,13,83,291,94,308,mg.po,,mg,,malagasy,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hu.po,94,308,281,0,0,0,0,94,308,hu.po,,hu,,hungarian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fur.po,94,308,375,0,0,0,0,94,308,fur.po,,fur,,friulian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,94,308,133,0,0,0,0,94,308,zh_tw.po,,zh,tw,chinese,,taiwan

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mr.po,19,93,93,18,76,57,139,94,308,mr.po,,mr,,marathi,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/he.po,82,241,237,12,67,0,0,94,308,he.po,,he,,hebrew,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,20,72,72,23,109,51,127,94,308,en@shaw.po,shaw,en,,english,shavian,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fi.po,48,150,115,15,72,31,86,94,308,fi.po,,fi,,finnish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,93,306,317,1,2,0,0,94,308,sr@latin.po,latin,sr,,serbian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/be.po,94,308,293,0,0,0,0,94,308,be.po,,be,,belarusian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/kk.po,68,133,130,0,0,26,175,94,308,kk.po,,kk,,kazakh,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pa.po,31,116,121,23,87,40,105,94,308,pa.po,,pa,,punjabi,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sq.po,3,4,5,8,13,83,291,94,308,sq.po,,sq,,albanian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/es.po,94,308,384,0,0,0,0,94,308,es.po,,es,,spanish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/cs.po,94,308,306,0,0,0,0,94,308,cs.po,,cs,,czech,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ar.po,19,93,84,18,76,57,139,94,308,ar.po,,ar,,arabic,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,19,93,100,18,76,57,139,94,308,bn_in.po,,bn,in,bangla,,india

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/et.po,22,96,74,17,61,55,151,94,308,et.po,,et,,estonian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ru.po,76,206,192,13,69,5,33,94,308,ru.po,,ru,,russian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/tg.po,4,4,4,6,8,84,296,94,308,tg.po,,tg,,tajik,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ga.po,14,37,36,10,27,70,244,94,308,ga.po,,ga,,irish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/cy.po,3,4,4,8,13,83,291,94,308,cy.po,,cy,,welsh,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fa.po,4,8,8,7,11,83,289,94,308,fa.po,,fa,,persian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,78,209,266,11,66,5,33,94,308,ca@valencia.po,valencia,ca,,catalan,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fr.po,94,308,382,0,0,0,0,94,308,fr.po,,fr,,french,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/it.po,94,308,339,0,0,0,0,94,308,it.po,,it,,italian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/uk.po,27,109,100,21,85,46,114,94,308,uk.po,,uk,,ukrainian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/te.po,27,109,97,21,85,46,114,94,308,te.po,,te,,telugu,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ro.po,94,308,359,0,0,0,0,94,308,ro.po,,ro,,romanian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/lv.po,94,308,287,0,0,0,0,94,308,lv.po,,lv,,latvian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/az.po,3,4,4,6,10,85,294,94,308,az.po,,az,,azerbaijani,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hr.po,94,308,297,0,0,0,0,94,308,hr.po,,hr,,croatian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,94,308,362,0,0,0,0,94,308,pt_br.po,,pt,br,portuguese,,brazil

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ml.po,19,93,68,18,76,57,139,94,308,ml.po,,ml,,malayalam,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/lt.po,94,308,270,0,0,0,0,94,308,lt.po,,lt,,lithuanian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hi.po,28,113,113,21,82,45,113,94,308,hi.po,,hi,,hindi,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/kn.po,26,107,91,20,82,48,119,94,308,kn.po,,kn,,kannada,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/as.po,72,199,209,16,75,6,34,94,308,as.po,,as,,assamese,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bn.po,24,101,108,19,80,51,127,94,308,bn.po,,bn,,bangla,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/da.po,94,308,278,0,0,0,0,94,308,da.po,,da,,danish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ne.po,15,71,69,19,80,60,157,94,308,ne.po,,ne,,nepali,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/vi.po,82,241,359,12,67,0,0,94,308,vi.po,,vi,,vietnamese,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/el.po,94,308,323,0,0,0,0,94,308,el.po,,el,,greek,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/eo.po,26,31,29,2,4,66,273,94,308,eo.po,,eo,,esperanto,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mk.po,26,105,123,21,85,47,118,94,308,mk.po,,mk,,macedonian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bs.po,75,204,200,14,71,5,33,94,308,bs.po,,bs,,bosnian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ast.po,26,105,129,21,85,47,118,94,308,ast.po,,ast,,asturian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sv.po,94,308,267,0,0,0,0,94,308,sv.po,,sv,,swedish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sl.po,94,308,294,0,0,0,0,94,308,sl.po,,sl,,slovenian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/gu.po,58,153,165,19,77,17,78,94,308,gu.po,,gu,,gujarati,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ko.po,94,308,286,0,0,0,0,94,308,ko.po,,ko,,korean,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/xh.po,3,4,5,7,11,84,293,94,308,xh.po,,xh,,xhosa,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,72,199,102,16,75,6,34,94,308,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mn.po,3,4,4,6,10,85,294,94,308,mn.po,,mn,,mongolian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nl.po,94,308,274,0,0,0,0,94,308,nl.po,,nl,,dutch,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ms.po,3,4,4,7,11,84,293,94,308,ms.po,,ms,,malay,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/id.po,94,308,310,0,0,0,0,94,308,id.po,,id,,indonesian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ug.po,28,113,104,21,82,45,113,94,308,ug.po,,ug,,uyghur,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ca.po,93,306,387,1,2,0,0,94,308,ca.po,,ca,,catalan,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bg.po,81,237,267,11,66,2,5,94,308,bg.po,,bg,,bulgarian,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nn.po,24,101,83,18,77,52,130,94,308,nn.po,,nn,,norwegian nynorsk,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ja.po,74,196,107,12,68,8,44,94,308,ja.po,,ja,,japanese,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/th.po,28,113,54,20,81,46,114,94,308,th.po,,th,,thai,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,82,241,240,12,67,0,0,94,308,en_gb.po,,en,gb,english,,united kingdom

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mai.po,6,7,8,7,12,81,289,94,308,mai.po,,mai,,maithili,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ta.po,28,113,102,21,82,45,113,94,308,ta.po,,ta,,tamil,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/tr.po,94,308,273,0,0,0,0,94,308,tr.po,,tr,,turkish,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/or.po,22,99,95,21,83,51,126,94,308,or.po,,or,,odia,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/oc.po,94,308,379,0,0,0,0,94,308,oc.po,,oc,,occitan,,

- gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sr.po,94,308,319,0,0,0,0,94,308,sr.po,,sr,,serbian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/cs.po,3,8,8,0,0,0,0,3,8,cs.po,,cs,,czech,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pt_br.po,22,81,99,0,0,0,0,22,81,pt_br.po,,pt,br,portuguese,,brazil

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sl.po,22,81,83,0,0,0,0,22,81,sl.po,,sl,,slovenian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/es.po,22,81,113,0,0,0,0,22,81,es.po,,es,,spanish,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sv.po,22,81,79,0,0,0,0,22,81,sv.po,,sv,,swedish,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ca.po,22,81,139,0,0,0,0,22,81,ca.po,,ca,,catalan,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/el.po,3,8,11,0,0,0,0,3,8,el.po,,el,,greek,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ro.po,3,8,9,0,0,0,0,3,8,ro.po,,ro,,romanian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,3,8,13,0,0,0,0,3,8,ca@valencia.po,valencia,ca,,catalan,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nds.po,3,8,7,0,0,0,0,3,8,nds.po,,nds,,low german,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_hk.po,21,75,28,0,0,1,6,22,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/hr.po,3,8,9,0,0,0,0,3,8,hr.po,,hr,,croatian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/uk.po,3,8,8,0,0,0,0,3,8,uk.po,,uk,,ukrainian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/lt.po,3,8,8,0,0,0,0,3,8,lt.po,,lt,,lithuanian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/oc.po,3,8,11,0,0,0,0,3,8,oc.po,,oc,,occitan,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pl.po,3,8,10,0,0,0,0,3,8,pl.po,,pl,,polish,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sr.po,3,8,10,0,0,0,0,3,8,sr.po,,sr,,serbian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/gl.po,22,81,115,0,0,0,0,22,81,gl.po,,gl,,galician,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/lv.po,3,8,8,0,0,0,0,3,8,lv.po,,lv,,latvian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/te.po,3,8,8,0,0,0,0,3,8,te.po,,te,,telugu,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/eu.po,22,81,89,0,0,0,0,22,81,eu.po,,eu,,basque,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/bs.po,3,8,8,0,0,0,0,3,8,bs.po,,bs,,bosnian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pa.po,22,81,96,0,0,0,0,22,81,pa.po,,pa,,punjabi,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/th.po,3,8,5,0,0,0,0,3,8,th.po,,th,,thai,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/en_gb.po,22,81,81,0,0,0,0,22,81,en_gb.po,,en,gb,english,,united kingdom

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/fr.po,22,81,111,0,0,0,0,22,81,fr.po,,fr,,french,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/hu.po,22,81,77,0,0,0,0,22,81,hu.po,,hu,,hungarian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nl.po,3,8,6,0,0,0,0,3,8,nl.po,,nl,,dutch,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pt.po,3,8,11,0,0,0,0,3,8,pt.po,,pt,,portuguese,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ru.po,22,81,82,0,0,0,0,22,81,ru.po,,ru,,russian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/gd.po,3,8,12,0,0,0,0,3,8,gd.po,,gd,,scottish gaelic,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/eo.po,3,8,14,0,0,0,0,3,8,eo.po,,eo,,esperanto,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/guc.po,3,8,10,0,0,0,0,3,8,guc.po,,guc,,wayuu,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/id.po,3,8,8,0,0,0,0,3,8,id.po,,id,,indonesian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/de.po,22,81,83,0,0,0,0,22,81,de.po,,de,,german,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_cn.po,22,81,30,0,0,0,0,22,81,zh_cn.po,,zh,cn,chinese,,china

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_tw.po,21,75,28,0,0,1,6,22,81,zh_tw.po,,zh,tw,chinese,,taiwan

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ja.po,3,8,5,0,0,0,0,3,8,ja.po,,ja,,japanese,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/fur.po,3,8,13,0,0,0,0,3,8,fur.po,,fur,,friulian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/da.po,22,81,89,0,0,0,0,22,81,da.po,,da,,danish,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ko.po,3,8,8,0,0,0,0,3,8,ko.po,,ko,,korean,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sk.po,3,8,8,0,0,0,0,3,8,sk.po,,sk,,slovak,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sr@latin.po,3,8,10,0,0,0,0,3,8,sr@latin.po,latin,sr,,serbian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/he.po,3,8,9,0,0,0,0,3,8,he.po,,he,,hebrew,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/it.po,22,81,92,0,0,0,0,22,81,it.po,,it,,italian,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/tr.po,3,8,9,0,0,0,0,3,8,tr.po,,tr,,turkish,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/tg.po,3,8,10,0,0,0,0,3,8,tg.po,,tg,,tajik,,

- gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nb.po,3,8,10,0,0,0,0,3,8,nb.po,,nb,,norwegian bokmål,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/nl.po,3311,11653,11404,1205,3556,184,553,4700,15762,nl.po,,nl,,dutch,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/el.po,115,148,158,2074,6310,2511,9304,4700,15762,el.po,,el,,greek,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ru.po,1704,4597,4538,2114,6205,882,4960,4700,15762,ru.po,,ru,,russian,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ja.po,975,3254,1999,1702,6571,2023,5937,4700,15762,ja.po,,ja,,japanese,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/pl.po,157,314,306,1846,5527,2697,9921,4700,15762,pl.po,,pl,,polish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sk.po,3108,10215,10002,1288,4541,304,1006,4700,15762,sk.po,,sk,,slovak,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/zh_tw.po,465,1584,793,2524,7790,1711,6388,4700,15762,zh_tw.po,,zh,tw,chinese,,taiwan

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/es.po,306,1819,1984,2037,7189,2357,6754,4700,15762,es.po,,es,,spanish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/zh_cn.po,2965,8561,7654,1222,3614,513,3587,4700,15762,zh_cn.po,,zh,cn,chinese,,china

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/pt.po,334,1968,2054,2012,7044,2354,6750,4700,15762,pt.po,,pt,,portuguese,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sl.po,2560,8860,8534,1918,6263,222,639,4700,15762,sl.po,,sl,,slovenian,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/da.po,3311,11653,11174,1208,3564,181,545,4700,15762,da.po,,da,,danish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/fr.po,3311,11653,12125,1208,3564,181,545,4700,15762,fr.po,,fr,,french,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/tr.po,3304,11036,10518,1213,4175,183,551,4700,15762,tr.po,,tr,,turkish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/vi.po,2935,8209,8668,1200,3529,565,4024,4700,15762,vi.po,,vi,,vietnamese,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/uk.po,3311,11653,11248,1208,3564,181,545,4700,15762,uk.po,,uk,,ukrainian,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sv.po,1354,5110,4902,2650,8590,696,2062,4700,15762,sv.po,,sv,,swedish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/it.po,3311,11653,11994,1208,3564,181,545,4700,15762,it.po,,it,,italian,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/gl.po,2582,8926,9610,1896,6197,222,639,4700,15762,gl.po,,gl,,galician,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/en_gb.po,2112,7530,7507,2283,7328,305,904,4700,15762,en_gb.po,,en,gb,english,,united kingdom

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/cs.po,336,1980,1683,2003,6971,2361,6811,4700,15762,cs.po,,cs,,czech,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/hu.po,3311,11653,11181,1208,3564,181,545,4700,15762,hu.po,,hu,,hungarian,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/nb.po,242,695,642,2048,6258,2410,8809,4700,15762,nb.po,,nb,,norwegian bokmål,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/de.po,3311,11653,10679,1214,3574,175,535,4700,15762,de.po,,de,,german,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/fi.po,2212,6765,6191,2042,6009,446,2988,4700,15762,fi.po,,fi,,finnish,,

- gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ca.po,3311,11653,12496,1208,3564,181,545,4700,15762,ca.po,,ca,,catalan,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,403,2076,639,0,0,0,0,403,2076,zh_tw.po,,zh,tw,chinese,,taiwan

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,596,2704,1004,0,0,0,0,596,2704,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,631,2910,1008,0,0,0,0,631,2910,zh_cn.po,,zh,cn,chinese,,china

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/vi.po,403,2076,3099,0,0,0,0,403,2076,vi.po,,vi,,vietnamese,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/uk.po,402,2069,2058,0,0,0,0,402,2069,uk.po,,uk,,ukrainian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ug.po,583,2640,2364,0,0,2,8,585,2648,ug.po,,ug,,uyghur,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/tr.po,403,2076,1772,0,0,0,0,403,2076,tr.po,,tr,,turkish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/th.po,564,2552,1102,0,0,0,0,564,2552,th.po,,th,,thai,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/tg.po,71,121,134,0,0,514,2527,585,2648,tg.po,,tg,,tajik,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/te.po,596,2704,2339,0,0,0,0,596,2704,te.po,,te,,telugu,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ta.po,596,2704,2387,0,0,0,0,596,2704,ta.po,,ta,,tamil,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sv.po,403,2076,2015,0,0,0,0,403,2076,sv.po,,sv,,swedish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,412,2148,2317,0,0,0,0,412,2148,sr@latin.po,latin,sr,,serbian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sr.po,403,2076,2251,0,0,0,0,403,2076,sr.po,,sr,,serbian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sq.po,312,1245,1532,0,0,0,0,312,1245,sq.po,,sq,,albanian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sl.po,403,2076,2148,0,0,0,0,403,2076,sl.po,,sl,,slovenian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sk.po,402,2069,2074,0,0,0,0,402,2069,sk.po,,sk,,slovak,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ru.po,403,2076,2003,0,0,0,0,403,2076,ru.po,,ru,,russian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ro.po,403,2076,2468,0,0,0,0,403,2076,ro.po,,ro,,romanian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,403,2076,2605,0,0,0,0,403,2076,pt_br.po,,pt,br,portuguese,,brazil

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pt.po,624,2893,3334,0,0,0,0,624,2893,pt.po,,pt,,portuguese,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pl.po,403,2076,2162,0,0,0,0,403,2076,pl.po,,pl,,polish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pa.po,607,2762,3169,0,0,0,0,607,2762,pa.po,,pa,,punjabi,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/or.po,596,2704,2797,0,0,0,0,596,2704,or.po,,or,,odia,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/oc.po,593,2663,3511,0,0,25,188,618,2851,oc.po,,oc,,occitan,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nn.po,540,2427,2414,0,0,5,18,545,2445,nn.po,,nn,,norwegian nynorsk,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nl.po,403,2076,2062,0,0,0,0,403,2076,nl.po,,nl,,dutch,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ne.po,155,554,562,170,781,86,804,411,2139,ne.po,,ne,,nepali,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nds.po,222,594,641,0,0,236,1342,458,1936,nds.po,,nds,,low german,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nb.po,412,2148,2136,0,0,0,0,412,2148,nb.po,,nb,,norwegian bokmål,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mr.po,596,2704,2677,0,0,0,0,596,2704,mr.po,,mr,,marathi,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ml.po,585,2648,2211,0,0,0,0,585,2648,ml.po,,ml,,malayalam,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mk.po,537,2412,2873,0,0,0,0,537,2412,mk.po,,mk,,macedonian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mai.po,88,196,215,0,0,357,1662,445,1858,mai.po,,mai,,maithili,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/lv.po,403,2076,1856,0,0,0,0,403,2076,lv.po,,lv,,latvian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/lt.po,403,2076,1765,0,0,0,0,403,2076,lt.po,,lt,,lithuanian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ku.po,65,142,164,0,0,209,908,274,1050,ku.po,,ku,,kurdish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ko.po,403,2076,1834,0,0,0,0,403,2076,ko.po,,ko,,korean,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/kn.po,601,2728,2422,0,0,0,0,601,2728,kn.po,,kn,,kannada,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/kk.po,313,1502,1420,0,0,90,574,403,2076,kk.po,,kk,,kazakh,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ja.po,583,2640,1062,0,0,0,0,583,2640,ja.po,,ja,,japanese,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/it.po,403,2076,2347,0,0,0,0,403,2076,it.po,,it,,italian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/id.po,403,2076,2100,0,0,0,0,403,2076,id.po,,id,,indonesian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hu.po,403,2076,2037,0,0,0,0,403,2076,hu.po,,hu,,hungarian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hr.po,403,2076,1955,0,0,0,0,403,2076,hr.po,,hr,,croatian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hi.po,596,2704,3161,0,0,0,0,596,2704,hi.po,,hi,,hindi,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/he.po,400,2080,2041,0,0,0,0,400,2080,he.po,,he,,hebrew,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/gu.po,597,2706,3018,0,0,0,0,597,2706,gu.po,,gu,,gujarati,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/gl.po,403,2076,2857,0,0,0,0,403,2076,gl.po,,gl,,galician,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ga.po,165,446,523,0,0,197,1130,362,1576,ga.po,,ga,,irish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fur.po,403,2076,2560,0,0,0,0,403,2076,fur.po,,fur,,friulian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fr.po,403,2076,2820,0,0,0,0,403,2076,fr.po,,fr,,french,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fi.po,341,1699,1411,43,266,18,104,402,2069,fi.po,,fi,,finnish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fa.po,465,1815,2181,15,61,65,569,545,2445,fa.po,,fa,,persian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/eu.po,411,2139,2066,0,0,0,0,411,2139,eu.po,,eu,,basque,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/et.po,565,2555,2241,0,0,0,0,565,2555,et.po,,et,,estonian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/es.po,403,2076,2739,0,0,0,0,403,2076,es.po,,es,,spanish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/eo.po,111,361,386,9,43,291,1735,411,2139,eo.po,,eo,,esperanto,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,412,2148,2146,0,0,0,0,412,2148,en_gb.po,,en,gb,english,,united kingdom

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,409,1725,1725,49,211,0,0,458,1936,en@shaw.po,shaw,en,,english,shavian,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/el.po,403,2076,2225,0,0,0,0,403,2076,el.po,,el,,greek,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/de.po,403,2076,2213,0,0,0,0,403,2076,de.po,,de,,german,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/da.po,403,2076,2009,0,0,0,0,403,2076,da.po,,da,,danish,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/cs.po,403,2076,1985,0,0,0,0,403,2076,cs.po,,cs,,czech,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,411,2139,3009,0,0,0,0,411,2139,ca@valencia.po,valencia,ca,,catalan,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ca.po,400,2043,2897,0,0,0,0,400,2043,ca.po,,ca,,catalan,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bs.po,609,2777,2884,0,0,0,0,609,2777,bs.po,,bs,,bosnian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,596,2704,2986,0,0,0,0,596,2704,bn_in.po,,bn,in,bangla,,india

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bn.po,458,1936,2102,0,0,0,0,458,1936,bn.po,,bn,,bangla,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bg.po,618,2851,3363,0,0,0,0,618,2851,bg.po,,bg,,bulgarian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,326,1354,1338,0,0,0,0,326,1354,be@latin.po,latin,be,,belarusian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/be.po,402,2069,2045,0,0,0,0,402,2069,be.po,,be,,belarusian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ast.po,537,2412,2910,0,0,0,0,537,2412,ast.po,,ast,,asturian,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/as.po,597,2706,2858,0,0,0,0,597,2706,as.po,,as,,assamese,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ar.po,401,1654,1688,9,33,59,324,469,2011,ar.po,,ar,,arabic,,

- gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/af.po,210,711,733,1,3,252,1269,463,1983,af.po,,af,,afrikaans,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/tg.po,79,613,646,0,0,0,0,79,613,tg.po,,tg,,tajik,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,79,613,683,0,0,0,0,79,613,pt_br.po,,pt,br,portuguese,,brazil

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/pl.po,79,613,599,0,0,0,0,79,613,pl.po,,pl,,polish,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/it.po,69,496,533,6,24,4,93,79,613,it.po,,it,,italian,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/hu.po,76,598,563,3,15,0,0,79,613,hu.po,,hu,,hungarian,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/es.po,79,613,700,0,0,0,0,79,613,es.po,,es,,spanish,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/de.po,79,613,582,0,0,0,0,79,613,de.po,,de,,german,,

- hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/ca.po,79,613,705,0,0,0,0,79,613,ca.po,,ca,,catalan,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/nb.po,62,163,151,8,22,465,1961,535,2146,nb.po,,nb,,norwegian bokmål,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ml.po,154,707,593,15,103,366,1336,535,2146,ml.po,,ml,,malayalam,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ar.po,41,117,109,5,16,489,2013,535,2146,ar.po,,ar,,arabic,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ru.po,145,758,657,10,83,380,1305,535,2146,ru.po,,ru,,russian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ca.po,272,1398,1656,6,42,257,706,535,2146,ca.po,,ca,,catalan,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sr@latin.po,41,115,109,5,16,489,2015,535,2146,sr@latin.po,latin,sr,,serbian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/mr.po,162,925,857,6,59,367,1162,535,2146,mr.po,,mr,,marathi,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/hu.po,535,2146,2019,0,0,0,0,535,2146,hu.po,,hu,,hungarian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_hk.po,163,927,309,6,59,366,1160,535,2146,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ko.po,162,925,735,6,59,367,1162,535,2146,ko.po,,ko,,korean,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bn_in.po,162,925,939,6,59,367,1162,535,2146,bn_in.po,,bn,in,bangla,,india

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bg.po,121,557,613,11,51,403,1538,535,2146,bg.po,,bg,,bulgarian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_cn.po,222,1149,387,6,57,307,940,535,2146,zh_cn.po,,zh,cn,chinese,,china

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fi.po,93,302,240,7,11,435,1833,535,2146,fi.po,,fi,,finnish,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/or.po,142,669,659,15,97,378,1380,535,2146,or.po,,or,,odia,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/de.po,195,1069,910,11,88,329,989,535,2146,de.po,,de,,german,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/eu.po,50,96,102,7,13,478,2037,535,2146,eu.po,,eu,,basque,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ur.po,1,1,1,0,0,534,2145,535,2146,ur.po,,ur,,urdu,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/te.po,162,925,780,6,59,367,1162,535,2146,te.po,,te,,telugu,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fr.po,535,2146,2429,0,0,0,0,535,2146,fr.po,,fr,,french,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/mn.po,32,116,97,5,33,498,1997,535,2146,mn.po,,mn,,mongolian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/as.po,162,925,885,6,59,367,1162,535,2146,as.po,,as,,assamese,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/es.po,520,2088,2389,10,50,5,8,535,2146,es.po,,es,,spanish,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/tg.po,32,36,44,4,6,499,2104,535,2146,tg.po,,tg,,tajik,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ta.po,162,925,768,6,59,367,1162,535,2146,ta.po,,ta,,tamil,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/it.po,171,807,919,28,393,336,946,535,2146,it.po,,it,,italian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/he.po,1,1,1,0,0,534,2145,535,2146,he.po,,he,,hebrew,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pt_br.po,197,1123,1304,11,88,327,935,535,2146,pt_br.po,,pt,br,portuguese,,brazil

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bn.po,104,448,503,10,49,421,1649,535,2146,bn.po,,bn,,bangla,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/gu.po,162,925,916,6,59,367,1162,535,2146,gu.po,,gu,,gujarati,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/cs.po,504,1883,1759,19,104,12,159,535,2146,cs.po,,cs,,czech,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ia.po,125,583,715,14,93,396,1470,535,2146,ia.po,,ia,,interlingua,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/en_gb.po,104,449,452,11,51,420,1646,535,2146,en_gb.po,,en,gb,english,,united kingdom

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/hi.po,125,583,682,14,93,396,1470,535,2146,hi.po,,hi,,hindi,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/et.po,42,75,69,6,12,487,2059,535,2146,et.po,,et,,estonian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/vi.po,118,512,681,0,0,417,1634,535,2146,vi.po,,vi,,vietnamese,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pa.po,203,777,782,4,39,328,1330,535,2146,pa.po,,pa,,punjabi,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_tw.po,520,2088,747,10,50,5,8,535,2146,zh_tw.po,,zh,tw,chinese,,taiwan

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fa.po,38,67,73,5,8,492,2071,535,2146,fa.po,,fa,,persian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/uk.po,535,2146,2083,0,0,0,0,535,2146,uk.po,,uk,,ukrainian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sr.po,41,115,109,5,16,489,2015,535,2146,sr.po,,sr,,serbian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ja.po,535,2146,812,0,0,0,0,535,2146,ja.po,,ja,,japanese,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sq.po,13,20,22,1,2,521,2124,535,2146,sq.po,,sq,,albanian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/da.po,520,2088,1750,10,50,5,8,535,2146,da.po,,da,,danish,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pl.po,535,2146,2025,0,0,0,0,535,2146,pl.po,,pl,,polish,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/nl.po,535,2146,2128,0,0,0,0,535,2146,nl.po,,nl,,dutch,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/lv.po,105,456,407,11,51,419,1639,535,2146,lv.po,,lv,,latvian,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sv.po,520,2088,1708,10,50,5,8,535,2146,sv.po,,sv,,swedish,,

- ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/kn.po,162,925,803,6,59,367,1162,535,2146,kn.po,,kn,,kannada,,

- ibus-hangul-1.5.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,27,129,27,129,zh_cn.po,,zh,cn,chinese,,china

- ibus-hangul-1.5.1-3.fc30.src.rpm.stats.csv,po/ko.po,27,129,99,0,0,0,0,27,129,ko.po,,ko,,korean,,

- ibus-kkc-1.5.22-11.fc30.src.rpm.stats.csv,po/ja.po,82,270,114,0,0,0,0,82,270,ja.po,,ja,,japanese,,

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/ca.po,134,369,430,4,8,3,3,141,380,ca.po,,ca,,catalan,,

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,59,117,61,27,93,55,170,141,380,zh_tw.po,,zh,tw,chinese,,taiwan

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,141,380,173,0,0,0,0,141,380,zh_cn.po,,zh,cn,chinese,,china

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/fr.po,133,335,360,0,0,8,45,141,380,fr.po,,fr,,french,,

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,59,117,61,27,93,55,170,141,380,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/ru.po,27,42,51,38,104,76,234,141,380,ru.po,,ru,,russian,,

- ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,70,204,113,0,0,0,0,70,204,zh_tw.po,,zh,tw,chinese,,taiwan

- ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,60,174,84,0,0,10,30,70,204,zh_cn.po,,zh,cn,chinese,,china

- ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,52,142,76,6,21,12,41,70,204,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- ibus-m17n-1.4.1-2.fc30.src.rpm.stats.csv,po/de.po,24,56,55,0,0,0,0,24,56,de.po,,de,,german,,

- ibus-m17n-1.4.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,24,56,24,56,zh_cn.po,,zh,cn,chinese,,china

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/ca.po,20,78,102,3,12,170,1688,193,1778,ca.po,,ca,,catalan,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/cs.po,13,14,14,0,0,180,1764,193,1778,cs.po,,cs,,czech,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/uk.po,193,1778,1654,0,0,0,0,193,1778,uk.po,,uk,,ukrainian,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/de.po,193,1778,1716,0,0,0,0,193,1778,de.po,,de,,german,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,18,30,33,0,0,175,1748,193,1778,pt_br.po,,pt,br,portuguese,,brazil

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/fr.po,172,1497,1682,0,0,21,281,193,1778,fr.po,,fr,,french,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/pl.po,193,1778,1596,0,0,0,0,193,1778,pl.po,,pl,,polish,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/ja.po,65,158,70,0,0,128,1620,193,1778,ja.po,,ja,,japanese,,

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,20,40,20,0,0,173,1738,193,1778,zh_cn.po,,zh,cn,chinese,,china

- ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/es.po,129,1077,1173,0,0,64,701,193,1778,es.po,,es,,spanish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_tw.po,119,775,342,10,54,19,143,148,972,zh_tw.po,,zh,tw,chinese,,taiwan

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,157,1001,157,1001,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_cn.po,132,864,447,0,0,16,108,148,972,zh_cn.po,,zh,cn,chinese,,china

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,157,1001,157,1001,wa.po,,wa,,walloon,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/vi.po,62,367,487,9,46,77,559,148,972,vi.po,,vi,,vietnamese,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,157,1001,157,1001,ur.po,,ur,,urdu,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/uk.po,132,864,845,0,0,16,108,148,972,uk.po,,uk,,ukrainian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/tr.po,132,864,816,0,0,16,108,148,972,tr.po,,tr,,turkish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,157,1001,157,1001,tg.po,,tg,,tajik,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/te.po,119,775,677,10,54,19,143,148,972,te.po,,te,,telugu,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ta.po,119,775,683,10,54,19,143,148,972,ta.po,,ta,,tamil,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sv.po,132,864,851,0,0,16,108,148,972,sv.po,,sv,,swedish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sr@latin.po,118,768,783,10,54,20,150,148,972,sr@latin.po,latin,sr,,serbian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sr.po,132,864,882,0,0,16,108,148,972,sr.po,,sr,,serbian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,157,1001,157,1001,sq.po,,sq,,albanian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sl.po,118,768,772,10,54,20,150,148,972,sl.po,,sl,,slovenian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sk.po,132,864,854,0,0,16,108,148,972,sk.po,,sk,,slovak,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,157,1001,157,1001,si.po,,si,,sinhala,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ru.po,132,864,853,0,0,16,108,148,972,ru.po,,ru,,russian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ro.po,63,318,351,6,25,79,629,148,972,ro.po,,ro,,romanian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pt_br.po,132,864,1000,0,0,16,108,148,972,pt_br.po,,pt,br,portuguese,,brazil

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pt.po,119,775,941,10,54,19,143,148,972,pt.po,,pt,,portuguese,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pl.po,132,864,892,0,0,16,108,148,972,pl.po,,pl,,polish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pa.po,119,775,950,10,54,19,143,148,972,pa.po,,pa,,punjabi,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/or.po,119,775,916,10,54,19,143,148,972,or.po,,or,,odia,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nn.po,3,4,4,3,12,142,956,148,972,nn.po,,nn,,norwegian nynorsk,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nl.po,132,864,939,0,0,16,108,148,972,nl.po,,nl,,dutch,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,147,971,148,972,nds.po,,nds,,low german,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nb.po,119,775,775,10,54,19,143,148,972,nb.po,,nb,,norwegian bokmål,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,157,1001,157,1001,my.po,,my,,burmese,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ms.po,104,684,697,10,54,34,234,148,972,ms.po,,ms,,malay,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mr.po,119,775,787,10,54,19,143,148,972,mr.po,,mr,,marathi,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ml.po,132,864,759,0,0,16,108,148,972,ml.po,,ml,,malayalam,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mk.po,112,744,775,10,54,26,174,148,972,mk.po,,mk,,macedonian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mai.po,118,768,942,10,54,20,150,148,972,mai.po,,mai,,maithili,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lv.po,61,337,270,10,54,77,581,148,972,lv.po,,lv,,latvian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lt.po,62,288,252,10,54,76,630,148,972,lt.po,,lt,,lithuanian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,157,1001,157,1001,lo.po,,lo,,lao,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,157,1001,157,1001,ku.po,,ku,,kurdish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,157,1001,157,1001,ks.po,,ks,,kashmiri,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ko.po,118,768,721,10,54,20,150,148,972,ko.po,,ko,,korean,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/kn.po,119,775,752,10,54,19,143,148,972,kn.po,,kn,,kannada,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,157,1001,157,1001,kk.po,,kk,,kazakh,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ka.po,10,22,25,3,16,135,934,148,972,ka.po,,ka,,georgian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ja.po,119,775,423,10,54,19,143,148,972,ja.po,,ja,,japanese,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/it.po,119,775,867,10,54,19,143,148,972,it.po,,it,,italian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/is.po,111,740,765,10,54,27,178,148,972,is.po,,is,,icelandic,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/id.po,103,683,713,10,54,35,235,148,972,id.po,,id,,indonesian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,157,1001,157,1001,ia.po,,ia,,interlingua,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,157,1001,157,1001,hy.po,,hy,,armenian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hu.po,119,775,815,10,54,19,143,148,972,hu.po,,hu,,hungarian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hr.po,118,768,787,10,54,20,150,148,972,hr.po,,hr,,croatian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hi.po,119,775,951,10,54,19,143,148,972,hi.po,,hi,,hindi,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,157,1001,157,1001,he.po,,he,,hebrew,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/gu.po,119,775,908,10,54,19,143,148,972,gu.po,,gu,,gujarati,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/gl.po,44,209,245,9,46,95,717,148,972,gl.po,,gl,,galician,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,157,1001,157,1001,ga.po,,ga,,irish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fr.po,132,864,1045,0,0,16,108,148,972,fr.po,,fr,,french,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fi.po,132,864,749,0,0,16,108,148,972,fi.po,,fi,,finnish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,157,1001,157,1001,fa.po,,fa,,persian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/eu.po,1,2,4,2,7,145,963,148,972,eu.po,,eu,,basque,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/et.po,103,683,640,10,54,35,235,148,972,et.po,,et,,estonian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/es.po,132,864,1031,0,0,16,108,148,972,es.po,,es,,spanish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/en_gb.po,119,775,775,10,54,19,143,148,972,en_gb.po,,en,gb,english,,united kingdom

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/el.po,117,761,856,10,54,21,157,148,972,el.po,,el,,greek,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/de.po,132,864,848,0,0,16,108,148,972,de.po,,de,,german,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/da.po,119,775,764,10,54,19,143,148,972,da.po,,da,,danish,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/cy.po,106,701,818,10,54,32,217,148,972,cy.po,,cy,,welsh,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/cs.po,132,864,824,0,0,16,108,148,972,cs.po,,cs,,czech,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ca.po,132,864,1167,0,0,16,108,148,972,ca.po,,ca,,catalan,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bs.po,110,730,747,10,54,28,188,148,972,bs.po,,bs,,bosnian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,157,1001,157,1001,br.po,,br,,breton,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,157,1001,157,1001,bo.po,,bo,,tibetan,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bn_in.po,119,775,849,10,54,19,143,148,972,bn_in.po,,bn,in,bangla,,india

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bn.po,119,775,852,10,54,19,143,148,972,bn.po,,bn,,bangla,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bg.po,119,775,834,10,54,19,143,148,972,bg.po,,bg,,bulgarian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,157,1001,157,1001,bal.po,,bal,,baluchi,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,157,1001,157,1001,ast.po,,ast,,asturian,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/as.po,119,775,886,10,54,19,143,148,972,as.po,,as,,assamese,,

- initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ar.po,101,666,701,10,54,37,252,148,972,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_tw.po,182,383,215,0,0,0,0,182,383,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_hk.po,67,84,71,21,46,94,253,182,383,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_cn.po,102,192,112,17,47,63,144,182,383,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/vi.po,129,253,325,8,30,45,100,182,383,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/uk.po,182,383,339,0,0,0,0,182,383,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/tr.po,75,93,104,20,42,87,248,182,383,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/th.po,155,309,204,3,13,24,61,182,383,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sv.po,182,383,350,0,0,0,0,182,383,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sr@latin.po,168,340,297,4,14,10,29,182,383,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sr.po,168,340,297,4,14,10,29,182,383,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sl.po,107,206,242,8,30,67,147,182,383,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sk.po,28,48,50,7,26,147,309,182,383,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sc.po,182,383,403,0,0,0,0,182,383,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ru.po,182,383,311,0,0,0,0,182,383,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ro.po,144,288,291,5,22,33,73,182,383,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pt_br.po,182,383,390,0,0,0,0,182,383,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pt.po,73,89,91,24,54,85,240,182,383,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pl.po,182,383,309,0,0,0,0,182,383,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/oc.po,36,36,36,0,0,146,347,182,383,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nn.po,76,94,90,24,54,82,235,182,383,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nl.po,182,383,355,0,0,0,0,182,383,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nb.po,84,115,110,23,54,75,214,182,383,nb.po,,nb,,norwegian bokmål,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ml.po,17,17,17,1,2,164,364,182,383,ml.po,,ml,,malayalam,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/lv.po,168,340,299,4,14,10,29,182,383,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/lt.po,123,233,219,9,34,50,116,182,383,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ko.po,50,56,62,13,33,119,294,182,383,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ja.po,65,79,65,22,49,95,255,182,383,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/it.po,168,340,346,4,14,10,29,182,383,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/is.po,182,383,372,0,0,0,0,182,383,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/id.po,182,383,395,0,0,0,0,182,383,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ia.po,135,286,280,47,97,0,0,182,383,ia.po,,ia,,interlingua,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/hu.po,182,383,378,0,0,0,0,182,383,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/he.po,31,36,36,8,22,143,325,182,383,he.po,,he,,hebrew,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/gl.po,144,288,304,5,22,33,73,182,383,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fr.po,182,383,356,0,0,0,0,182,383,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fi.po,158,315,254,4,14,20,54,182,383,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fa.po,38,41,41,9,22,135,320,182,383,fa.po,,fa,,persian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/et.po,178,377,283,4,6,0,0,182,383,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/es.po,124,255,273,12,35,46,93,182,383,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/eo.po,162,328,288,4,14,16,41,182,383,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/el.po,25,30,30,6,15,151,338,182,383,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/de.po,182,383,348,0,0,0,0,182,383,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/da.po,182,383,356,0,0,0,0,182,383,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/cy.po,0,0,0,0,0,182,383,182,383,cy.po,,cy,,welsh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/cs.po,158,315,272,4,14,20,54,182,383,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ca.po,48,96,104,2,10,132,277,182,383,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/br.po,123,233,238,9,34,50,116,182,383,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/bg.po,27,35,31,8,24,147,324,182,383,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/be.po,182,383,319,0,0,0,0,182,383,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ar.po,70,88,86,25,55,87,240,182,383,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zu.po,111,131,135,119,316,190,539,420,986,zu.po,,zu,,zulu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_tw.po,420,986,426,0,0,0,0,420,986,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_hk.po,377,830,377,19,66,24,90,420,986,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_cn.po,414,972,414,4,12,2,2,420,986,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/yo.po,220,325,339,0,0,200,661,420,986,yo.po,,yo,,yoruba,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/xh.po,61,69,73,140,338,219,579,420,986,xh.po,,xh,,xhosa,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wo.po,397,903,927,16,58,7,25,420,986,wo.po,,wo,,wolof,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wal.po,113,140,138,13,46,294,800,420,986,wal.po,,wal,,wolaytta,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wa.po,409,951,919,8,30,3,5,420,986,wa.po,,wa,,walloon,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/vi.po,414,972,1163,4,12,2,2,420,986,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ve.po,186,225,225,121,374,113,387,420,986,ve.po,,ve,,venda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/uz.po,199,267,260,0,0,221,719,420,986,uz.po,,uz,,uzbek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ur.po,223,335,329,0,0,197,651,420,986,ur.po,,ur,,urdu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/uk.po,420,986,767,0,0,0,0,420,986,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ug.po,412,962,767,6,22,2,2,420,986,ug.po,,ug,,uyghur,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tt@iqtelif.po,348,711,589,22,71,50,204,420,986,tt@iqtelif.po,iqtelif,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tt.po,348,711,589,22,71,50,204,420,986,tt.po,,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tr.po,415,973,792,4,12,1,1,420,986,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tl.po,391,886,883,17,63,12,37,420,986,tl.po,,tl,,tagalog,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tk.po,339,717,565,23,76,58,193,420,986,tk.po,,tk,,turkmen,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tig.po,113,140,138,13,46,294,800,420,986,tig.po,,tig,,tigre,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ti.po,133,163,160,13,46,274,777,420,986,ti.po,,ti,,tigrinya,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/th.po,419,985,442,1,1,0,0,420,986,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tg.po,420,986,781,0,0,0,0,420,986,tg.po,,tg,,tajik,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/te.po,408,946,931,7,25,5,15,420,986,te.po,,te,,telugu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ta.po,395,901,725,17,59,8,26,420,986,ta.po,,ta,,tamil,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sw.po,167,262,273,76,264,177,460,420,986,sw.po,,sw,,swahili,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sv.po,420,986,737,0,0,0,0,420,986,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sr@latin.po,415,973,792,4,12,1,1,420,986,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sr.po,415,973,792,4,12,1,1,420,986,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sq.po,396,902,912,15,54,9,30,420,986,sq.po,,sq,,albanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/so.po,128,169,150,49,174,243,643,420,986,so.po,,so,,somali,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sl.po,415,973,777,4,12,1,1,420,986,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sk.po,420,986,779,0,0,0,0,420,986,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/si.po,409,951,774,8,30,3,5,420,986,si.po,,si,,sinhala,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sd.po,76,88,86,0,0,344,898,420,986,sd.po,,sd,,sindhi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sc.po,420,986,1034,0,0,0,0,420,986,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/rw.po,389,881,899,20,69,11,36,420,986,rw.po,,rw,,kinyarwanda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ru.po,420,986,763,0,0,0,0,420,986,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ro.po,420,986,818,0,0,0,0,420,986,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pt_br.po,420,986,988,0,0,0,0,420,986,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pt.po,413,965,960,7,21,0,0,420,986,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ps.po,148,176,174,2,2,270,808,420,986,ps.po,,ps,,pashto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pl.po,420,986,784,0,0,0,0,420,986,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pi.po,162,187,176,0,0,258,799,420,986,pi.po,,pi,,pali,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pap.po,0,0,0,182,226,238,760,420,986,pap.po,,pap,,papiamento,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pa.po,413,963,781,5,15,2,8,420,986,pa.po,,pa,,punjabi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/or.po,402,929,756,13,46,5,11,420,986,or.po,,or,,odia,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/oc.po,380,851,745,15,50,25,85,420,986,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nv.po,86,112,260,0,0,334,874,420,986,nv.po,,nv,,navajo,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nso.po,185,224,229,119,363,116,399,420,986,nso.po,,nso,,northern sotho,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nn.po,407,945,695,7,24,6,17,420,986,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nl.po,420,986,743,0,0,0,0,420,986,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ne.po,405,939,769,12,42,3,5,420,986,ne.po,,ne,,nepali,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nb.po,420,986,766,0,0,0,0,420,986,nb.po,,nb,,norwegian bokmål,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/na.po,151,187,178,0,0,269,799,420,986,na.po,,na,,nauru,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/my.po,186,241,194,0,0,234,745,420,986,my.po,,my,,burmese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mt.po,206,304,299,101,288,113,394,420,986,mt.po,,mt,,maltese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ms.po,264,454,411,22,82,134,450,420,986,ms.po,,ms,,malay,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mr.po,409,951,936,8,30,3,5,420,986,mr.po,,mr,,marathi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mn.po,196,267,267,97,320,127,399,420,986,mn.po,,mn,,mongolian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ml.po,395,901,739,17,59,8,26,420,986,ml.po,,ml,,malayalam,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mk.po,407,945,773,10,36,3,5,420,986,mk.po,,mk,,macedonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mi.po,210,401,336,97,337,113,248,420,986,mi.po,,mi,,maori,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mai.po,73,88,79,0,0,347,898,420,986,mai.po,,mai,,maithili,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lv.po,415,973,720,4,12,1,1,420,986,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lt.po,412,962,790,7,23,1,1,420,986,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lo.po,79,96,80,0,0,341,890,420,986,lo.po,,lo,,lao,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ky.po,420,986,763,0,0,0,0,420,986,ky.po,,ky,,kyrgyz,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kw.po,212,294,296,0,0,208,692,420,986,kw.po,,kw,,cornish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kv.po,109,133,128,0,0,311,853,420,986,kv.po,,kv,,komi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ku.po,408,941,822,9,34,3,11,420,986,ku.po,,ku,,kurdish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ko.po,420,986,706,0,0,0,0,420,986,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kn.po,388,878,722,20,71,12,37,420,986,kn.po,,kn,,kannada,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/km.po,417,971,477,3,15,0,0,420,986,km.po,,km,,khmer,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kl.po,0,0,0,96,115,324,871,420,986,kl.po,,kl,,kalaallisut,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kk.po,414,972,762,4,12,2,2,420,986,kk.po,,kk,,kazakh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ki.po,115,145,141,0,0,305,841,420,986,ki.po,,ki,,kikuyu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kab.po,139,174,170,0,0,281,812,420,986,kab.po,,kab,,kabyle,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ka.po,395,901,710,17,59,8,26,420,986,ka.po,,ka,,georgian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/jam.po,192,252,243,0,0,228,734,420,986,jam.po,,jam,,jamaican creole english,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ja.po,415,973,422,4,12,1,1,420,986,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/iu.po,26,33,29,0,0,394,953,420,986,iu.po,,iu,,inuktitut,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/it.po,420,986,928,0,0,0,0,420,986,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/is.po,420,986,707,0,0,0,0,420,986,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/io.po,211,289,266,0,0,209,697,420,986,io.po,,io,,ido,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/id.po,420,986,798,0,0,0,0,420,986,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ia.po,416,978,963,4,8,0,0,420,986,ia.po,,ia,,interlingua,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hy.po,413,968,771,5,16,2,2,420,986,hy.po,,hy,,armenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hu.po,420,986,748,0,0,0,0,420,986,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ht.po,188,218,208,0,0,232,768,420,986,ht.po,,ht,,haitian creole,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hr.po,420,986,780,0,0,0,0,420,986,hr.po,,hr,,croatian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hi.po,412,962,961,6,22,2,2,420,986,hi.po,,hi,,hindi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/he.po,415,973,892,4,12,1,1,420,986,he.po,,he,,hebrew,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/haw.po,19,22,27,87,120,314,844,420,986,haw.po,,haw,,hawaiian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ha.po,119,140,130,0,0,301,846,420,986,ha.po,,ha,,hausa,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gv.po,192,254,377,0,0,228,732,420,986,gv.po,,gv,,manx,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gu.po,412,962,949,6,22,2,2,420,986,gu.po,,gu,,gujarati,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gn.po,210,258,258,2,4,208,724,420,986,gn.po,,gn,,guarani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gl.po,414,972,986,5,13,1,1,420,986,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gez.po,113,140,113,13,46,294,800,420,986,gez.po,,gez,,geez,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ga.po,412,962,1006,7,23,1,1,420,986,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fy.po,210,297,257,0,0,210,689,420,986,fy.po,,fy,,western frisian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fur.po,52,57,58,0,0,368,929,420,986,fur.po,,fur,,friulian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/frp.po,205,276,250,0,0,215,710,420,986,frp.po,,frp,,arpitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fr.po,420,986,926,0,0,0,0,420,986,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fo.po,113,147,135,13,46,294,793,420,986,fo.po,,fo,,faroese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fi.po,409,951,701,9,31,2,4,420,986,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ff.po,82,96,86,0,0,338,890,420,986,ff.po,,ff,,fulah,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fa.po,420,986,795,0,0,0,0,420,986,fa.po,,fa,,persian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/eu.po,412,962,789,7,23,1,1,420,986,eu.po,,eu,,basque,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/et.po,420,986,729,0,0,0,0,420,986,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/es.po,420,986,999,0,0,0,0,420,986,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/eo.po,415,973,727,4,12,1,1,420,986,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/el.po,420,986,974,0,0,0,0,420,986,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ee.po,0,0,0,148,190,272,796,420,986,ee.po,,ee,,ewe,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/dz.po,402,929,692,13,46,5,11,420,986,dz.po,,dz,,dzongkha,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/dv.po,204,277,259,0,0,216,709,420,986,dv.po,,dv,,divehi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/de.po,420,986,750,0,0,0,0,420,986,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/da.po,414,971,782,5,14,1,1,420,986,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cy.po,420,986,857,0,0,0,0,420,986,cy.po,,cy,,welsh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cv.po,202,278,269,0,0,218,708,420,986,cv.po,,cv,,chuvash,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/csb.po,94,108,106,0,0,326,878,420,986,csb.po,,csb,,kashubian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cs.po,419,985,786,1,1,0,0,420,986,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/crh.po,395,905,735,17,55,8,26,420,986,crh.po,,crh,,crimean turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ckb.po,192,256,242,0,0,228,730,420,986,ckb.po,,ckb,,central kurdish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/chr.po,100,120,114,0,0,320,866,420,986,chr.po,,chr,,cherokee,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ch.po,23,31,25,0,0,397,955,420,986,ch.po,,ch,,chamorro,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ce.po,202,278,269,0,0,218,708,420,986,ce.po,,ce,,chechen,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ca.po,415,969,948,3,10,2,7,420,986,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/byn.po,113,140,138,13,46,294,800,420,986,byn.po,,byn,,blin,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bs.po,408,947,770,10,35,2,4,420,986,bs.po,,bs,,bosnian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/br.po,230,356,334,11,42,179,588,420,986,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bn_in.po,402,929,747,13,46,5,11,420,986,bn_in.po,,bn,in,bangla,,india

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bn.po,414,972,777,4,12,2,2,420,986,bn.po,,bn,,bangla,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bi.po,0,0,0,79,95,341,891,420,986,bi.po,,bi,,bislama,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bg.po,415,973,800,4,12,1,1,420,986,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/be.po,420,986,772,0,0,0,0,420,986,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bar.po,153,200,188,0,0,267,786,420,986,bar.po,,bar,,bavarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ba.po,0,0,0,200,271,220,715,420,986,ba.po,,ba,,bashkir,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/az.po,216,302,297,191,637,13,47,420,986,az.po,,az,,azerbaijani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ay.po,0,0,0,68,91,352,895,420,986,ay.po,,ay,,aymara,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ast.po,410,955,913,7,26,3,5,420,986,ast.po,,ast,,asturian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/as.po,402,929,748,13,46,5,11,420,986,as.po,,as,,assamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ar.po,412,957,790,8,29,0,0,420,986,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/an.po,0,0,0,208,288,212,698,420,986,an.po,,an,,aragonese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/am.po,123,165,151,171,420,126,401,420,986,am.po,,am,,amharic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ak.po,0,0,0,41,55,379,931,420,986,ak.po,,ak,,akan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/af.po,396,901,827,5,15,19,70,420,986,af.po,,af,,afrikaans,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ach.po,212,262,294,0,0,208,724,420,986,ach.po,,ach,,acoli,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ace.po,0,0,0,178,228,242,758,420,986,ace.po,,ace,,achinese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ab.po,0,0,0,48,64,372,922,420,986,ab.po,,ab,,abkhazian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/zh_tw.po,481,579,481,4196,6079,10,29,4687,6687,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/zh_cn.po,3019,4032,3021,1089,1647,579,1008,4687,6687,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/wa.po,58,82,82,891,1082,3738,5523,4687,6687,wa.po,,wa,,walloon,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/vi.po,3936,5393,5627,462,761,289,533,4687,6687,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ve.po,13,17,17,2124,2612,2550,4058,4687,6687,ve.po,,ve,,venda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/uk.po,4687,6687,5995,0,0,0,0,4687,6687,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/tr.po,71,99,99,2119,2608,2497,3980,4687,6687,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/th.po,1805,2536,2000,91,176,2791,3975,4687,6687,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sv.po,4681,6670,6490,2,4,4,13,4687,6687,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sr@latin.po,3632,4774,4788,47,95,1008,1818,4687,6687,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sr.po,3632,4774,4788,47,95,1008,1818,4687,6687,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sl.po,2179,2919,2915,2170,3178,338,590,4687,6687,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sk.po,375,556,550,55,90,4257,6041,4687,6687,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sc.po,2910,4086,4488,0,0,1777,2601,4687,6687,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ro.po,780,941,954,555,693,3352,5053,4687,6687,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/pl.po,4620,6611,6400,0,0,67,76,4687,6687,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/oc.po,119,132,189,51,64,4517,6491,4687,6687,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/nso.po,13,17,18,2127,2615,2547,4055,4687,6687,nso.po,,nso,,northern sotho,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/nl.po,4687,6687,6384,0,0,0,0,4687,6687,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/lv.po,54,69,61,1866,2275,2767,4343,4687,6687,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/lt.po,2054,2749,3215,497,771,2136,3167,4687,6687,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ky.po,20,30,27,0,0,4667,6657,4687,6687,ky.po,,ky,,kyrgyz,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ko.po,61,77,68,1846,2228,2780,4382,4687,6687,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ja.po,2586,3442,2598,52,90,2049,3155,4687,6687,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/it.po,4674,6655,6904,9,19,4,13,4687,6687,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/is.po,125,180,140,0,0,4562,6507,4687,6687,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/id.po,4683,6672,6673,1,3,3,12,4687,6687,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/hu.po,1970,2677,2840,560,875,2157,3135,4687,6687,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ga.po,46,56,81,1451,1733,3190,4898,4687,6687,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/fr.po,4680,6667,6421,3,7,4,13,4687,6687,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/fi.po,191,329,336,53,78,4443,6280,4687,6687,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/eu.po,71,99,98,2114,2603,2502,3985,4687,6687,eu.po,,eu,,basque,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/et.po,32,44,39,1,1,4654,6642,4687,6687,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/es.po,120,168,166,2097,2586,2470,3933,4687,6687,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/eo.po,71,99,83,2088,2570,2528,4018,4687,6687,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/en.po,2564,3336,3336,1536,2307,587,1044,4687,6687,en.po,,en,,english,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/el.po,257,328,332,74,115,4356,6244,4687,6687,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/de.po,4687,6687,6517,0,0,0,0,4687,6687,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/da.po,4008,5489,5416,343,578,336,620,4687,6687,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/cs.po,223,317,315,2136,2639,2328,3731,4687,6687,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/crh.po,79,109,109,49,68,4559,6510,4687,6687,crh.po,,crh,,crimean turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ca.po,71,99,100,2217,2740,2399,3848,4687,6687,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/bs.po,71,99,98,2220,2745,2396,3843,4687,6687,bs.po,,bs,,bosnian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/bg.po,377,512,500,2049,2536,2261,3639,4687,6687,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/be.po,4687,6687,6052,0,0,0,0,4687,6687,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/az.po,69,96,95,2217,2740,2401,3851,4687,6687,az.po,,az,,azerbaijani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zu.po,0,0,0,10,32,21,72,31,104,zu.po,,zu,,zulu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_tw.po,31,104,31,0,0,0,0,31,104,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_hk.po,1,2,1,14,53,16,49,31,104,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_cn.po,31,104,32,0,0,0,0,31,104,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/xh.po,0,0,0,10,32,21,72,31,104,xh.po,,xh,,xhosa,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/wo.po,31,104,103,0,0,0,0,31,104,wo.po,,wo,,wolof,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/wal.po,1,2,2,4,15,26,87,31,104,wal.po,,wal,,wolaytta,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/wa.po,31,104,116,0,0,0,0,31,104,wa.po,,wa,,walloon,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/vi.po,31,104,137,0,0,0,0,31,104,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ve.po,1,2,2,10,32,20,70,31,104,ve.po,,ve,,venda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/uk.po,31,104,93,0,0,0,0,31,104,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ug.po,31,104,101,0,0,0,0,31,104,ug.po,,ug,,uyghur,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tt@iqtelif.po,1,2,2,12,45,18,57,31,104,tt@iqtelif.po,iqtelif,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tt.po,1,2,2,12,45,18,57,31,104,tt.po,,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tr.po,31,104,93,0,0,0,0,31,104,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tl.po,1,2,2,14,53,16,49,31,104,tl.po,,tl,,tagalog,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tk.po,0,0,0,12,45,19,59,31,104,tk.po,,tk,,turkmen,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tig.po,1,2,2,4,15,26,87,31,104,tig.po,,tig,,tigre,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ti.po,1,2,2,4,15,26,87,31,104,ti.po,,ti,,tigrinya,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/th.po,31,104,42,0,0,0,0,31,104,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/te.po,31,104,104,0,0,0,0,31,104,te.po,,te,,telugu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ta.po,31,104,98,0,0,0,0,31,104,ta.po,,ta,,tamil,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sw.po,0,0,0,2,5,29,99,31,104,sw.po,,sw,,swahili,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sv.po,31,104,73,0,0,0,0,31,104,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sr@latin.po,31,104,96,0,0,0,0,31,104,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sr.po,31,104,96,0,0,0,0,31,104,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sq.po,31,104,111,0,0,0,0,31,104,sq.po,,sq,,albanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/so.po,0,0,0,8,35,23,69,31,104,so.po,,so,,somali,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sl.po,31,104,93,0,0,0,0,31,104,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sk.po,31,104,92,0,0,0,0,31,104,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/si.po,31,104,94,0,0,0,0,31,104,si.po,,si,,sinhala,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sc.po,31,104,122,0,0,0,0,31,104,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/rw.po,2,5,6,13,50,16,49,31,104,rw.po,,rw,,kinyarwanda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ru.po,31,104,92,0,0,0,0,31,104,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ro.po,31,104,103,0,0,0,0,31,104,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pt_br.po,31,104,114,0,0,0,0,31,104,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pt.po,31,104,116,0,0,0,0,31,104,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ps.po,0,0,0,0,0,31,104,31,104,ps.po,,ps,,pashto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pl.po,31,104,102,0,0,0,0,31,104,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pa.po,31,104,88,0,0,0,0,31,104,pa.po,,pa,,punjabi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/or.po,31,104,98,0,0,0,0,31,104,or.po,,or,,odia,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/oc.po,13,38,22,0,0,18,66,31,104,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nso.po,1,2,2,10,32,20,70,31,104,nso.po,,nso,,northern sotho,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nn.po,31,104,86,0,0,0,0,31,104,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nl.po,31,104,88,0,0,0,0,31,104,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ne.po,31,104,93,0,0,0,0,31,104,ne.po,,ne,,nepali,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nb.po,31,104,87,0,0,0,0,31,104,nb.po,,nb,,norwegian bokmål,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mt.po,0,0,0,13,42,18,62,31,104,mt.po,,mt,,maltese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ms.po,1,2,2,10,31,20,71,31,104,ms.po,,ms,,malay,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mr.po,31,104,104,0,0,0,0,31,104,mr.po,,mr,,marathi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mn.po,0,0,0,8,27,23,77,31,104,mn.po,,mn,,mongolian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ml.po,31,104,90,0,0,0,0,31,104,ml.po,,ml,,malayalam,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mk.po,31,104,99,0,0,0,0,31,104,mk.po,,mk,,macedonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mi.po,0,0,0,1,4,30,100,31,104,mi.po,,mi,,maori,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/lv.po,31,104,88,0,0,0,0,31,104,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/lt.po,31,104,95,0,0,0,0,31,104,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ku.po,31,104,109,0,0,0,0,31,104,ku.po,,ku,,kurdish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ko.po,31,104,76,0,0,0,0,31,104,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/kn.po,0,0,0,15,55,16,49,31,104,kn.po,,kn,,kannada,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/km.po,31,104,46,0,0,0,0,31,104,km.po,,km,,khmer,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/kk.po,31,104,89,0,0,0,0,31,104,kk.po,,kk,,kazakh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ka.po,31,104,95,0,0,0,0,31,104,ka.po,,ka,,georgian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ja.po,31,104,36,0,0,0,0,31,104,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/it.po,31,104,111,0,0,0,0,31,104,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/is.po,31,104,74,0,0,0,0,31,104,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/id.po,31,104,89,0,0,0,0,31,104,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ia.po,31,104,113,0,0,0,0,31,104,ia.po,,ia,,interlingua,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hy.po,31,104,94,0,0,0,0,31,104,hy.po,,hy,,armenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hu.po,31,104,79,0,0,0,0,31,104,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hr.po,31,104,95,0,0,0,0,31,104,hr.po,,hr,,croatian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hi.po,31,104,103,0,0,0,0,31,104,hi.po,,hi,,hindi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/he.po,31,104,100,0,0,0,0,31,104,he.po,,he,,hebrew,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/haw.po,0,0,0,0,0,31,104,31,104,haw.po,,haw,,hawaiian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gu.po,31,104,101,0,0,0,0,31,104,gu.po,,gu,,gujarati,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gl.po,31,104,117,0,0,0,0,31,104,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gez.po,1,2,1,4,15,26,87,31,104,gez.po,,gez,,geez,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ga.po,31,104,111,0,0,0,0,31,104,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fr.po,31,104,106,0,0,0,0,31,104,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fo.po,0,0,0,6,16,25,88,31,104,fo.po,,fo,,faroese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fi.po,31,104,75,0,0,0,0,31,104,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fa.po,31,104,109,0,0,0,0,31,104,fa.po,,fa,,persian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/eu.po,31,104,93,0,0,0,0,31,104,eu.po,,eu,,basque,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/et.po,31,104,85,0,0,0,0,31,104,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/es.po,31,104,121,0,0,0,0,31,104,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/eo.po,31,104,95,0,0,0,0,31,104,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/el.po,31,104,107,0,0,0,0,31,104,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/dz.po,31,104,74,0,0,0,0,31,104,dz.po,,dz,,dzongkha,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/de.po,31,104,79,0,0,0,0,31,104,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/da.po,31,104,88,0,0,0,0,31,104,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/cy.po,31,104,101,0,0,0,0,31,104,cy.po,,cy,,welsh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/cs.po,31,104,97,0,0,0,0,31,104,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/crh.po,31,104,93,0,0,0,0,31,104,crh.po,,crh,,crimean turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ca.po,31,104,115,0,0,0,0,31,104,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/byn.po,1,2,2,4,15,26,87,31,104,byn.po,,byn,,blin,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bs.po,31,104,96,0,0,0,0,31,104,bs.po,,bs,,bosnian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/br.po,21,82,81,0,0,10,22,31,104,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bn_in.po,31,104,96,0,0,0,0,31,104,bn_in.po,,bn,in,bangla,,india

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bn.po,31,104,96,0,0,0,0,31,104,bn.po,,bn,,bangla,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bg.po,31,104,93,0,0,0,0,31,104,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/be.po,31,104,94,0,0,0,0,31,104,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/az.po,1,2,2,14,53,16,49,31,104,az.po,,az,,azerbaijani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ast.po,31,104,98,0,0,0,0,31,104,ast.po,,ast,,asturian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/as.po,31,104,96,0,0,0,0,31,104,as.po,,as,,assamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ar.po,31,104,91,0,0,0,0,31,104,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/am.po,1,2,2,9,40,21,62,31,104,am.po,,am,,amharic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/af.po,9,27,18,1,2,21,75,31,104,af.po,,af,,afrikaans,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_tw.po,170,348,179,0,0,0,0,170,348,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_hk.po,95,198,95,37,77,38,73,170,348,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_cn.po,145,259,151,17,65,8,24,170,348,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/vi.po,145,259,393,17,65,8,24,170,348,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/uk.po,170,348,333,0,0,0,0,170,348,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/tr.po,96,199,202,39,95,35,54,170,348,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/th.po,145,259,247,17,65,8,24,170,348,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sv.po,170,348,302,0,0,0,0,170,348,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sr@latin.po,145,259,245,17,65,8,24,170,348,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sr.po,145,259,245,17,65,8,24,170,348,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sl.po,145,259,257,17,65,8,24,170,348,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sk.po,87,184,179,33,56,50,108,170,348,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sc.po,170,348,408,0,0,0,0,170,348,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/rw.po,85,176,241,49,117,36,55,170,348,rw.po,,rw,,kinyarwanda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ru.po,170,348,339,0,0,0,0,170,348,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ro.po,143,254,255,16,56,11,38,170,348,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pt_br.po,170,348,397,0,0,0,0,170,348,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pt.po,94,196,233,41,98,35,54,170,348,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pl.po,170,348,318,0,0,0,0,170,348,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/oc.po,4,5,5,0,0,166,343,170,348,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nn.po,143,255,279,19,69,8,24,170,348,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nl.po,170,348,370,0,0,0,0,170,348,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nb.po,158,297,319,12,51,0,0,170,348,nb.po,,nb,,norwegian bokmål,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/mn.po,84,174,174,49,118,37,56,170,348,mn.po,,mn,,mongolian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/lv.po,145,259,255,17,65,8,24,170,348,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/lt.po,143,255,254,19,69,8,24,170,348,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ko.po,170,348,389,0,0,0,0,170,348,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ja.po,170,348,176,0,0,0,0,170,348,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/it.po,170,348,356,0,0,0,0,170,348,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/is.po,170,348,309,0,0,0,0,170,348,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/id.po,170,348,345,0,0,0,0,170,348,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/hu.po,170,348,337,0,0,0,0,170,348,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/hr.po,170,348,344,0,0,0,0,170,348,hr.po,,hr,,croatian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/gl.po,46,99,126,36,83,88,166,170,348,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ga.po,73,154,176,18,32,79,162,170,348,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/fr.po,170,348,376,0,0,0,0,170,348,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/fi.po,145,259,256,17,65,8,24,170,348,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/et.po,170,348,318,0,0,0,0,170,348,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/es.po,145,259,295,17,65,8,24,170,348,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/el.po,155,280,280,15,68,0,0,170,348,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/de.po,170,348,280,0,0,0,0,170,348,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/da.po,145,259,236,17,65,8,24,170,348,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/cs.po,145,259,249,17,65,8,24,170,348,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ca.po,167,326,371,0,0,3,22,170,348,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/br.po,102,181,181,11,23,57,144,170,348,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/be.po,170,348,326,0,0,0,0,170,348,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zu.po,44,44,46,134,191,309,536,487,771,zu.po,,zu,,zulu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_tw.po,487,771,517,0,0,0,0,487,771,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_hk.po,424,602,427,47,121,16,48,487,771,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_cn.po,478,747,483,5,17,4,7,487,771,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/xh.po,49,49,49,137,205,301,517,487,771,xh.po,,xh,,xhosa,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/wa.po,478,747,721,5,17,4,7,487,771,wa.po,,wa,,walloon,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/vi.po,480,751,1392,5,17,2,3,487,771,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ve.po,37,37,37,255,337,195,397,487,771,ve.po,,ve,,venda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/uk.po,487,771,718,0,0,0,0,487,771,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tt@iqtelif.po,148,155,155,66,140,273,476,487,771,tt@iqtelif.po,iqtelif,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tt.po,148,155,155,66,140,273,476,487,771,tt.po,,tt,,tatar,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tr.po,480,751,873,5,17,2,3,487,771,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tig.po,119,122,119,49,98,319,551,487,771,tig.po,,tig,,tigre,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ti.po,119,122,119,49,98,319,551,487,771,ti.po,,ti,,tigrinya,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/th.po,269,435,327,3,11,215,325,487,771,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/te.po,475,738,737,7,21,5,12,487,771,te.po,,te,,telugu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ta.po,475,738,716,7,21,5,12,487,771,ta.po,,ta,,tamil,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sv.po,487,771,627,0,0,0,0,487,771,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sr@latin.po,487,771,750,0,0,0,0,487,771,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sr.po,487,771,750,0,0,0,0,487,771,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sl.po,480,751,670,5,17,2,3,487,771,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sk.po,485,768,752,1,2,1,1,487,771,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sc.po,487,771,803,0,0,0,0,487,771,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/rw.po,356,420,430,95,231,36,120,487,771,rw.po,,rw,,kinyarwanda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ru.po,480,751,686,5,17,2,3,487,771,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ro.po,478,747,741,5,17,4,7,487,771,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pt_br.po,487,771,755,0,0,0,0,487,771,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pt.po,272,343,343,139,224,76,204,487,771,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ps.po,29,29,29,33,63,425,679,487,771,ps.po,,ps,,pashto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pl.po,487,771,714,0,0,0,0,487,771,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pa.po,487,771,770,0,0,0,0,487,771,pa.po,,pa,,punjabi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/or.po,478,747,749,5,17,4,7,487,771,or.po,,or,,odia,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/oc.po,159,178,181,26,54,302,539,487,771,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nso.po,55,56,60,99,149,333,566,487,771,nso.po,,nso,,northern sotho,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nn.po,217,321,251,85,190,185,260,487,771,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nl.po,487,771,721,0,0,0,0,487,771,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nb.po,155,180,170,108,160,224,431,487,771,nb.po,,nb,,norwegian bokmål,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mt.po,240,271,272,169,279,78,221,487,771,mt.po,,mt,,maltese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ms.po,45,45,47,138,194,304,532,487,771,ms.po,,ms,,malay,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mr.po,478,747,752,5,17,4,7,487,771,mr.po,,mr,,marathi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mn.po,135,141,142,173,264,179,366,487,771,mn.po,,mn,,mongolian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ml.po,475,738,719,7,21,5,12,487,771,ml.po,,ml,,malayalam,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mk.po,35,35,35,143,200,309,536,487,771,mk.po,,mk,,macedonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mi.po,24,24,51,154,211,309,536,487,771,mi.po,,mi,,maori,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/lv.po,480,751,593,5,17,2,3,487,771,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/lt.po,471,727,677,7,21,9,23,487,771,lt.po,,lt,,lithuanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/kok.po,118,123,120,54,111,315,537,487,771,kok.po,,kok,,konkani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ko.po,487,771,607,0,0,0,0,487,771,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/kn.po,475,738,738,7,21,5,12,487,771,kn.po,,kn,,kannada,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ja.po,428,609,523,45,117,14,45,487,771,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/it.po,487,771,776,0,0,0,0,487,771,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/is.po,487,771,744,0,0,0,0,487,771,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/id.po,487,771,788,0,0,0,0,487,771,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hu.po,487,771,716,0,0,0,0,487,771,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hr.po,234,390,350,4,15,249,366,487,771,hr.po,,hr,,croatian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hi.po,118,121,120,49,98,320,552,487,771,hi.po,,hi,,hindi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/he.po,49,49,49,132,189,306,533,487,771,he.po,,he,,hebrew,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gu.po,478,747,752,5,17,4,7,487,771,gu.po,,gu,,gujarati,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gl.po,478,747,783,5,17,4,7,487,771,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gez.po,119,122,119,49,98,319,551,487,771,gez.po,,gez,,geez,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ga.po,283,464,421,3,11,201,296,487,771,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fr.po,487,771,718,0,0,0,0,487,771,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fi.po,478,747,551,5,17,4,7,487,771,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fa.po,298,349,349,84,209,105,213,487,771,fa.po,,fa,,persian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/eu.po,361,539,486,38,95,88,137,487,771,eu.po,,eu,,basque,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/et.po,487,771,582,0,0,0,0,487,771,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/es.po,394,520,538,58,145,35,106,487,771,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/eo.po,480,751,645,5,17,2,3,487,771,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/el.po,130,212,209,45,99,312,460,487,771,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/de.po,487,771,639,0,0,0,0,487,771,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/da.po,480,751,679,5,17,2,3,487,771,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/cy.po,115,116,115,176,257,196,398,487,771,cy.po,,cy,,welsh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/cs.po,487,771,746,0,0,0,0,487,771,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/crh.po,427,603,718,39,95,21,73,487,771,crh.po,,crh,,crimean turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ca.po,487,771,790,0,0,0,0,487,771,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/byn.po,119,122,119,49,98,319,551,487,771,byn.po,,byn,,blin,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bs.po,47,47,47,117,159,323,565,487,771,bs.po,,bs,,bosnian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/br.po,176,238,218,38,93,273,440,487,771,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bn.po,479,748,747,5,17,3,6,487,771,bn.po,,bn,,bangla,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bg.po,255,417,348,4,15,228,339,487,771,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/be.po,487,771,635,0,0,0,0,487,771,be.po,,be,,belarusian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/az.po,24,24,24,161,217,302,530,487,771,az.po,,az,,azerbaijani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ast.po,477,745,750,6,19,4,7,487,771,ast.po,,ast,,asturian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/as.po,477,745,748,6,19,4,7,487,771,as.po,,as,,assamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ar.po,99,111,115,126,181,262,479,487,771,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/am.po,118,121,118,51,100,318,550,487,771,am.po,,am,,amharic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/af.po,157,185,166,146,211,184,375,487,771,af.po,,af,,afrikaans,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zu.po,49,49,51,2873,3575,6323,10224,9245,13848,zu.po,,zu,,zulu,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zh_tw.po,633,1195,704,2641,3206,5971,9447,9245,13848,zh_tw.po,,zh,tw,chinese,,taiwan

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zh_cn.po,300,409,315,2955,3791,5990,9648,9245,13848,zh_cn.po,,zh,cn,chinese,,china

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/xh.po,52,52,52,2784,3470,6409,10326,9245,13848,xh.po,,xh,,xhosa,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/wa.po,322,357,366,4066,5629,4857,7862,9245,13848,wa.po,,wa,,walloon,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/vi.po,339,378,789,4885,6557,4021,6913,9245,13848,vi.po,,vi,,vietnamese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ve.po,40,40,42,4327,5593,4878,8215,9245,13848,ve.po,,ve,,venda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/uk.po,9245,13848,13127,0,0,0,0,9245,13848,uk.po,,uk,,ukrainian,,

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

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

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/tr.po,7402,10024,10142,660,1289,1183,2535,9245,13848,tr.po,,tr,,turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/tig.po,120,123,120,2922,3857,6203,9868,9245,13848,tig.po,,tig,,tigre,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ti.po,121,124,121,2921,3856,6203,9868,9245,13848,ti.po,,ti,,tigrinya,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/th.po,717,1493,872,192,415,8336,11940,9245,13848,th.po,,th,,thai,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ta.po,7371,9970,9855,1323,2805,551,1073,9245,13848,ta.po,,ta,,tamil,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sv.po,9245,13848,13582,0,0,0,0,9245,13848,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sr@latin.po,332,373,374,4923,6621,3990,6854,9245,13848,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sr.po,332,373,374,4923,6621,3990,6854,9245,13848,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sl.po,322,362,350,4071,5656,4852,7830,9245,13848,sl.po,,sl,,slovenian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sk.po,256,322,327,2873,3574,6116,9952,9245,13848,sk.po,,sk,,slovak,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sc.po,479,590,616,0,0,8766,13258,9245,13848,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/rw.po,328,359,361,4920,6621,3997,6868,9245,13848,rw.po,,rw,,kinyarwanda,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ru.po,351,401,392,4715,6213,4179,7234,9245,13848,ru.po,,ru,,russian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ro.po,247,308,315,3043,3762,5955,9778,9245,13848,ro.po,,ro,,romanian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pt_br.po,427,515,523,2057,3005,6761,10328,9245,13848,pt_br.po,,pt,br,portuguese,,brazil

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pt.po,237,263,263,4850,6368,4158,7217,9245,13848,pt.po,,pt,,portuguese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ps.po,29,29,29,1041,1368,8175,12451,9245,13848,ps.po,,ps,,pashto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pl.po,2639,4164,3978,0,0,6606,9684,9245,13848,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pa.po,7377,9980,9977,1321,2800,547,1068,9245,13848,pa.po,,pa,,punjabi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/or.po,3502,5403,5397,1003,2182,4740,6263,9245,13848,or.po,,or,,odia,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/oc.po,78,86,88,130,247,9037,13515,9245,13848,oc.po,,oc,,occitan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nso.po,59,60,62,2828,3687,6358,10101,9245,13848,nso.po,,nso,,northern sotho,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nn.po,175,204,193,3660,5191,5410,8453,9245,13848,nn.po,,nn,,norwegian nynorsk,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nl.po,1629,2248,2163,3812,5050,3804,6550,9245,13848,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nb.po,133,139,140,3914,5020,5198,8689,9245,13848,nb.po,,nb,,norwegian bokmål,,

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

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ms.po,49,49,50,2877,3561,6319,10238,9245,13848,ms.po,,ms,,malay,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mr.po,7442,10085,10090,1264,2710,539,1053,9245,13848,mr.po,,mr,,marathi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mn.po,140,147,148,4359,5651,4746,8050,9245,13848,mn.po,,mn,,mongolian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mk.po,39,39,39,2883,3585,6323,10224,9245,13848,mk.po,,mk,,macedonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mi.po,28,28,61,2894,3596,6323,10224,9245,13848,mi.po,,mi,,maori,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/lv.po,255,318,289,2874,3578,6116,9952,9245,13848,lv.po,,lv,,latvian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/lt.po,638,1096,1112,589,1228,8018,11524,9245,13848,lt.po,,lt,,lithuanian,,

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

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ko.po,360,437,435,2911,3612,5974,9799,9245,13848,ko.po,,ko,,korean,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/kn.po,6608,9115,9134,1290,2747,1347,1986,9245,13848,kn.po,,kn,,kannada,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ja.po,338,375,360,4885,6557,4022,6916,9245,13848,ja.po,,ja,,japanese,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/it.po,8606,12469,12738,448,1004,191,375,9245,13848,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/is.po,3521,4877,4485,1343,1591,4381,7380,9245,13848,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/id.po,7135,9500,9566,430,959,1680,3389,9245,13848,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hu.po,979,1111,1079,4273,5880,3993,6857,9245,13848,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hr.po,538,1113,999,42,100,8665,12635,9245,13848,hr.po,,hr,,croatian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hi.po,118,121,120,2943,3907,6184,9820,9245,13848,hi.po,,hi,,hindi,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/he.po,53,53,53,2872,3574,6320,10221,9245,13848,he.po,,he,,hebrew,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/gu.po,888,1039,1041,377,728,7980,12081,9245,13848,gu.po,,gu,,gujarati,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/gl.po,7470,10120,10525,1249,2690,526,1038,9245,13848,gl.po,,gl,,galician,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/gez.po,120,123,120,2922,3857,6203,9868,9245,13848,gez.po,,gez,,geez,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ga.po,202,233,233,3741,5221,5302,8394,9245,13848,ga.po,,ga,,irish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fr.po,9245,13848,14903,0,0,0,0,9245,13848,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fi.po,338,375,348,4872,6543,4035,6930,9245,13848,fi.po,,fi,,finnish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fa.po,279,306,311,4607,6262,4359,7280,9245,13848,fa.po,,fa,,persian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/eu.po,397,548,505,2757,3453,6091,9847,9245,13848,eu.po,,eu,,basque,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/et.po,613,757,645,2120,2652,6512,10439,9245,13848,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/es.po,327,362,372,4906,6607,4012,6879,9245,13848,es.po,,es,,spanish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/eo.po,339,378,371,4898,6570,4008,6900,9245,13848,eo.po,,eo,,esperanto,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/el.po,845,1722,1734,443,866,7957,11260,9245,13848,el.po,,el,,greek,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/de.po,9007,13484,12160,193,311,45,53,9245,13848,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/da.po,429,663,559,4854,6387,3962,6798,9245,13848,da.po,,da,,danish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/cy.po,120,120,120,3986,4950,5139,8778,9245,13848,cy.po,,cy,,welsh,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/cs.po,335,372,375,3410,4866,5500,8610,9245,13848,cs.po,,cs,,czech,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/crh.po,6573,8061,8159,1097,2200,1575,3587,9245,13848,crh.po,,crh,,crimean turkish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ca.po,587,831,869,3730,4786,4928,8231,9245,13848,ca.po,,ca,,catalan,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/byn.po,120,123,120,2922,3857,6203,9868,9245,13848,byn.po,,byn,,blin,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bs.po,51,51,51,2644,3221,6550,10576,9245,13848,bs.po,,bs,,bosnian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/br.po,809,1040,1063,490,983,7946,11825,9245,13848,br.po,,br,,breton,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bn.po,1543,2028,2030,4009,5565,3693,6255,9245,13848,bn.po,,bn,,bangla,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bg.po,395,680,567,16,31,8834,13137,9245,13848,bg.po,,bg,,bulgarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/az.po,25,25,25,3047,3764,6173,10059,9245,13848,az.po,,az,,azerbaijani,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ast.po,7590,10295,10309,1160,2549,495,1004,9245,13848,ast.po,,ast,,asturian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ar.po,92,99,101,3020,3755,6133,9994,9245,13848,ar.po,,ar,,arabic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/am.po,119,122,119,2924,3859,6202,9867,9245,13848,am.po,,am,,amharic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/af.po,128,132,131,4111,5176,5006,8540,9245,13848,af.po,,af,,afrikaans,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/uk.po,115,258,249,0,0,0,0,115,258,uk.po,,uk,,ukrainian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sv.po,115,258,203,0,0,0,0,115,258,sv.po,,sv,,swedish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sr@latin.po,44,98,92,0,0,71,160,115,258,sr@latin.po,latin,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sr.po,44,98,92,0,0,71,160,115,258,sr.po,,sr,,serbian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sc.po,115,258,269,0,0,0,0,115,258,sc.po,,sc,,sardinian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/pl.po,113,254,241,0,0,2,4,115,258,pl.po,,pl,,polish,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/nl.po,115,258,231,0,0,0,0,115,258,nl.po,,nl,,dutch,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/it.po,101,221,222,0,0,14,37,115,258,it.po,,it,,italian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/is.po,115,258,243,0,0,0,0,115,258,is.po,,is,,icelandic,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/id.po,60,128,129,0,0,55,130,115,258,id.po,,id,,indonesian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/hu.po,112,252,242,0,0,3,6,115,258,hu.po,,hu,,hungarian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/fr.po,115,258,260,0,0,0,0,115,258,fr.po,,fr,,french,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/et.po,61,130,126,0,0,54,128,115,258,et.po,,et,,estonian,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/de.po,115,258,197,0,0,0,0,115,258,de.po,,de,,german,,

- iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/be.po,115,258,246,0,0,0,0,115,258,be.po,,be,,belarusian,,

- jbigkit-2.1-16.fc30.src.rpm.stats.csv,libjbig/po/ru.po,9,44,34,0,0,0,0,9,44,ru.po,,ru,,russian,,

- jbigkit-2.1-16.fc30.src.rpm.stats.csv,libjbig/po/de.po,9,44,41,0,0,0,0,9,44,de.po,,de,,german,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ne.po,36,239,219,3,14,5,50,44,303,ne.po,,ne,,nepali,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ro.po,44,303,310,0,0,0,0,44,303,ro.po,,ro,,romanian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,27,226,184,0,0,0,0,27,226,bn_in.po,,bn,in,bangla,,india

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/eo.po,27,221,205,6,33,11,49,44,303,eo.po,,eo,,esperanto,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sl.po,44,303,275,0,0,0,0,44,303,sl.po,,sl,,slovenian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sv.po,44,303,259,0,0,0,0,44,303,sv.po,,sv,,swedish,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/it.po,44,303,321,0,0,0,0,44,303,it.po,,it,,italian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bg.po,27,226,213,0,0,0,0,27,226,bg.po,,bg,,bulgarian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ca.po,44,303,405,0,0,0,0,44,303,ca.po,,ca,,catalan,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sr.po,44,303,269,0,0,0,0,44,303,sr.po,,sr,,serbian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/lv.po,44,303,250,0,0,0,0,44,303,lv.po,,lv,,latvian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pt.po,44,303,320,0,0,0,0,44,303,pt.po,,pt,,portuguese,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,44,303,269,0,0,0,0,44,303,sr@latin.po,latin,sr,,serbian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/lt.po,44,303,246,0,0,0,0,44,303,lt.po,,lt,,lithuanian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/et.po,27,226,173,0,0,0,0,27,226,et.po,,et,,estonian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/gl.po,44,303,340,0,0,0,0,44,303,gl.po,,gl,,galician,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/fr.po,44,303,345,0,0,0,0,44,303,fr.po,,fr,,french,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/or.po,27,226,200,0,0,0,0,27,226,or.po,,or,,odia,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/tr.po,44,303,250,0,0,0,0,44,303,tr.po,,tr,,turkish,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hr.po,44,303,263,0,0,0,0,44,303,hr.po,,hr,,croatian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,44,303,80,0,0,0,0,44,303,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/de.po,44,303,290,0,0,0,0,44,303,de.po,,de,,german,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/id.po,44,303,286,0,0,0,0,44,303,id.po,,id,,indonesian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/fur.po,44,303,352,0,0,0,0,44,303,fur.po,,fur,,friulian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,44,303,324,0,0,0,0,44,303,pt_br.po,,pt,br,portuguese,,brazil

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ja.po,27,226,72,0,0,0,0,27,226,ja.po,,ja,,japanese,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ru.po,44,303,267,0,0,0,0,44,303,ru.po,,ru,,russian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/nl.po,44,303,291,0,0,0,0,44,303,nl.po,,nl,,dutch,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pa.po,27,226,207,0,0,0,0,27,226,pa.po,,pa,,punjabi,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/eu.po,44,303,270,0,0,0,0,44,303,eu.po,,eu,,basque,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/vi.po,29,244,264,0,0,1,10,30,254,vi.po,,vi,,vietnamese,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,44,303,403,0,0,0,0,44,303,ca@valencia.po,valencia,ca,,catalan,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pl.po,44,303,270,0,0,0,0,44,303,pl.po,,pl,,polish,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ml.po,27,226,165,0,0,0,0,27,226,ml.po,,ml,,malayalam,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bs.po,44,303,270,0,0,0,0,44,303,bs.po,,bs,,bosnian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,44,303,95,0,0,0,0,44,303,zh_cn.po,,zh,cn,chinese,,china

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/oc.po,44,303,351,0,0,0,0,44,303,oc.po,,oc,,occitan,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/cs.po,44,303,279,0,0,0,0,44,303,cs.po,,cs,,czech,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/as.po,44,303,276,0,0,0,0,44,303,as.po,,as,,assamese,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/tg.po,44,303,292,0,0,0,0,44,303,tg.po,,tg,,tajik,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sk.po,44,303,297,0,0,0,0,44,303,sk.po,,sk,,slovak,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/te.po,27,226,191,0,0,0,0,27,226,te.po,,te,,telugu,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hi.po,27,226,234,0,0,0,0,27,226,hi.po,,hi,,hindi,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,44,303,80,0,0,0,0,44,303,zh_tw.po,,zh,tw,chinese,,taiwan

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ko.po,44,303,237,0,0,0,0,44,303,ko.po,,ko,,korean,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ug.po,25,208,167,0,0,2,18,27,226,ug.po,,ug,,uyghur,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hu.po,44,303,268,0,0,0,0,44,303,hu.po,,hu,,hungarian,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/da.po,44,303,272,0,0,0,0,44,303,da.po,,da,,danish,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/es.po,44,303,351,0,0,0,0,44,303,es.po,,es,,spanish,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/he.po,44,303,303,0,0,0,0,44,303,he.po,,he,,hebrew,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/nb.po,26,159,145,0,0,18,144,44,303,nb.po,,nb,,norwegian bokmål,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/el.po,44,303,302,0,0,0,0,44,303,el.po,,el,,greek,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,44,303,303,0,0,0,0,44,303,en_gb.po,,en,gb,english,,united kingdom

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ky.po,27,226,167,0,0,0,0,27,226,ky.po,,ky,,kyrgyz,,

- json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/uk.po,44,303,272,0,0,0,0,44,303,uk.po,,uk,,ukrainian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/nl.po,65,401,391,2,11,4,28,71,440,nl.po,,nl,,dutch,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/zh_tw.po,64,396,168,2,11,5,33,71,440,zh_tw.po,,zh,tw,chinese,,taiwan

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/pl.po,65,401,419,2,11,4,28,71,440,pl.po,,pl,,polish,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/sv.po,71,440,423,0,0,0,0,71,440,sv.po,,sv,,swedish,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/pt_br.po,65,401,427,2,11,4,28,71,440,pt_br.po,,pt,br,portuguese,,brazil

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/rw.po,1,2,2,59,394,11,44,71,440,rw.po,,rw,,kinyarwanda,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/fr.po,65,401,460,2,11,4,28,71,440,fr.po,,fr,,french,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/tr.po,64,395,347,3,17,4,28,71,440,tr.po,,tr,,turkish,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/hu.po,65,401,414,2,11,4,28,71,440,hu.po,,hu,,hungarian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/es.po,71,440,568,0,0,0,0,71,440,es.po,,es,,spanish,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/ru.po,17,83,85,22,99,32,258,71,440,ru.po,,ru,,russian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/id.po,65,401,398,2,11,4,28,71,440,id.po,,id,,indonesian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/ro.po,65,401,416,2,11,4,28,71,440,ro.po,,ro,,romanian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/it.po,71,440,492,0,0,0,0,71,440,it.po,,it,,italian,,

- jwhois-4.0-56.fc30.src.rpm.stats.csv,po/vi.po,71,440,666,0,0,0,0,71,440,vi.po,,vi,,vietnamese,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/zh_cn.po,266,2051,1075,8,372,1,7,275,2430,zh_cn.po,,zh,cn,chinese,,china

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/uk.po,275,2430,2423,0,0,0,0,275,2430,uk.po,,uk,,ukrainian,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/nl.po,275,2430,2442,0,0,0,0,275,2430,nl.po,,nl,,dutch,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/da.po,207,1512,1431,53,752,15,166,275,2430,da.po,,da,,danish,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/el.po,266,2051,2213,8,372,1,7,275,2430,el.po,,el,,greek,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/ru.po,275,2430,2397,0,0,0,0,275,2430,ru.po,,ru,,russian,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/eo.po,266,2051,2111,8,372,1,7,275,2430,eo.po,,eo,,esperanto,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/cs.po,275,2430,2346,0,0,0,0,275,2430,cs.po,,cs,,czech,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/sv.po,275,2430,2332,0,0,0,0,275,2430,sv.po,,sv,,swedish,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/it.po,207,1512,1816,53,752,15,166,275,2430,it.po,,it,,italian,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/ro.po,162,1063,1180,63,657,50,710,275,2430,ro.po,,ro,,romanian,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/vi.po,275,2430,3354,0,0,0,0,275,2430,vi.po,,vi,,vietnamese,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/fr.po,219,1736,2139,49,642,7,52,275,2430,fr.po,,fr,,french,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/id.po,181,1341,1370,68,678,26,411,275,2430,id.po,,id,,indonesian,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/de.po,275,2430,2500,0,0,0,0,275,2430,de.po,,de,,german,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/pl.po,275,2430,2424,0,0,0,0,275,2430,pl.po,,pl,,polish,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/es.po,169,1259,1653,59,548,47,623,275,2430,es.po,,es,,spanish,,

- kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/tr.po,164,1075,1005,61,645,50,710,275,2430,tr.po,,tr,,turkish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/zh_tw.po,12,83,26,0,0,0,0,12,83,zh_tw.po,,zh,tw,chinese,,taiwan

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/zh_cn.po,12,83,20,0,0,0,0,12,83,zh_cn.po,,zh,cn,chinese,,china

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,12,83,12,83,vi.po,,vi,,vietnamese,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/uk.po,2,51,34,2,8,8,24,12,83,uk.po,,uk,,ukrainian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,12,83,12,83,tr.po,,tr,,turkish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/te.po,12,83,50,0,0,0,0,12,83,te.po,,te,,telugu,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ta_in.po,4,59,39,3,11,5,13,12,83,ta_in.po,,ta,in,tamil,,india

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ta.po,12,83,66,0,0,0,0,12,83,ta.po,,ta,,tamil,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sv.po,2,51,43,2,8,8,24,12,83,sv.po,,sv,,swedish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr@latin.po,2,51,43,2,8,8,24,12,83,sr@latin.po,latin,sr,,serbian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr@latn.po,2,51,43,2,8,8,24,12,83,sr@latn.po,latn,sr,,serbian,latin,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr.po,2,51,43,2,8,8,24,12,83,sr.po,,sr,,serbian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,12,83,12,83,sq.po,,sq,,albanian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sl.po,2,51,42,2,8,8,24,12,83,sl.po,,sl,,slovenian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,12,83,12,83,sk.po,,sk,,slovak,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/si.po,2,51,46,4,14,6,18,12,83,si.po,,si,,sinhala,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ru.po,12,83,59,0,0,0,0,12,83,ru.po,,ru,,russian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pt_br.po,12,83,92,0,0,0,0,12,83,pt_br.po,,pt,br,portuguese,,brazil

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pt.po,2,51,55,2,8,8,24,12,83,pt.po,,pt,,portuguese,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pl.po,2,51,38,2,8,8,24,12,83,pl.po,,pl,,polish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pa.po,5,64,66,0,0,7,19,12,83,pa.po,,pa,,punjabi,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/or.po,12,83,91,0,0,0,0,12,83,or.po,,or,,odia,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,12,83,12,83,nl.po,,nl,,dutch,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/nb.po,2,51,47,2,8,8,24,12,83,nb.po,,nb,,norwegian bokmål,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ms.po,2,51,41,2,8,8,24,12,83,ms.po,,ms,,malay,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/mr.po,12,83,73,0,0,0,0,12,83,mr.po,,mr,,marathi,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ml.po,12,83,61,0,0,0,0,12,83,ml.po,,ml,,malayalam,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,12,83,12,83,lv.po,,lv,,latvian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ko.po,12,83,63,0,0,0,0,12,83,ko.po,,ko,,korean,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/kn.po,12,83,72,0,0,0,0,12,83,kn.po,,kn,,kannada,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,12,83,12,83,ka.po,,ka,,georgian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ja.po,12,83,30,0,0,0,0,12,83,ja.po,,ja,,japanese,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/it.po,12,83,88,0,0,0,0,12,83,it.po,,it,,italian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/is.po,2,51,48,2,8,8,24,12,83,is.po,,is,,icelandic,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/id.po,2,51,45,2,8,8,24,12,83,id.po,,id,,indonesian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hu.po,2,51,35,2,8,8,24,12,83,hu.po,,hu,,hungarian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hr.po,2,51,45,4,14,6,18,12,83,hr.po,,hr,,croatian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hi.po,12,83,86,0,0,0,0,12,83,hi.po,,hi,,hindi,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,12,83,12,83,he.po,,he,,hebrew,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/gu.po,12,83,89,0,0,0,0,12,83,gu.po,,gu,,gujarati,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fr.po,12,83,86,0,0,0,0,12,83,fr.po,,fr,,french,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fi.po,2,51,35,2,8,8,24,12,83,fi.po,,fi,,finnish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,12,83,12,83,fa.po,,fa,,persian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,12,83,12,83,et.po,,et,,estonian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/es.po,12,83,95,0,0,0,0,12,83,es.po,,es,,spanish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,12,83,12,83,en_gb.po,,en,gb,english,,united kingdom

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,12,83,12,83,el.po,,el,,greek,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/de.po,12,83,73,0,0,0,0,12,83,de.po,,de,,german,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/da.po,2,51,52,2,8,8,24,12,83,da.po,,da,,danish,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,12,83,12,83,cy.po,,cy,,welsh,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/cs.po,2,51,47,2,8,8,24,12,83,cs.po,,cs,,czech,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ca.po,2,51,53,2,8,8,24,12,83,ca.po,,ca,,catalan,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,12,83,12,83,bs.po,,bs,,bosnian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bn_in.po,12,83,82,0,0,0,0,12,83,bn_in.po,,bn,in,bangla,,india

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bg.po,2,51,49,2,8,8,24,12,83,bg.po,,bg,,bulgarian,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/as.po,12,83,79,0,0,0,0,12,83,as.po,,as,,assamese,,

- kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,12,83,12,83,ar.po,,ar,,arabic,,

- kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/pt.po,48,473,536,15,146,93,530,156,1149,pt.po,,pt,,portuguese,,

- kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/it.po,48,473,513,15,146,93,530,156,1149,it.po,,it,,italian,,

- kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/fr.po,39,394,432,21,211,96,544,156,1149,fr.po,,fr,,french,,

- kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/de.po,48,473,452,15,146,93,530,156,1149,de.po,,de,,german,,

- kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/cs.po,39,394,362,21,211,96,544,156,1149,cs.po,,cs,,czech,,

- krb5-1.17-4.fc30.src.rpm.stats.csv,src/po/de.po,1847,10072,10435,0,0,0,0,1847,10072,de.po,,de,,german,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/zh_tw.po,98,450,199,0,0,0,0,98,450,zh_tw.po,,zh,tw,chinese,,taiwan

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/zh_cn.po,91,419,191,1,7,0,0,92,426,zh_cn.po,,zh,cn,chinese,,china

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/uk.po,98,450,469,0,0,0,0,98,450,uk.po,,uk,,ukrainian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/tr.po,97,447,392,0,0,0,0,97,447,tr.po,,tr,,turkish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sv.po,98,450,409,0,0,0,0,98,450,sv.po,,sv,,swedish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sr@latin.po,62,297,289,0,0,0,0,62,297,sr@latin.po,latin,sr,,serbian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sr.po,84,382,378,0,0,0,0,84,382,sr.po,,sr,,serbian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sl.po,44,197,178,0,0,0,0,44,197,sl.po,,sl,,slovenian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sk.po,84,383,368,0,0,0,0,84,383,sk.po,,sk,,slovak,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ru.po,86,396,375,0,0,0,0,86,396,ru.po,,ru,,russian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pt_br.po,96,442,501,0,0,0,0,96,442,pt_br.po,,pt,br,portuguese,,brazil

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pt.po,62,297,325,0,0,0,0,62,297,pt.po,,pt,,portuguese,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pl.po,98,450,427,0,0,0,0,98,450,pl.po,,pl,,polish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/oc.po,48,211,240,0,0,0,0,48,211,oc.po,,oc,,occitan,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/lt.po,98,450,391,0,0,0,0,98,450,lt.po,,lt,,lithuanian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ko.po,86,396,327,0,0,0,0,86,396,ko.po,,ko,,korean,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/it.po,98,450,493,0,0,0,0,98,450,it.po,,it,,italian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/id.po,96,442,412,0,0,0,0,96,442,id.po,,id,,indonesian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/hu.po,98,450,428,0,0,0,0,98,450,hu.po,,hu,,hungarian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/gl.po,61,294,346,0,0,0,0,61,294,gl.po,,gl,,galician,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fur.po,96,442,538,0,0,0,0,96,442,fur.po,,fur,,friulian,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fr.po,98,450,554,0,0,0,0,98,450,fr.po,,fr,,french,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fi.po,28,90,65,0,0,0,0,28,90,fi.po,,fi,,finnish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/es.po,97,447,515,1,3,0,0,98,450,es.po,,es,,spanish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/en_gb.po,86,396,396,0,0,0,0,86,396,en_gb.po,,en,gb,english,,united kingdom

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/de.po,89,411,356,0,0,0,0,89,411,de.po,,de,,german,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/da.po,98,450,390,0,0,0,0,98,450,da.po,,da,,danish,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/cs.po,97,447,436,0,0,0,0,97,447,cs.po,,cs,,czech,,

- libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ca.po,98,450,608,0,0,0,0,98,450,ca.po,,ca,,catalan,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,17,17,17,17,lv.po,,lv,,latvian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,17,17,17,17,or.po,,or,,odia,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,17,17,17,17,nso.po,,nso,,northern sotho,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,17,17,17,17,bn.po,,bn,,bangla,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,17,17,17,17,br.po,,br,,breton,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,17,17,17,17,si.po,,si,,sinhala,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,17,17,17,17,bal.po,,bal,,baluchi,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hu.po,17,17,17,0,0,0,0,17,17,hu.po,,hu,,hungarian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ca.po,17,17,17,0,0,0,0,17,17,ca.po,,ca,,catalan,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,17,17,17,0,0,0,0,17,17,zh_cn.po,,zh,cn,chinese,,china

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,17,17,17,17,is.po,,is,,icelandic,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,17,17,17,17,vi.po,,vi,,vietnamese,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/be.po,17,17,17,0,0,0,0,17,17,be.po,,be,,belarusian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,17,17,17,17,nn.po,,nn,,norwegian nynorsk,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,17,17,17,17,fa.po,,fa,,persian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fr.po,17,17,17,0,0,0,0,17,17,fr.po,,fr,,french,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,17,17,17,17,ga.po,,ga,,irish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,17,17,17,17,anp.po,,anp,,angika,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,17,17,17,17,tr.po,,tr,,turkish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,17,17,17,17,yo.po,,yo,,yoruba,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,17,17,17,17,ia.po,,ia,,interlingua,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,17,17,17,17,mai.po,,mai,,maithili,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,17,17,17,17,ja.po,,ja,,japanese,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,17,17,17,17,kw_gb.po,,kw,gb,cornish,,united kingdom

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,17,17,17,17,ne.po,,ne,,nepali,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pl.po,17,17,17,0,0,0,0,17,17,pl.po,,pl,,polish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,17,17,17,17,pa.po,,pa,,punjabi,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,17,17,17,17,bo.po,,bo,,tibetan,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,17,17,17,17,eo.po,,eo,,esperanto,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,17,17,17,17,tw.po,,tw,,twi,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,17,17,17,17,gu.po,,gu,,gujarati,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,17,17,17,17,ast.po,,ast,,asturian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ru.po,17,17,17,0,0,0,0,17,17,ru.po,,ru,,russian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,17,17,17,17,kw.po,,kw,,cornish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,17,17,17,17,ro.po,,ro,,romanian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,17,17,17,17,ta.po,,ta,,tamil,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,17,17,17,17,sl.po,,sl,,slovenian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/id.po,17,17,17,0,0,0,0,17,17,id.po,,id,,indonesian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sq.po,17,17,17,0,0,0,0,17,17,sq.po,,sq,,albanian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,17,17,17,17,ml.po,,ml,,malayalam,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,17,17,17,17,af.po,,af,,afrikaans,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,17,17,17,17,zh_tw.po,,zh,tw,chinese,,taiwan

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nl.po,17,17,17,0,0,0,0,17,17,nl.po,,nl,,dutch,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,17,17,17,17,ms.po,,ms,,malay,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,17,17,17,17,kw@uccor.po,uccor,kw,,cornish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,17,17,17,17,te.po,,te,,telugu,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sk.po,17,17,17,0,0,0,0,17,17,sk.po,,sk,,slovak,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,17,17,17,17,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,17,17,17,17,de_ch.po,,de,ch,german,,switzerland

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sv.po,17,17,17,0,0,0,0,17,17,sv.po,,sv,,swedish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,17,17,17,17,lt.po,,lt,,lithuanian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,17,17,17,17,am.po,,am,,amharic,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,17,17,17,17,bg.po,,bg,,bulgarian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,17,17,17,17,he.po,,he,,hebrew,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,17,17,17,17,cy.po,,cy,,welsh,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,17,17,17,17,as.po,,as,,assamese,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,17,17,17,0,0,0,0,17,17,pt_br.po,,pt,br,portuguese,,brazil

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/uk.po,17,17,17,0,0,0,0,17,17,uk.po,,uk,,ukrainian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,17,17,17,17,brx.po,,brx,,bodo,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,17,17,17,17,ka.po,,ka,,georgian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,17,17,17,17,mk.po,,mk,,macedonian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,17,17,17,17,kw@kkcor.po,kkcor,kw,,cornish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,17,17,17,17,gl.po,,gl,,galician,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,17,17,17,17,el.po,,el,,greek,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/it.po,17,17,17,0,0,0,0,17,17,it.po,,it,,italian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/da.po,17,17,17,0,0,0,0,17,17,da.po,,da,,danish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,17,17,17,17,eu.po,,eu,,basque,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,17,17,17,17,nds.po,,nds,,low german,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,17,17,17,17,kn.po,,kn,,kannada,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,17,17,17,17,tg.po,,tg,,tajik,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/cs.po,17,17,17,0,0,0,0,17,17,cs.po,,cs,,czech,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,17,17,17,17,bn_in.po,,bn,in,bangla,,india

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,17,17,17,17,en_gb.po,,en,gb,english,,united kingdom

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,17,17,17,17,pt.po,,pt,,portuguese,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,17,17,17,17,sr.po,,sr,,serbian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,17,17,17,17,hr.po,,hr,,croatian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,17,17,17,17,ilo.po,,ilo,,iloko,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,17,17,17,17,th.po,,th,,thai,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,17,17,17,17,ar.po,,ar,,arabic,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,17,17,17,17,sr@latin.po,latin,sr,,serbian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,17,17,17,17,zu.po,,zu,,zulu,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,17,17,17,17,fi.po,,fi,,finnish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,17,17,17,17,et.po,,et,,estonian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,17,17,17,17,km.po,,km,,khmer,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,17,17,17,17,ko.po,,ko,,korean,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,17,17,17,17,hi.po,,hi,,hindi,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/de.po,17,17,17,0,0,0,0,17,17,de.po,,de,,german,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,17,17,17,17,bs.po,,bs,,bosnian,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/es.po,17,17,17,0,0,0,0,17,17,es.po,,es,,spanish,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,17,17,17,17,ky.po,,ky,,kyrgyz,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,17,17,17,17,mr.po,,mr,,marathi,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,17,17,17,17,kk.po,,kk,,kazakh,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,17,17,17,17,ur.po,,ur,,urdu,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,17,17,17,17,my.po,,my,,burmese,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,17,17,17,17,nb.po,,nb,,norwegian bokmål,,

- libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,17,17,17,17,mn.po,,mn,,mongolian,,

- libconfig-1.7.2-3.fc30.src.rpm.stats.csv,contrib/ls-config/src/po/en_gb.po,52,255,258,0,0,0,0,52,255,en_gb.po,,en,gb,english,,united kingdom

- libconfig-1.7.2-3.fc30.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,polish,,poland

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,111,640,233,0,0,62,383,173,1023,zh_tw.po,,zh,tw,chinese,,taiwan

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,124,720,381,0,0,49,303,173,1023,zh_cn.po,,zh,cn,chinese,,china

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/uk.po,173,1023,1096,0,0,0,0,173,1023,uk.po,,uk,,ukrainian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/tr.po,12,72,60,0,0,161,951,173,1023,tr.po,,tr,,turkish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/th.po,1,2,1,0,0,172,1021,173,1023,th.po,,th,,thai,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/te.po,1,2,2,0,0,172,1021,173,1023,te.po,,te,,telugu,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ta.po,1,2,2,0,0,172,1021,173,1023,ta.po,,ta,,tamil,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sv.po,106,615,640,0,0,67,408,173,1023,sv.po,,sv,,swedish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1,2,2,0,0,172,1021,173,1023,sr@latin.po,latin,sr,,serbian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sr.po,1,2,2,0,0,172,1021,173,1023,sr.po,,sr,,serbian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sq.po,1,2,4,0,0,172,1021,173,1023,sq.po,,sq,,albanian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sk.po,3,13,14,0,0,170,1010,173,1023,sk.po,,sk,,slovak,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ru.po,106,615,613,0,0,67,408,173,1023,ru.po,,ru,,russian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,106,615,711,0,0,67,408,173,1023,pt_br.po,,pt,br,portuguese,,brazil

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pt.po,13,74,86,0,0,160,949,173,1023,pt.po,,pt,,portuguese,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pl.po,173,1023,1139,0,0,0,0,173,1023,pl.po,,pl,,polish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pa.po,5,22,28,0,0,168,1001,173,1023,pa.po,,pa,,punjabi,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/or.po,1,2,2,0,0,172,1021,173,1023,or.po,,or,,odia,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/nl.po,24,157,169,0,0,149,866,173,1023,nl.po,,nl,,dutch,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/nb.po,1,2,1,0,0,172,1021,173,1023,nb.po,,nb,,norwegian bokmål,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/mr.po,1,2,3,0,0,172,1021,173,1023,mr.po,,mr,,marathi,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ml.po,1,2,1,0,0,172,1021,173,1023,ml.po,,ml,,malayalam,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/mai.po,1,2,1,0,0,172,1021,173,1023,mai.po,,mai,,maithili,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ko.po,103,585,552,0,0,70,438,173,1023,ko.po,,ko,,korean,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/kn.po,1,2,1,0,0,172,1021,173,1023,kn.po,,kn,,kannada,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ja.po,124,720,370,0,0,49,303,173,1023,ja.po,,ja,,japanese,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/it.po,106,615,730,0,0,67,408,173,1023,it.po,,it,,italian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/is.po,1,2,2,0,0,172,1021,173,1023,is.po,,is,,icelandic,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/id.po,3,13,12,0,0,170,1010,173,1023,id.po,,id,,indonesian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ia.po,1,2,2,0,0,172,1021,173,1023,ia.po,,ia,,interlingua,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/hu.po,25,162,172,0,0,148,861,173,1023,hu.po,,hu,,hungarian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/hi.po,1,2,2,0,0,172,1021,173,1023,hi.po,,hi,,hindi,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/gu.po,1,2,2,0,0,172,1021,173,1023,gu.po,,gu,,gujarati,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fur.po,14,88,113,0,0,159,935,173,1023,fur.po,,fur,,friulian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fr.po,173,1023,1297,0,0,0,0,173,1023,fr.po,,fr,,french,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fil.po,1,8,9,0,0,172,1015,173,1023,fil.po,,fil,,filipino,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fi.po,8,36,32,0,0,165,987,173,1023,fi.po,,fi,,finnish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fa.po,1,2,3,0,0,172,1021,173,1023,fa.po,,fa,,persian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/eu.po,1,4,5,0,0,172,1019,173,1023,eu.po,,eu,,basque,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/es.po,106,615,810,0,0,67,408,173,1023,es.po,,es,,spanish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/el.po,1,2,2,0,0,172,1021,173,1023,el.po,,el,,greek,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/de.po,106,615,658,0,0,67,408,173,1023,de.po,,de,,german,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/da.po,5,18,18,0,0,168,1005,173,1023,da.po,,da,,danish,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/cs.po,25,167,162,0,0,148,856,173,1023,cs.po,,cs,,czech,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ca.po,21,123,169,0,0,152,900,173,1023,ca.po,,ca,,catalan,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,1,2,1,0,0,172,1021,173,1023,bn_in.po,,bn,in,bangla,,india

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bn.po,1,2,1,0,0,172,1021,173,1023,bn.po,,bn,,bangla,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bg.po,6,30,32,0,0,167,993,173,1023,bg.po,,bg,,bulgarian,,

- libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/as.po,1,2,1,0,0,172,1021,173,1023,as.po,,as,,assamese,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sq.po,181,458,531,3,17,993,6502,1177,6977,sq.po,,sq,,albanian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sr.po,602,3700,3293,4,25,571,3252,1177,6977,sr.po,,sr,,serbian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/tr.po,407,997,992,3,17,767,5963,1177,6977,tr.po,,tr,,turkish,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/de.po,1176,6976,5965,1,1,0,0,1177,6977,de.po,,de,,german,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pl.po,1177,6977,6334,0,0,0,0,1177,6977,pl.po,,pl,,polish,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/nl.po,1172,6930,6251,5,47,0,0,1177,6977,nl.po,,nl,,dutch,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_ca.po,59,705,705,0,0,1118,6272,1177,6977,en_ca.po,,en,ca,english,,canada

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/zh_cn.po,355,999,736,3,17,819,5961,1177,6977,zh_cn.po,,zh,cn,chinese,,china

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/ru.po,648,3546,3071,5,47,524,3384,1177,6977,ru.po,,ru,,russian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pt_br.po,657,1746,1936,3,17,517,5214,1177,6977,pt_br.po,,pt,br,portuguese,,brazil

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sk.po,1177,6977,6232,0,0,0,0,1177,6977,sk.po,,sk,,slovak,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sv.po,612,1540,1395,119,321,446,5116,1177,6977,sv.po,,sv,,swedish,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_au.po,1172,6930,6930,5,47,0,0,1177,6977,en_au.po,,en,au,english,,australia

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/ja.po,728,1894,1376,24,80,425,5003,1177,6977,ja.po,,ja,,japanese,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/vi.po,1177,6977,8942,0,0,0,0,1177,6977,vi.po,,vi,,vietnamese,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/fr.po,182,1220,1329,393,1220,602,4537,1177,6977,fr.po,,fr,,french,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/da.po,1177,6977,5807,0,0,0,0,1177,6977,da.po,,da,,danish,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/uk.po,548,1243,1389,0,0,629,5734,1177,6977,uk.po,,uk,,ukrainian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/es.po,242,2517,2806,387,2212,548,2248,1177,6977,es.po,,es,,spanish,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/it.po,892,5092,5425,57,503,228,1382,1177,6977,it.po,,it,,italian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pt.po,170,420,428,3,17,1004,6540,1177,6977,pt.po,,pt,,portuguese,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/bs.po,1172,6930,6271,5,47,0,0,1177,6977,bs.po,,bs,,bosnian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/be.po,215,610,609,3,17,959,6350,1177,6977,be.po,,be,,belarusian,,

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_gb.po,1172,6930,6930,5,47,0,0,1177,6977,en_gb.po,,en,gb,english,,united kingdom

- libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/cs.po,729,3309,2947,5,47,443,3621,1177,6977,cs.po,,cs,,czech,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/lv.po,84,684,537,0,0,0,0,84,684,lv.po,,lv,,latvian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ta.po,74,597,446,0,0,0,0,74,597,ta.po,,ta,,tamil,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/hi.po,76,614,721,0,0,0,0,76,614,hi.po,,hi,,hindi,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/tr.po,82,673,539,0,0,0,0,82,673,tr.po,,tr,,turkish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/et.po,85,695,542,0,0,0,0,85,695,et.po,,et,,estonian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sl.po,84,684,640,0,0,0,0,84,684,sl.po,,sl,,slovenian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/cs.po,84,684,627,0,0,0,0,84,684,cs.po,,cs,,czech,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/as.po,85,695,656,0,0,0,0,85,695,as.po,,as,,assamese,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pl.po,84,684,594,0,0,0,0,84,684,pl.po,,pl,,polish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/th.po,84,684,195,0,0,0,0,84,684,th.po,,th,,thai,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pt_br.po,84,684,717,0,0,0,0,84,684,pt_br.po,,pt,br,portuguese,,brazil

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fi.po,76,612,495,4,41,4,31,84,684,fi.po,,fi,,finnish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/oc.po,84,684,752,0,0,0,0,84,684,oc.po,,oc,,occitan,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/it.po,84,684,695,0,0,0,0,84,684,it.po,,it,,italian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/vi.po,84,684,848,0,0,0,0,84,684,vi.po,,vi,,vietnamese,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bs.po,85,695,609,0,0,0,0,85,695,bs.po,,bs,,bosnian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ar.po,55,403,333,0,0,19,194,74,597,ar.po,,ar,,arabic,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/te.po,76,614,470,0,0,0,0,76,614,te.po,,te,,telugu,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/lt.po,84,684,526,0,0,0,0,84,684,lt.po,,lt,,lithuanian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bg.po,85,695,751,0,0,0,0,85,695,bg.po,,bg,,bulgarian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ug.po,76,614,544,0,0,0,0,76,614,ug.po,,ug,,uyghur,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fr.po,84,684,770,0,0,0,0,84,684,fr.po,,fr,,french,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/mr.po,74,597,506,0,0,0,0,74,597,mr.po,,mr,,marathi,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/es.po,84,684,732,0,0,0,0,84,684,es.po,,es,,spanish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/da.po,84,684,661,0,0,0,0,84,684,da.po,,da,,danish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ja.po,81,659,129,0,0,1,12,82,671,ja.po,,ja,,japanese,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_cn.po,84,684,142,0,0,0,0,84,684,zh_cn.po,,zh,cn,chinese,,china

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sv.po,84,684,652,0,0,0,0,84,684,sv.po,,sv,,swedish,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/id.po,84,684,625,0,0,0,0,84,684,id.po,,id,,indonesian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ca.po,85,695,729,0,0,0,0,85,695,ca.po,,ca,,catalan,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/eo.po,51,370,319,0,0,23,227,74,597,eo.po,,eo,,esperanto,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_tw.po,84,684,148,0,0,0,0,84,684,zh_tw.po,,zh,tw,chinese,,taiwan

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ko.po,84,684,476,0,0,0,0,84,684,ko.po,,ko,,korean,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ml.po,30,192,143,2,22,44,400,76,614,ml.po,,ml,,malayalam,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/nb.po,84,684,673,0,0,0,0,84,684,nb.po,,nb,,norwegian bokmål,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_hk.po,85,695,150,0,0,0,0,85,695,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,85,695,729,0,0,0,0,85,695,ca@valencia.po,valencia,ca,,catalan,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/gu.po,48,324,349,4,34,33,337,85,695,gu.po,,gu,,gujarati,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pa.po,85,695,731,0,0,0,0,85,695,pa.po,,pa,,punjabi,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/be.po,84,684,617,0,0,0,0,84,684,be.po,,be,,belarusian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/eu.po,84,684,591,0,0,0,0,84,684,eu.po,,eu,,basque,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pt.po,84,684,722,0,0,0,0,84,684,pt.po,,pt,,portuguese,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/kn.po,14,79,68,0,0,60,518,74,597,kn.po,,kn,,kannada,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/en_gb.po,84,684,684,0,0,0,0,84,684,en_gb.po,,en,gb,english,,united kingdom

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ru.po,84,684,572,0,0,0,0,84,684,ru.po,,ru,,russian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/el.po,84,684,790,0,0,0,0,84,684,el.po,,el,,greek,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ro.po,67,552,604,0,0,0,0,67,552,ro.po,,ro,,romanian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/he.po,84,684,564,0,0,0,0,84,684,he.po,,he,,hebrew,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/tg.po,12,106,107,0,0,64,508,76,614,tg.po,,tg,,tajik,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/hu.po,84,684,569,0,0,0,0,84,684,hu.po,,hu,,hungarian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/gl.po,84,684,711,0,0,0,0,84,684,gl.po,,gl,,galician,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sr.po,84,684,640,0,0,0,0,84,684,sr.po,,sr,,serbian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/de.po,84,684,672,0,0,0,0,84,684,de.po,,de,,german,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bn_in.po,67,552,540,0,0,0,0,67,552,bn_in.po,,bn,in,bangla,,india

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/or.po,74,597,582,0,0,0,0,74,597,or.po,,or,,odia,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sr@latin.po,84,684,640,0,0,0,0,84,684,sr@latin.po,latin,sr,,serbian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/uk.po,74,597,503,0,0,0,0,74,597,uk.po,,uk,,ukrainian,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/nl.po,75,607,608,0,0,0,0,75,607,nl.po,,nl,,dutch,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sk.po,84,684,642,0,0,0,0,84,684,sk.po,,sk,,slovak,,

- libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fur.po,84,684,781,0,0,0,0,84,684,fur.po,,fur,,friulian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ml.po,39,187,147,0,0,0,0,39,187,ml.po,,ml,,malayalam,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nn.po,50,277,280,0,0,0,0,50,277,nn.po,,nn,,norwegian nynorsk,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/eu.po,55,242,201,0,0,0,0,55,242,eu.po,,eu,,basque,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/lv.po,39,187,161,0,0,0,0,39,187,lv.po,,lv,,latvian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/km.po,39,187,69,0,0,0,0,39,187,km.po,,km,,khmer,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ar.po,55,242,231,0,0,0,0,55,242,ar.po,,ar,,arabic,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/eo.po,40,188,159,0,0,0,0,40,188,eo.po,,eo,,esperanto,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bs.po,39,187,177,0,0,0,0,39,187,bs.po,,bs,,bosnian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,40,188,227,0,0,0,0,40,188,pt_br.po,,pt,br,portuguese,,brazil

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/oc.po,39,187,239,0,0,0,0,39,187,oc.po,,oc,,occitan,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ru.po,55,242,218,0,0,0,0,55,242,ru.po,,ru,,russian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ast.po,59,286,340,0,0,0,0,59,286,ast.po,,ast,,asturian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/vi.po,40,188,263,0,0,0,0,40,188,vi.po,,vi,,vietnamese,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/hu.po,40,188,151,0,0,0,0,40,188,hu.po,,hu,,hungarian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ja.po,55,242,77,0,0,0,0,55,242,ja.po,,ja,,japanese,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,55,242,241,0,0,0,0,55,242,en_gb.po,,en,gb,english,,united kingdom

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/cs.po,40,188,165,0,0,0,0,40,188,cs.po,,cs,,czech,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pa.po,55,242,236,0,0,0,0,55,242,pa.po,,pa,,punjabi,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,55,242,68,0,0,0,0,55,242,zh_cn.po,,zh,cn,chinese,,china

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/lt.po,40,188,157,0,0,0,0,40,188,lt.po,,lt,,lithuanian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,49,235,217,0,0,0,0,49,235,be@latin.po,latin,be,,belarusian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/tr.po,40,188,175,0,0,0,0,40,188,tr.po,,tr,,turkish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/be.po,55,242,230,0,0,0,0,55,242,be.po,,be,,belarusian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/uk.po,55,242,218,0,0,0,0,55,242,uk.po,,uk,,ukrainian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/id.po,40,188,199,0,0,0,0,40,188,id.po,,id,,indonesian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/es.po,40,188,241,0,0,0,0,40,188,es.po,,es,,spanish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,39,187,188,0,0,0,0,39,187,bn_in.po,,bn,in,bangla,,india

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ka.po,49,262,199,0,0,0,0,49,262,ka.po,,ka,,georgian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ro.po,55,242,238,0,0,0,0,55,242,ro.po,,ro,,romanian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/gl.po,55,242,317,0,0,0,0,55,242,gl.po,,gl,,galician,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/or.po,55,242,255,0,0,0,0,55,242,or.po,,or,,odia,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/da.po,40,188,143,0,0,0,0,40,188,da.po,,da,,danish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nl.po,40,188,155,0,0,0,0,40,188,nl.po,,nl,,dutch,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/kk.po,39,187,163,0,0,0,0,39,187,kk.po,,kk,,kazakh,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bg.po,55,242,272,0,0,0,0,55,242,bg.po,,bg,,bulgarian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/th.po,55,242,81,0,0,0,0,55,242,th.po,,th,,thai,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/tg.po,39,187,180,0,0,0,0,39,187,tg.po,,tg,,tajik,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bn.po,59,286,282,0,0,0,0,59,286,bn.po,,bn,,bangla,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/dz.po,50,277,101,0,0,0,0,50,277,dz.po,,dz,,dzongkha,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ug.po,55,242,216,0,0,0,0,55,242,ug.po,,ug,,uyghur,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/et.po,55,242,197,0,0,0,0,55,242,et.po,,et,,estonian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sr.po,40,188,190,0,0,0,0,40,188,sr.po,,sr,,serbian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/he.po,55,242,244,0,0,0,0,55,242,he.po,,he,,hebrew,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,55,242,68,0,0,0,0,55,242,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ta.po,55,242,208,0,0,0,0,55,242,ta.po,,ta,,tamil,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/si.po,49,262,268,0,0,0,0,49,262,si.po,,si,,sinhala,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,40,188,190,0,0,0,0,40,188,sr@latin.po,latin,sr,,serbian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fur.po,39,187,233,0,0,0,0,39,187,fur.po,,fur,,friulian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ms.po,47,183,166,0,0,12,103,59,286,ms.po,,ms,,malay,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ga.po,51,246,275,0,0,0,0,51,246,ga.po,,ga,,irish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sk.po,40,188,170,0,0,0,0,40,188,sk.po,,sk,,slovak,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,55,242,324,0,0,0,0,55,242,ca@valencia.po,valencia,ca,,catalan,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/hi.po,39,187,187,0,0,0,0,39,187,hi.po,,hi,,hindi,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sq.po,49,235,286,0,0,0,0,49,235,sq.po,,sq,,albanian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ko.po,55,242,225,0,0,0,0,55,242,ko.po,,ko,,korean,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fr.po,55,242,296,0,0,0,0,55,242,fr.po,,fr,,french,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fa.po,55,242,227,0,0,0,0,55,242,fa.po,,fa,,persian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sv.po,40,188,140,0,0,0,0,40,188,sv.po,,sv,,swedish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/it.po,40,188,217,0,0,0,0,40,188,it.po,,it,,italian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,51,210,210,8,76,0,0,59,286,en@shaw.po,shaw,en,,english,shavian,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mr.po,39,187,162,0,0,0,0,39,187,mr.po,,mr,,marathi,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/as.po,39,187,177,0,0,0,0,39,187,as.po,,as,,assamese,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/kn.po,39,187,159,0,0,0,0,39,187,kn.po,,kn,,kannada,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mk.po,49,235,281,0,0,0,0,49,235,mk.po,,mk,,macedonian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pl.po,40,188,171,0,0,0,0,40,188,pl.po,,pl,,polish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/gu.po,55,242,224,0,0,0,0,55,242,gu.po,,gu,,gujarati,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pt.po,40,188,231,0,0,0,0,40,188,pt.po,,pt,,portuguese,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nb.po,55,242,211,0,0,0,0,55,242,nb.po,,nb,,norwegian bokmål,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/te.po,55,242,215,0,0,0,0,55,242,te.po,,te,,telugu,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/el.po,39,187,187,0,0,0,0,39,187,el.po,,el,,greek,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mai.po,27,109,111,0,0,24,137,51,246,mai.po,,mai,,maithili,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fi.po,40,188,126,0,0,0,0,40,188,fi.po,,fi,,finnish,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/de.po,40,188,156,0,0,0,0,40,188,de.po,,de,,german,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ca.po,55,242,324,0,0,0,0,55,242,ca.po,,ca,,catalan,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sl.po,40,188,173,0,0,0,0,40,188,sl.po,,sl,,slovenian,,

- libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,55,242,68,0,0,0,0,55,242,zh_tw.po,,zh,tw,chinese,,taiwan

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/eu.po,23,102,118,0,0,0,0,23,102,eu.po,,eu,,basque,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/el.po,23,102,115,0,0,0,0,23,102,el.po,,el,,greek,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/id.po,23,102,105,0,0,0,0,23,102,id.po,,id,,indonesian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pt_br.po,23,102,131,0,0,0,0,23,102,pt_br.po,,pt,br,portuguese,,brazil

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/de.po,23,102,102,0,0,0,0,23,102,de.po,,de,,german,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/bs.po,23,102,104,0,0,0,0,23,102,bs.po,,bs,,bosnian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/cs.po,23,102,98,0,0,0,0,23,102,cs.po,,cs,,czech,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/tr.po,23,102,91,0,0,0,0,23,102,tr.po,,tr,,turkish,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sr.po,23,102,116,0,0,0,0,23,102,sr.po,,sr,,serbian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/fr.po,23,102,119,0,0,0,0,23,102,fr.po,,fr,,french,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sr@latin.po,23,102,116,0,0,0,0,23,102,sr@latin.po,latin,sr,,serbian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/es.po,23,102,140,0,0,0,0,23,102,es.po,,es,,spanish,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/ru.po,23,102,101,0,0,0,0,23,102,ru.po,,ru,,russian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pl.po,23,102,112,0,0,0,0,23,102,pl.po,,pl,,polish,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/lt.po,23,102,90,0,0,0,0,23,102,lt.po,,lt,,lithuanian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/oc.po,23,102,120,0,0,0,0,23,102,oc.po,,oc,,occitan,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sl.po,23,102,107,0,0,0,0,23,102,sl.po,,sl,,slovenian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/zh_cn.po,23,102,57,0,0,0,0,23,102,zh_cn.po,,zh,cn,chinese,,china

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sv.po,23,102,83,0,0,0,0,23,102,sv.po,,sv,,swedish,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/hu.po,23,102,103,0,0,0,0,23,102,hu.po,,hu,,hungarian,,

- libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pt.po,23,102,112,0,0,0,0,23,102,pt.po,,pt,,portuguese,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/hu.po,257,738,758,116,381,71,301,444,1420,hu.po,,hu,,hungarian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/vi.po,259,740,1268,114,373,71,307,444,1420,vi.po,,vi,,vietnamese,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/zh_tw.po,327,978,445,75,270,42,172,444,1420,zh_tw.po,,zh,tw,chinese,,taiwan

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/cs.po,327,978,986,75,270,42,172,444,1420,cs.po,,cs,,czech,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/sv.po,274,789,688,107,358,63,273,444,1420,sv.po,,sv,,swedish,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/zh_cn.po,200,546,230,115,376,129,498,444,1420,zh_cn.po,,zh,cn,chinese,,china

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/sr.po,257,738,794,112,367,75,315,444,1420,sr.po,,sr,,serbian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/de.po,444,1420,1369,0,0,0,0,444,1420,de.po,,de,,german,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ru.po,444,1420,1447,0,0,0,0,444,1420,ru.po,,ru,,russian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ro.po,223,613,723,138,446,83,361,444,1420,ro.po,,ro,,romanian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/uk.po,444,1420,1544,0,0,0,0,444,1420,uk.po,,uk,,ukrainian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/pl.po,417,1321,1380,17,55,10,44,444,1420,pl.po,,pl,,polish,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/eo.po,259,740,728,118,387,67,293,444,1420,eo.po,,eo,,esperanto,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/da.po,325,971,854,77,277,42,172,444,1420,da.po,,da,,danish,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/pt.po,310,922,1129,88,306,46,192,444,1420,pt.po,,pt,,portuguese,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/nl.po,309,917,830,85,297,50,206,444,1420,nl.po,,nl,,dutch,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/es.po,392,1187,1557,0,0,52,233,444,1420,es.po,,es,,spanish,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ja.po,444,1420,540,0,0,0,0,444,1420,ja.po,,ja,,japanese,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/it.po,310,922,1098,88,306,46,192,444,1420,it.po,,it,,italian,,

- libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/fr.po,327,978,1166,75,270,42,172,444,1420,fr.po,,fr,,french,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/cs.po,75,459,412,1,3,0,0,76,462,cs.po,,cs,,czech,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sr.po,76,462,482,0,0,0,0,76,462,sr.po,,sr,,serbian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/de.po,75,459,451,1,3,0,0,76,462,de.po,,de,,german,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/zh_tw.po,76,462,197,0,0,0,0,76,462,zh_tw.po,,zh,tw,chinese,,taiwan

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sv.po,76,462,432,0,0,0,0,76,462,sv.po,,sv,,swedish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/nl.po,76,462,463,0,0,0,0,76,462,nl.po,,nl,,dutch,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/fi.po,76,462,355,0,0,0,0,76,462,fi.po,,fi,,finnish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/vi.po,76,462,624,0,0,0,0,76,462,vi.po,,vi,,vietnamese,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/es.po,76,462,531,0,0,0,0,76,462,es.po,,es,,spanish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/da.po,76,462,426,0,0,0,0,76,462,da.po,,da,,danish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/pl.po,76,462,487,0,0,0,0,76,462,pl.po,,pl,,polish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/ja.po,48,269,112,23,173,5,20,76,462,ja.po,,ja,,japanese,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/zh_cn.po,76,462,181,0,0,0,0,76,462,zh_cn.po,,zh,cn,chinese,,china

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/fr.po,76,462,509,0,0,0,0,76,462,fr.po,,fr,,french,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/ru.po,76,462,409,0,0,0,0,76,462,ru.po,,ru,,russian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/it.po,75,459,491,1,3,0,0,76,462,it.po,,it,,italian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sk.po,69,405,386,5,50,2,7,76,462,sk.po,,sk,,slovak,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/eu.po,44,263,239,23,173,9,26,76,462,eu.po,,eu,,basque,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/uk.po,76,462,435,0,0,0,0,76,462,uk.po,,uk,,ukrainian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/pt_br.po,76,462,555,0,0,0,0,76,462,pt_br.po,,pt,br,portuguese,,brazil

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/cs.po,2159,9977,11381,255,890,60,203,2474,11070,cs.po,,cs,,czech,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/de.po,2275,10183,9472,154,585,45,302,2474,11070,de.po,,de,,german,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/sv.po,2451,11013,9698,20,51,3,6,2474,11070,sv.po,,sv,,swedish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/nl.po,1895,8700,8049,298,1010,281,1360,2474,11070,nl.po,,nl,,dutch,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/vi.po,2423,10925,15568,44,133,7,12,2474,11070,vi.po,,vi,,vietnamese,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/es.po,1705,6671,7818,594,2310,175,2089,2474,11070,es.po,,es,,spanish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/da.po,2451,11013,9807,20,51,3,6,2474,11070,da.po,,da,,danish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/pl.po,2451,11013,11072,20,51,3,6,2474,11070,pl.po,,pl,,polish,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/ja.po,1180,5257,2874,658,2916,636,2897,2474,11070,ja.po,,ja,,japanese,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/zh_cn.po,602,2742,1278,749,3174,1123,5154,2474,11070,zh_cn.po,,zh,cn,chinese,,china

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/fr.po,2423,10925,13610,44,133,7,12,2474,11070,fr.po,,fr,,french,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/hu.po,579,2661,2623,756,3217,1139,5192,2474,11070,hu.po,,hu,,hungarian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/ru.po,577,3043,2796,727,2845,1170,5182,2474,11070,ru.po,,ru,,russian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/it.po,1534,5406,5837,85,248,855,5416,2474,11070,it.po,,it,,italian,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/eu.po,794,4240,3992,851,3592,829,3238,2474,11070,eu.po,,eu,,basque,,

- libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/uk.po,2451,11013,10867,20,51,3,6,2474,11070,uk.po,,uk,,ukrainian,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/es.po,149,891,1110,33,146,3,16,185,1053,es.po,,es,,spanish,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/ro.po,108,761,862,58,225,19,67,185,1053,ro.po,,ro,,romanian,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/fr.po,180,1024,1231,4,23,1,6,185,1053,fr.po,,fr,,french,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/zh_cn.po,149,891,220,33,146,3,16,185,1053,zh_cn.po,,zh,cn,chinese,,china

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/it.po,185,1053,1236,0,0,0,0,185,1053,it.po,,it,,italian,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/ja.po,90,650,358,55,282,40,121,185,1053,ja.po,,ja,,japanese,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/sv.po,149,891,889,33,146,3,16,185,1053,sv.po,,sv,,swedish,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/de.po,149,891,986,33,146,3,16,185,1053,de.po,,de,,german,,

- libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/he.po,149,891,902,33,146,3,16,185,1053,he.po,,he,,hebrew,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/tr.po,149,719,619,0,0,0,0,149,719,tr.po,,tr,,turkish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ta.po,34,243,195,0,0,0,0,34,243,ta.po,,ta,,tamil,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ro.po,110,843,1003,0,0,0,0,110,843,ro.po,,ro,,romanian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_cn.po,150,720,307,0,0,0,0,150,720,zh_cn.po,,zh,cn,chinese,,china

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/it.po,146,696,760,0,0,0,0,146,696,it.po,,it,,italian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pa.po,13,69,70,0,0,97,774,110,843,pa.po,,pa,,punjabi,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ca.po,146,696,981,0,0,0,0,146,696,ca.po,,ca,,catalan,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pt_br.po,150,720,877,0,0,0,0,150,720,pt_br.po,,pt,br,portuguese,,brazil

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ru.po,149,719,649,0,0,0,0,149,719,ru.po,,ru,,russian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ml.po,15,27,28,0,0,131,669,146,696,ml.po,,ml,,malayalam,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/es.po,150,720,925,0,0,0,0,150,720,es.po,,es,,spanish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pt.po,150,720,817,0,0,0,0,150,720,pt.po,,pt,,portuguese,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/da.po,150,720,655,0,0,0,0,150,720,da.po,,da,,danish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sv.po,150,720,647,0,0,0,0,150,720,sv.po,,sv,,swedish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/tg.po,2,5,5,0,0,145,697,147,702,tg.po,,tg,,tajik,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/he.po,146,696,696,0,0,0,0,146,696,he.po,,he,,hebrew,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/uk.po,28,213,195,0,0,0,0,28,213,uk.po,,uk,,ukrainian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/eo.po,116,503,481,3,20,31,197,150,720,eo.po,,eo,,esperanto,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,146,696,971,0,0,0,0,146,696,ca@valencia.po,valencia,ca,,catalan,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/fr.po,150,720,909,0,0,0,0,150,720,fr.po,,fr,,french,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/nb.po,75,359,346,1,3,70,334,146,696,nb.po,,nb,,norwegian bokmål,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pl.po,150,720,696,0,0,0,0,150,720,pl.po,,pl,,polish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sl.po,150,720,700,0,0,0,0,150,720,sl.po,,sl,,slovenian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/eu.po,149,719,669,0,0,0,0,149,719,eu.po,,eu,,basque,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/en_gb.po,145,692,692,0,0,0,0,145,692,en_gb.po,,en,gb,english,,united kingdom

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/de.po,150,720,693,0,0,0,0,150,720,de.po,,de,,german,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/fi.po,146,696,524,0,0,0,0,146,696,fi.po,,fi,,finnish,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_tw.po,146,696,275,0,0,0,0,146,696,zh_tw.po,,zh,tw,chinese,,taiwan

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sr@latin.po,150,720,712,0,0,0,0,150,720,sr@latin.po,latin,sr,,serbian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/bs.po,149,719,699,0,0,0,0,149,719,bs.po,,bs,,bosnian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sr.po,150,720,712,0,0,0,0,150,720,sr.po,,sr,,serbian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sk.po,150,720,721,0,0,0,0,150,720,sk.po,,sk,,slovak,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/gl.po,146,696,871,0,0,0,0,146,696,gl.po,,gl,,galician,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_hk.po,146,696,275,0,0,0,0,146,696,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/lv.po,146,696,617,0,0,0,0,146,696,lv.po,,lv,,latvian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/th.po,83,413,190,0,0,63,283,146,696,th.po,,th,,thai,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/el.po,150,720,763,0,0,0,0,150,720,el.po,,el,,greek,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/oc.po,34,216,256,0,0,112,480,146,696,oc.po,,oc,,occitan,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/nn.po,109,833,717,0,0,1,10,110,843,nn.po,,nn,,norwegian nynorsk,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/hu.po,150,720,678,0,0,0,0,150,720,hu.po,,hu,,hungarian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ko.po,146,696,609,0,0,0,0,146,696,ko.po,,ko,,korean,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ja.po,145,692,276,1,4,0,0,146,696,ja.po,,ja,,japanese,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/id.po,150,720,685,0,0,0,0,150,720,id.po,,id,,indonesian,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/cs.po,150,720,691,0,0,0,0,150,720,cs.po,,cs,,czech,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/as.po,1,9,8,0,0,145,687,146,696,as.po,,as,,assamese,,

- libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/lt.po,150,720,621,0,0,0,0,150,720,lt.po,,lt,,lithuanian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sr.po,40,126,159,0,0,0,0,40,126,sr.po,,sr,,serbian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/cs.po,40,126,133,0,0,0,0,40,126,cs.po,,cs,,czech,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,6,24,102,15,27,44,134,rw.po,,rw,,kinyarwanda,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ru.po,40,126,129,0,0,0,0,40,126,ru.po,,ru,,russian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,40,126,64,0,0,0,0,40,126,zh_tw.po,,zh,tw,chinese,,taiwan

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ca.po,40,126,168,0,0,0,0,40,126,ca.po,,ca,,catalan,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ku.po,7,17,22,1,1,36,116,44,134,ku.po,,ku,,kurdish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ka.po,10,14,14,17,81,17,39,44,134,ka.po,,ka,,georgian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/gl.po,40,126,161,0,0,0,0,40,126,gl.po,,gl,,galician,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/vi.po,41,126,227,0,0,0,0,41,126,vi.po,,vi,,vietnamese,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nn.po,40,126,111,0,0,0,0,40,126,nn.po,,nn,,norwegian nynorsk,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nl.po,40,126,124,0,0,0,0,40,126,nl.po,,nl,,dutch,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hu.po,40,126,108,0,0,0,0,40,126,hu.po,,hu,,hungarian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/th.po,40,126,56,0,0,0,0,40,126,th.po,,th,,thai,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/la.po,2,2,2,0,0,38,124,40,126,la.po,,la,,latin,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bs.po,40,126,135,0,0,0,0,40,126,bs.po,,bs,,bosnian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pt.po,40,126,146,0,0,0,0,40,126,pt.po,,pt,,portuguese,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,40,126,167,0,0,0,0,40,126,ca@valencia.po,valencia,ca,,catalan,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,40,126,159,0,0,0,0,40,126,sr@latin.po,latin,sr,,serbian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mk.po,40,126,152,0,0,0,0,40,126,mk.po,,mk,,macedonian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hi.po,40,126,145,0,0,0,0,40,126,hi.po,,hi,,hindi,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,8,34,36,100,44,134,mi.po,,mi,,maori,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/te.po,40,126,113,0,0,0,0,40,126,te.po,,te,,telugu,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fr.po,40,126,148,0,0,0,0,40,126,fr.po,,fr,,french,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/tg.po,40,126,129,0,0,0,0,40,126,tg.po,,tg,,tajik,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ta.po,40,126,113,0,0,0,0,40,126,ta.po,,ta,,tamil,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hr.po,40,126,137,0,0,0,0,40,126,hr.po,,hr,,croatian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pa.po,40,126,127,0,0,0,0,40,126,pa.po,,pa,,punjabi,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/id.po,40,126,115,0,0,0,0,40,126,id.po,,id,,indonesian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/xh.po,44,134,153,0,0,0,0,44,134,xh.po,,xh,,xhosa,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,40,126,147,0,0,0,0,40,126,pt_br.po,,pt,br,portuguese,,brazil

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/lt.po,40,126,132,0,0,0,0,40,126,lt.po,,lt,,lithuanian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,40,126,126,0,0,0,0,40,126,en_gb.po,,en,gb,english,,united kingdom

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/et.po,40,126,103,0,0,0,0,40,126,et.po,,et,,estonian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/da.po,40,126,113,0,0,0,0,40,126,da.po,,da,,danish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,40,126,58,0,0,0,0,40,126,zh_cn.po,,zh,cn,chinese,,china

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pl.po,40,126,140,0,0,0,0,40,126,pl.po,,pl,,polish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/oc.po,40,126,149,0,0,0,0,40,126,oc.po,,oc,,occitan,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/el.po,40,126,144,0,0,0,0,40,126,el.po,,el,,greek,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/uk.po,40,126,138,0,0,0,0,40,126,uk.po,,uk,,ukrainian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mr.po,40,126,127,0,0,0,0,40,126,mr.po,,mr,,marathi,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ml.po,40,126,121,0,0,0,0,40,126,ml.po,,ml,,malayalam,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/cy.po,44,134,146,0,0,0,0,44,134,cy.po,,cy,,welsh,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/es.po,40,126,158,0,0,0,0,40,126,es.po,,es,,spanish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ky.po,40,126,114,0,0,0,0,40,126,ky.po,,ky,,kyrgyz,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,44,134,134,0,0,0,0,44,134,en_ca.po,,en,ca,english,,canada

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/dz.po,39,113,73,1,13,0,0,40,126,dz.po,,dz,,dzongkha,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ast.po,40,126,155,0,0,0,0,40,126,ast.po,,ast,,asturian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,40,126,62,0,0,0,0,40,126,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/be.po,40,126,156,0,0,0,0,40,126,be.po,,be,,belarusian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sq.po,40,126,162,0,0,0,0,40,126,sq.po,,sq,,albanian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/tr.po,40,126,109,0,0,0,0,40,126,tr.po,,tr,,turkish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/or.po,40,126,133,0,0,0,0,40,126,or.po,,or,,odia,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bn.po,40,126,143,0,0,0,0,40,126,bn.po,,bn,,bangla,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sv.po,40,126,100,0,0,0,0,40,126,sv.po,,sv,,swedish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,40,126,152,0,0,0,0,40,126,bn_in.po,,bn,in,bangla,,india

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sk.po,40,126,138,0,0,0,0,40,126,sk.po,,sk,,slovak,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/az.po,42,118,118,2,16,0,0,44,134,az.po,,az,,azerbaijani,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fur.po,40,126,142,0,0,0,0,40,126,fur.po,,fur,,friulian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/de.po,40,126,109,0,0,0,0,40,126,de.po,,de,,german,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/gu.po,40,126,156,0,0,0,0,40,126,gu.po,,gu,,gujarati,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sl.po,40,126,145,0,0,0,0,40,126,sl.po,,sl,,slovenian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/as.po,40,126,146,0,0,0,0,40,126,as.po,,as,,assamese,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/eu.po,40,126,113,0,0,0,0,40,126,eu.po,,eu,,basque,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mn.po,42,118,109,2,16,0,0,44,134,mn.po,,mn,,mongolian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/eo.po,40,126,118,0,0,0,0,40,126,eo.po,,eo,,esperanto,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ne.po,40,126,132,0,0,0,0,40,126,ne.po,,ne,,nepali,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mai.po,40,126,134,0,0,0,0,40,126,mai.po,,mai,,maithili,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bg.po,40,126,148,0,0,0,0,40,126,bg.po,,bg,,bulgarian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ro.po,40,126,172,0,0,0,0,40,126,ro.po,,ro,,romanian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,40,126,126,0,0,0,0,40,126,en@shaw.po,shaw,en,,english,shavian,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ja.po,40,126,49,0,0,0,0,40,126,ja.po,,ja,,japanese,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/he.po,40,126,126,0,0,0,0,40,126,he.po,,he,,hebrew,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/lv.po,40,126,125,0,0,0,0,40,126,lv.po,,lv,,latvian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fa.po,40,126,141,0,0,0,0,40,126,fa.po,,fa,,persian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/kn.po,40,126,118,0,0,0,0,40,126,kn.po,,kn,,kannada,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/it.po,40,126,139,0,0,0,0,40,126,it.po,,it,,italian,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ms.po,40,110,110,3,22,1,2,44,134,ms.po,,ms,,malay,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mg.po,44,134,155,0,0,0,0,44,134,mg.po,,mg,,malagasy,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/am.po,9,12,12,0,0,35,122,44,134,am.po,,am,,amharic,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nb.po,40,126,117,0,0,0,0,40,126,nb.po,,nb,,norwegian bokmål,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ko.po,40,126,103,0,0,0,0,40,126,ko.po,,ko,,korean,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ar.po,40,126,171,0,0,0,0,40,126,ar.po,,ar,,arabic,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fi.po,39,122,89,1,4,0,0,40,126,fi.po,,fi,,finnish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ga.po,40,126,162,0,0,0,0,40,126,ga.po,,ga,,irish,,

- libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ug.po,40,126,121,0,0,0,0,40,126,ug.po,,ug,,uyghur,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_tw.po,4267,5481,4347,107,129,57,78,4431,5688,zh_tw.po,,zh,tw,chinese,,taiwan

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_hk.po,4267,5481,4342,107,129,57,78,4431,5688,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_cn.po,4412,5664,4448,7,11,21,28,4440,5703,zh_cn.po,,zh,cn,chinese,,china

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/vi.po,4374,5625,5762,0,0,0,0,4374,5625,vi.po,,vi,,vietnamese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/uk.po,4374,5625,5407,0,0,0,0,4374,5625,uk.po,,uk,,ukrainian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ug.po,4375,5624,5525,0,0,0,0,4375,5624,ug.po,,ug,,uyghur,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/tr.po,4439,5702,5676,0,0,0,0,4439,5702,tr.po,,tr,,turkish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/th.po,2603,3377,2822,18,53,1716,2156,4337,5586,th.po,,th,,thai,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/te.po,4430,5687,5764,0,0,0,0,4430,5687,te.po,,te,,telugu,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ta.po,4430,5687,5794,0,0,0,0,4430,5687,ta.po,,ta,,tamil,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sv.po,4439,5702,5630,0,0,0,0,4439,5702,sv.po,,sv,,swedish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sr@latin.po,4440,5703,5739,0,0,0,0,4440,5703,sr@latin.po,latin,sr,,serbian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sr.po,4439,5702,5738,0,0,0,0,4439,5702,sr.po,,sr,,serbian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sq.po,4566,6823,6871,0,0,0,0,4566,6823,sq.po,,sq,,albanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sl.po,4439,5702,5837,0,0,0,0,4439,5702,sl.po,,sl,,slovenian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sk.po,4442,5703,5671,0,0,0,0,4442,5703,sk.po,,sk,,slovak,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/si.po,4256,6087,5873,0,0,310,736,4566,6823,si.po,,si,,sinhala,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/rw.po,226,310,331,83,261,6192,9222,6501,9793,rw.po,,rw,,kinyarwanda,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ru.po,4439,5702,4918,0,0,0,0,4439,5702,ru.po,,ru,,russian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ro.po,4439,5702,5768,0,0,0,0,4439,5702,ro.po,,ro,,romanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pt_br.po,4439,5702,5804,0,0,0,0,4439,5702,pt_br.po,,pt,br,portuguese,,brazil

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pt.po,4431,5688,5875,0,0,0,0,4431,5688,pt.po,,pt,,portuguese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pl.po,4439,5702,5688,0,0,0,0,4439,5702,pl.po,,pl,,polish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pa.po,4442,5703,5704,0,0,0,0,4442,5703,pa.po,,pa,,punjabi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/or.po,4430,5687,5676,0,0,0,0,4430,5687,or.po,,or,,odia,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/oc.po,4431,5688,5806,0,0,0,0,4431,5688,oc.po,,oc,,occitan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nn.po,4374,5625,5480,0,0,0,0,4374,5625,nn.po,,nn,,norwegian nynorsk,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nl.po,4439,5702,5620,0,0,0,0,4439,5702,nl.po,,nl,,dutch,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ne.po,2897,3779,3775,0,0,1541,1919,4438,5698,ne.po,,ne,,nepali,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nds.po,4337,5586,5471,0,0,0,0,4337,5586,nds.po,,nds,,low german,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nb.po,4442,5703,5630,0,0,0,0,4442,5703,nb.po,,nb,,norwegian bokmål,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ms.po,4374,5625,5650,0,0,0,0,4374,5625,ms.po,,ms,,malay,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mr.po,4375,5624,5635,0,0,0,0,4375,5624,mr.po,,mr,,marathi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mn.po,2678,3642,3641,0,0,0,0,2678,3642,mn.po,,mn,,mongolian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ml.po,4442,5703,5809,0,0,0,0,4442,5703,ml.po,,ml,,malayalam,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mk.po,4374,5625,5606,0,0,0,0,4374,5625,mk.po,,mk,,macedonian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mg.po,4325,6196,6185,30,61,0,0,4355,6257,mg.po,,mg,,malagasy,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mai.po,4337,5586,5656,0,0,0,0,4337,5586,mai.po,,mai,,maithili,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/lv.po,2900,3781,3699,0,0,1539,1921,4439,5702,lv.po,,lv,,latvian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/lt.po,4439,5702,5699,0,0,0,0,4439,5702,lt.po,,lt,,lithuanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ky.po,6597,9910,9670,0,0,0,0,6597,9910,ky.po,,ky,,kyrgyz,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ku.po,4369,5620,5616,0,0,0,0,4369,5620,ku.po,,ku,,kurdish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ko.po,1045,1337,1148,0,0,3386,4351,4431,5688,ko.po,,ko,,korean,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/kn.po,4374,5623,5626,0,0,0,0,4374,5623,kn.po,,kn,,kannada,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/kk.po,2034,2489,2193,0,0,2405,3213,4439,5702,kk.po,,kk,,kazakh,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ka.po,6588,9901,9865,0,0,0,0,6588,9901,ka.po,,ka,,georgian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ja.po,4374,5623,4849,0,0,0,0,4374,5623,ja.po,,ja,,japanese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/it.po,4439,5702,5764,0,0,0,0,4439,5702,it.po,,it,,italian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/is.po,4440,5703,5542,0,0,0,0,4440,5703,is.po,,is,,icelandic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/id.po,4439,5702,5701,0,0,0,0,4439,5702,id.po,,id,,indonesian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hu.po,4439,5702,5589,0,0,0,0,4439,5702,hu.po,,hu,,hungarian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hr.po,4440,5703,5726,0,0,0,0,4440,5703,hr.po,,hr,,croatian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hi.po,4374,5623,5692,0,0,0,0,4374,5623,hi.po,,hi,,hindi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/he.po,4449,5709,5690,0,0,0,0,4449,5709,he.po,,he,,hebrew,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gu.po,4414,5666,5686,0,0,0,0,4414,5666,gu.po,,gu,,gujarati,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gl.po,4439,5702,5802,0,0,0,0,4439,5702,gl.po,,gl,,galician,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gd.po,4441,5702,5959,0,0,0,0,4441,5702,gd.po,,gd,,scottish gaelic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ga.po,1888,2462,2589,910,1322,1651,1925,4449,5709,ga.po,,ga,,irish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fur.po,4439,5702,5768,0,0,0,0,4439,5702,fur.po,,fur,,friulian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fr.po,4439,5702,5719,0,0,0,0,4439,5702,fr.po,,fr,,french,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fi.po,4414,5668,5540,17,20,9,15,4440,5703,fi.po,,fi,,finnish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fa.po,4442,5703,5640,0,0,0,0,4442,5703,fa.po,,fa,,persian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/eu.po,4439,5702,5688,0,0,0,0,4439,5702,eu.po,,eu,,basque,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/et.po,4374,5625,5525,0,0,0,0,4374,5625,et.po,,et,,estonian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/es.po,4439,5702,5783,0,0,0,0,4439,5702,es.po,,es,,spanish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/eo.po,4439,5702,5525,0,0,0,0,4439,5702,eo.po,,eo,,esperanto,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en_gb.po,4431,5688,5689,0,0,0,0,4431,5688,en_gb.po,,en,gb,english,,united kingdom

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en_ca.po,4390,6303,6303,0,0,0,0,4390,6303,en_ca.po,,en,ca,english,,canada

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en@shaw.po,2667,3595,3595,0,0,0,0,2667,3595,en@shaw.po,shaw,en,,english,shavian,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/el.po,4442,5703,5713,0,0,0,0,4442,5703,el.po,,el,,greek,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/dz.po,6589,9906,9437,0,0,0,0,6589,9906,dz.po,,dz,,dzongkha,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/de.po,4439,5702,5577,0,0,0,0,4439,5702,de.po,,de,,german,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/da.po,4439,5702,5619,0,0,0,0,4439,5702,da.po,,da,,danish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/cy.po,6603,9919,10438,0,0,0,0,6603,9919,cy.po,,cy,,welsh,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/cs.po,4439,5702,5685,0,0,0,0,4439,5702,cs.po,,cs,,czech,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/crh.po,4393,5645,5634,0,0,0,0,4393,5645,crh.po,,crh,,crimean turkish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ca@valencia.po,4442,5703,5770,0,0,0,0,4442,5703,ca@valencia.po,valencia,ca,,catalan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ca.po,4424,5684,5757,0,0,0,0,4424,5684,ca.po,,ca,,catalan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bs.po,4374,5623,5842,0,0,0,0,4374,5623,bs.po,,bs,,bosnian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/br.po,4298,5403,5403,0,0,76,222,4374,5625,br.po,,br,,breton,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bn_in.po,4374,5623,5604,0,0,0,0,4374,5623,bn_in.po,,bn,in,bangla,,india

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bn.po,4374,5625,5631,0,0,0,0,4374,5625,bn.po,,bn,,bangla,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bg.po,4460,5724,5722,0,0,0,0,4460,5724,bg.po,,bg,,bulgarian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/be@latin.po,4381,5642,5624,0,0,0,0,4381,5642,be@latin.po,latin,be,,belarusian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/be.po,4337,5586,5564,0,0,0,0,4337,5586,be.po,,be,,belarusian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/az.po,2693,3655,3651,0,0,0,0,2693,3655,az.po,,az,,azerbaijani,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ast.po,4369,5620,5694,0,0,0,0,4369,5620,ast.po,,ast,,asturian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/as.po,4430,5687,5675,0,0,0,0,4430,5687,as.po,,as,,assamese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ar.po,3386,4260,4189,702,920,343,508,4431,5688,ar.po,,ar,,arabic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ang.po,46,51,57,0,0,2655,3612,2701,3663,ang.po,,ang,,old english,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,235,664,282,0,0,0,0,235,664,zh_tw.po,,zh,tw,chinese,,taiwan

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,144,479,188,1,4,0,0,145,483,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,147,485,199,0,0,0,0,147,485,zh_cn.po,,zh,cn,chinese,,china

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,153,355,339,12,35,14,70,179,460,xh.po,,xh,,xhosa,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,35,57,71,24,58,120,345,179,460,wa.po,,wa,,walloon,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,148,483,629,0,0,0,0,148,483,vi.po,,vi,,vietnamese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,146,484,484,0,0,0,0,146,484,uk.po,,uk,,ukrainian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,148,483,445,0,0,0,0,148,483,ug.po,,ug,,uyghur,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,235,664,661,0,0,0,0,235,664,tr.po,,tr,,turkish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,147,485,254,0,0,0,0,147,485,th.po,,th,,thai,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,146,484,441,0,0,0,0,146,484,te.po,,te,,telugu,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,146,484,396,0,0,0,0,146,484,ta.po,,ta,,tamil,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,235,664,606,0,0,0,0,235,664,sv.po,,sv,,swedish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,234,662,645,0,0,0,0,234,662,sr@latin.po,latin,sr,,serbian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,235,664,647,0,0,0,0,235,664,sr.po,,sr,,serbian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,179,461,534,0,0,0,0,179,461,sq.po,,sq,,albanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,235,664,674,0,0,0,0,235,664,sl.po,,sl,,slovenian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,234,662,645,0,0,0,0,234,662,sk.po,,sk,,slovak,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,119,222,233,0,0,60,238,179,460,si.po,,si,,sinhala,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,9,9,8,59,215,111,236,179,460,rw.po,,rw,,kinyarwanda,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,235,664,660,0,0,0,0,235,664,ru.po,,ru,,russian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,235,664,747,0,0,0,0,235,664,ro.po,,ro,,romanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,235,664,725,0,0,0,0,235,664,pt_br.po,,pt,br,portuguese,,brazil

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,147,485,544,0,0,0,0,147,485,pt.po,,pt,,portuguese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,235,664,672,0,0,0,0,235,664,pl.po,,pl,,polish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,237,667,705,0,0,0,0,237,667,pa.po,,pa,,punjabi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,148,483,487,0,0,0,0,148,483,or.po,,or,,odia,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,234,662,744,0,0,0,0,234,662,oc.po,,oc,,occitan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,181,465,416,0,0,0,0,181,465,nn.po,,nn,,norwegian nynorsk,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,235,664,583,0,0,0,0,235,664,nl.po,,nl,,dutch,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,136,253,285,4,30,7,210,147,493,ne.po,,ne,,nepali,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,237,667,605,0,0,0,0,237,667,nb.po,,nb,,norwegian bokmål,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,127,285,306,24,54,28,121,179,460,ms.po,,ms,,malay,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,146,484,436,0,0,0,0,146,484,mr.po,,mr,,marathi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,98,192,199,25,63,56,205,179,460,mn.po,,mn,,mongolian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,235,664,613,0,0,0,0,235,664,ml.po,,ml,,malayalam,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,179,461,487,0,0,0,0,179,461,mk.po,,mk,,macedonian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,166,437,429,9,19,4,4,179,460,mg.po,,mg,,malagasy,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,175,408,442,0,0,6,57,181,465,mai.po,,mai,,maithili,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,235,664,632,0,0,0,0,235,664,lv.po,,lv,,latvian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,235,664,610,0,0,0,0,235,664,lt.po,,lt,,lithuanian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,132,426,421,3,39,3,5,138,470,ky.po,,ky,,kyrgyz,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,174,396,463,1,10,4,54,179,460,ku.po,,ku,,kurdish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,235,664,566,0,0,0,0,235,664,ko.po,,ko,,korean,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,146,484,446,0,0,0,0,146,484,kn.po,,kn,,kannada,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,235,664,701,0,0,0,0,235,664,kk.po,,kk,,kazakh,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,170,447,408,5,9,4,4,179,460,ka.po,,ka,,georgian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,225,646,326,0,0,10,18,235,664,ja.po,,ja,,japanese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,235,664,752,0,0,0,0,235,664,it.po,,it,,italian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,234,662,559,0,0,0,0,234,662,is.po,,is,,icelandic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,235,664,698,0,0,0,0,235,664,id.po,,id,,indonesian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hy.po,155,360,362,14,39,10,61,179,460,hy.po,,hy,,armenian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,235,664,593,0,0,0,0,235,664,hu.po,,hu,,hungarian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,235,664,654,0,0,0,0,235,664,hr.po,,hr,,croatian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,146,484,548,0,0,0,0,146,484,hi.po,,hi,,hindi,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,147,485,519,0,0,0,0,147,485,he.po,,he,,hebrew,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,147,485,491,0,0,0,0,147,485,gu.po,,gu,,gujarati,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,235,664,775,0,0,0,0,235,664,gl.po,,gl,,galician,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,237,667,780,0,0,0,0,237,667,gd.po,,gd,,scottish gaelic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,90,133,133,0,0,90,329,180,462,ga.po,,ga,,irish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,235,664,762,0,0,0,0,235,664,fur.po,,fur,,friulian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,235,664,774,0,0,0,0,235,664,fr.po,,fr,,french,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,193,367,309,32,97,9,198,234,662,fi.po,,fi,,finnish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,237,667,777,0,0,0,0,237,667,fa.po,,fa,,persian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,235,664,552,0,0,0,0,235,664,eu.po,,eu,,basque,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,148,483,382,0,0,0,0,148,483,et.po,,et,,estonian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ve.po,235,664,735,0,0,0,0,235,664,es_ve.po,,es,ve,spanish,,venezuela

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_uy.po,235,664,735,0,0,0,0,235,664,es_uy.po,,es,uy,spanish,,uruguay

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_sv.po,235,664,735,0,0,0,0,235,664,es_sv.po,,es,sv,spanish,,el salvador

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pr.po,235,664,735,0,0,0,0,235,664,es_pr.po,,es,pr,spanish,,puerto rico

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pe.po,235,664,735,0,0,0,0,235,664,es_pe.po,,es,pe,spanish,,peru

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pa.po,235,664,735,0,0,0,0,235,664,es_pa.po,,es,pa,spanish,,panama

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ni.po,235,664,735,0,0,0,0,235,664,es_ni.po,,es,ni,spanish,,nicaragua

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_mx.po,235,664,735,0,0,0,0,235,664,es_mx.po,,es,mx,spanish,,mexico

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_hn.po,235,664,735,0,0,0,0,235,664,es_hn.po,,es,hn,spanish,,honduras

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_gt.po,235,664,735,0,0,0,0,235,664,es_gt.po,,es,gt,spanish,,guatemala

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_es.po,235,664,735,0,0,0,0,235,664,es_es.po,,es,es,spanish,,spain

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ec.po,235,664,735,0,0,0,0,235,664,es_ec.po,,es,ec,spanish,,ecuador

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_do.po,235,664,735,0,0,0,0,235,664,es_do.po,,es,do,spanish,,dominican republic

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_cr.po,235,664,735,0,0,0,0,235,664,es_cr.po,,es,cr,spanish,,costa rica

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_co.po,235,664,735,0,0,0,0,235,664,es_co.po,,es,co,spanish,,colombia

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_cl.po,235,664,735,0,0,0,0,235,664,es_cl.po,,es,cl,spanish,,chile

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ar.po,235,664,735,0,0,0,0,235,664,es_ar.po,,es,ar,spanish,,argentina

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,235,664,735,0,0,0,0,235,664,es.po,,es,,spanish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,230,483,469,0,0,5,181,235,664,eo.po,,eo,,esperanto,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,234,662,662,0,0,0,0,234,662,en_gb.po,,en,gb,english,,united kingdom

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,179,460,460,0,0,0,0,179,460,en_ca.po,,en,ca,english,,canada

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,181,465,465,0,0,0,0,181,465,en@shaw.po,shaw,en,,english,shavian,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,235,664,703,0,0,0,0,235,664,el.po,,el,,greek,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,170,447,271,5,9,4,4,179,460,dz.po,,dz,,dzongkha,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,235,664,576,0,0,0,0,235,664,de.po,,de,,german,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,235,664,549,0,0,0,0,235,664,da.po,,da,,danish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,181,465,503,0,0,0,0,181,465,cy.po,,cy,,welsh,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,235,664,623,0,0,0,0,235,664,cs.po,,cs,,czech,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/crh.po,148,483,449,0,0,0,0,148,483,crh.po,,crh,,crimean turkish,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,237,667,782,0,0,0,0,237,667,ca@valencia.po,valencia,ca,,catalan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,234,662,771,0,0,0,0,234,662,ca.po,,ca,,catalan,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,146,484,492,0,0,0,0,146,484,bs.po,,bs,,bosnian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/br.po,51,75,80,1,2,129,388,181,465,br.po,,br,,breton,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,146,484,459,0,0,0,0,146,484,bn_in.po,,bn,in,bangla,,india

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,181,465,448,0,0,0,0,181,465,bn.po,,bn,,bangla,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,146,484,538,0,0,0,0,146,484,bg.po,,bg,,bulgarian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,179,461,455,0,0,0,0,179,461,be@latin.po,latin,be,,belarusian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,147,493,513,0,0,0,0,147,493,be.po,,be,,belarusian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,145,324,324,19,56,15,80,179,460,az.po,,az,,azerbaijani,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,181,465,524,0,0,0,0,181,465,ast.po,,ast,,asturian,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,146,484,456,0,0,0,0,146,484,as.po,,as,,assamese,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,228,466,529,0,0,6,196,234,662,ar.po,,ar,,arabic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,11,14,14,11,17,157,429,179,460,am.po,,am,,amharic,,

- libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,133,274,233,5,11,7,198,145,483,af.po,,af,,afrikaans,,

- libhangul-0.1.0-19.fc30.src.rpm.stats.csv,po/ko.po,9,16,15,0,0,0,0,9,16,ko.po,,ko,,korean,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/ja.po,39,160,47,9,59,12,209,60,428,ja.po,,ja,,japanese,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/hr.po,58,414,402,0,0,2,14,60,428,hr.po,,hr,,croatian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/sr.po,58,414,424,0,0,2,14,60,428,sr.po,,sr,,serbian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/nl.po,58,414,417,0,0,2,14,60,428,nl.po,,nl,,dutch,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/sv.po,60,428,400,0,0,0,0,60,428,sv.po,,sv,,swedish,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/fr.po,58,414,485,0,0,2,14,60,428,fr.po,,fr,,french,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/de.po,58,414,391,0,0,2,14,60,428,de.po,,de,,german,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/en@quot.po,60,428,428,0,0,0,0,60,428,en@quot.po,quot,en,,english,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/vi.po,58,414,615,0,0,2,14,60,428,vi.po,,vi,,vietnamese,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/ro.po,2,16,16,7,46,51,366,60,428,ro.po,,ro,,romanian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/pt_br.po,58,414,461,0,0,2,14,60,428,pt_br.po,,pt,br,portuguese,,brazil

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/uk.po,58,414,462,0,0,2,14,60,428,uk.po,,uk,,ukrainian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/cs.po,58,414,416,0,0,2,14,60,428,cs.po,,cs,,czech,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/hu.po,58,414,396,0,0,2,14,60,428,hu.po,,hu,,hungarian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/id.po,58,414,415,0,0,2,14,60,428,id.po,,id,,indonesian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/it.po,58,414,440,0,0,2,14,60,428,it.po,,it,,italian,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/eo.po,58,414,397,0,0,2,14,60,428,eo.po,,eo,,esperanto,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/pl.po,58,414,424,0,0,2,14,60,428,pl.po,,pl,,polish,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/es.po,4,21,21,28,100,28,307,60,428,es.po,,es,,spanish,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/da.po,58,414,414,0,0,2,14,60,428,da.po,,da,,danish,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/fi.po,58,414,352,0,0,2,14,60,428,fi.po,,fi,,finnish,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/en@boldquot.po,60,428,431,0,0,0,0,60,428,en@boldquot.po,boldquot,en,,english,,

- libidn-1.35-5.fc30.src.rpm.stats.csv,po/zh_cn.po,58,414,184,0,0,2,14,60,428,zh_cn.po,,zh,cn,chinese,,china

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fur.po,35,270,331,1,12,3,24,39,306,fur.po,,fur,,friulian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/it.po,6,40,45,11,109,22,157,39,306,it.po,,it,,italian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/vi.po,6,40,54,11,109,22,157,39,306,vi.po,,vi,,vietnamese,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/hu.po,35,270,269,1,12,3,24,39,306,hu.po,,hu,,hungarian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/es.po,12,53,58,3,18,24,235,39,306,es.po,,es,,spanish,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/ro.po,1,14,14,2,8,36,284,39,306,ro.po,,ro,,romanian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/uk.po,35,270,277,1,12,3,24,39,306,uk.po,,uk,,ukrainian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/cs.po,35,270,272,1,12,3,24,39,306,cs.po,,cs,,czech,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/hr.po,6,40,37,11,109,22,157,39,306,hr.po,,hr,,croatian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/sv.po,35,270,237,1,12,3,24,39,306,sv.po,,sv,,swedish,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/pt_br.po,35,270,319,1,12,3,24,39,306,pt_br.po,,pt,br,portuguese,,brazil

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/sr.po,6,40,37,11,109,22,157,39,306,sr.po,,sr,,serbian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/nl.po,6,40,36,11,109,22,157,39,306,nl.po,,nl,,dutch,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/pl.po,35,270,274,1,12,3,24,39,306,pl.po,,pl,,polish,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fr.po,35,270,327,1,12,3,24,39,306,fr.po,,fr,,french,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/zh_cn.po,6,40,15,11,109,22,157,39,306,zh_cn.po,,zh,cn,chinese,,china

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/ja.po,2,16,2,8,31,29,259,39,306,ja.po,,ja,,japanese,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fi.po,6,40,32,11,109,22,157,39,306,fi.po,,fi,,finnish,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/da.po,35,270,248,1,12,3,24,39,306,da.po,,da,,danish,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/id.po,6,40,40,11,109,22,157,39,306,id.po,,id,,indonesian,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/de.po,35,270,257,1,12,3,24,39,306,de.po,,de,,german,,

- libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/eo.po,6,40,41,11,109,22,157,39,306,eo.po,,eo,,esperanto,,

- libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,iptc/po/de.po,34,349,354,0,0,0,0,34,349,de.po,,de,,german,,

- libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,iptc/po/it.po,34,349,386,0,0,0,0,34,349,it.po,,it,,italian,,

- libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,po/de.po,169,1089,980,0,0,0,0,169,1089,de.po,,de,,german,,

- libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,po/it.po,169,1089,1104,0,0,0,0,169,1089,it.po,,it,,italian,,

- libkkc-0.3.5-14.fc30.src.rpm.stats.csv,po/ja.po,59,272,82,0,0,0,0,59,272,ja.po,,ja,,japanese,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pl.po,155,723,715,0,0,1,5,156,728,pl.po,,pl,,polish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,156,728,156,728,bal.po,,bal,,baluchi,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/de.po,114,468,436,0,0,42,260,156,728,de.po,,de,,german,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,156,728,156,728,ky.po,,ky,,kyrgyz,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,156,728,156,728,ro.po,,ro,,romanian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,156,728,156,728,kn.po,,kn,,kannada,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fr.po,153,711,854,0,0,3,17,156,728,fr.po,,fr,,french,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,156,728,156,728,nso.po,,nso,,northern sotho,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,156,728,156,728,kk.po,,kk,,kazakh,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,156,728,156,728,gu.po,,gu,,gujarati,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,156,728,156,728,el.po,,el,,greek,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,156,728,156,728,br.po,,br,,breton,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,156,728,156,728,hu.po,,hu,,hungarian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,156,728,156,728,gl.po,,gl,,galician,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,156,728,156,728,is.po,,is,,icelandic,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,156,728,156,728,yo.po,,yo,,yoruba,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,156,728,156,728,nn.po,,nn,,norwegian nynorsk,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,156,728,156,728,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,156,728,156,728,pa.po,,pa,,punjabi,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,156,728,156,728,et.po,,et,,estonian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,156,728,156,728,hi.po,,hi,,hindi,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,156,728,156,728,zh_tw.po,,zh,tw,chinese,,taiwan

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,156,728,156,728,kw@kkcor.po,kkcor,kw,,cornish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,156,728,156,728,ar.po,,ar,,arabic,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,156,728,156,728,ne.po,,ne,,nepali,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,156,728,156,728,sv.po,,sv,,swedish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/it.po,155,723,807,0,0,1,5,156,728,it.po,,it,,italian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,156,728,156,728,nb.po,,nb,,norwegian bokmål,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/uk.po,155,723,760,0,0,1,5,156,728,uk.po,,uk,,ukrainian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,156,728,156,728,ko.po,,ko,,korean,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,156,728,156,728,en_gb.po,,en,gb,english,,united kingdom

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,156,728,156,728,anp.po,,anp,,angika,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,156,728,156,728,km.po,,km,,khmer,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,156,728,156,728,bn_in.po,,bn,in,bangla,,india

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,156,728,156,728,or.po,,or,,odia,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,156,728,156,728,nl.po,,nl,,dutch,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,156,728,156,728,as.po,,as,,assamese,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,156,728,156,728,id.po,,id,,indonesian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,156,728,156,728,ru.po,,ru,,russian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ja.po,114,468,218,0,0,42,260,156,728,ja.po,,ja,,japanese,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,156,728,156,728,eo.po,,eo,,esperanto,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,156,728,156,728,te.po,,te,,telugu,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,156,728,156,728,mai.po,,mai,,maithili,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,156,728,156,728,zu.po,,zu,,zulu,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,156,728,156,728,ur.po,,ur,,urdu,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,156,728,156,728,bs.po,,bs,,bosnian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,156,728,156,728,ast.po,,ast,,asturian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,156,728,156,728,de_ch.po,,de,ch,german,,switzerland

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,156,728,156,728,cy.po,,cy,,welsh,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,156,728,156,728,am.po,,am,,amharic,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,156,728,156,728,bg.po,,bg,,bulgarian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,156,728,156,728,tr.po,,tr,,turkish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,156,728,156,728,he.po,,he,,hebrew,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,156,728,156,728,be.po,,be,,belarusian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,156,728,156,728,kw.po,,kw,,cornish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,156,728,156,728,mn.po,,mn,,mongolian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/es.po,22,60,66,0,0,134,668,156,728,es.po,,es,,spanish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,156,728,156,728,kw@uccor.po,uccor,kw,,cornish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,156,728,156,728,bn.po,,bn,,bangla,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,156,728,156,728,mk.po,,mk,,macedonian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,156,728,156,728,hr.po,,hr,,croatian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,156,728,156,728,ka.po,,ka,,georgian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,16,23,25,0,0,140,705,156,728,pt_br.po,,pt,br,portuguese,,brazil

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,156,728,156,728,sq.po,,sq,,albanian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fi.po,28,70,51,0,0,128,658,156,728,fi.po,,fi,,finnish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,156,728,156,728,tg.po,,tg,,tajik,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,156,728,156,728,kw_gb.po,,kw,gb,cornish,,united kingdom

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,156,728,156,728,af.po,,af,,afrikaans,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,156,728,156,728,eu.po,,eu,,basque,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,156,728,156,728,ilo.po,,ilo,,iloko,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,156,728,156,728,nds.po,,nds,,low german,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ca.po,141,640,837,0,0,15,88,156,728,ca.po,,ca,,catalan,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,156,728,156,728,bo.po,,bo,,tibetan,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,156,728,156,728,pt.po,,pt,,portuguese,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,156,728,156,728,ta.po,,ta,,tamil,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,156,728,156,728,fa.po,,fa,,persian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,156,728,156,728,zh_cn.po,,zh,cn,chinese,,china

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,156,728,156,728,sr.po,,sr,,serbian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,156,728,156,728,ia.po,,ia,,interlingua,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,156,728,156,728,lv.po,,lv,,latvian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,156,728,156,728,sk.po,,sk,,slovak,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,156,728,156,728,si.po,,si,,sinhala,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,156,728,156,728,mr.po,,mr,,marathi,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,156,728,156,728,da.po,,da,,danish,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,156,728,156,728,vi.po,,vi,,vietnamese,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,156,728,156,728,sl.po,,sl,,slovenian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,156,728,156,728,ml.po,,ml,,malayalam,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,156,728,156,728,lt.po,,lt,,lithuanian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,156,728,156,728,ms.po,,ms,,malay,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,156,728,156,728,sr@latin.po,latin,sr,,serbian,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,156,728,156,728,tw.po,,tw,,twi,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,156,728,156,728,brx.po,,brx,,bodo,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,156,728,156,728,th.po,,th,,thai,,

- libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/cs.po,141,640,608,0,0,15,88,156,728,cs.po,,cs,,czech,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/nl.po,46,73,147,0,0,0,0,46,73,nl.po,,nl,,dutch,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ru.po,46,73,68,0,0,0,0,46,73,ru.po,,ru,,russian,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/sv.po,46,73,76,0,0,0,0,46,73,sv.po,,sv,,swedish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/uk.po,0,0,0,1,25,45,48,46,73,uk.po,,uk,,ukrainian,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/tr.po,46,73,66,0,0,0,0,46,73,tr.po,,tr,,turkish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/da.po,46,73,73,0,0,0,0,46,73,da.po,,da,,danish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pt_br.po,46,73,81,0,0,0,0,46,73,pt_br.po,,pt,br,portuguese,,brazil

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/es.po,46,73,80,0,0,0,0,46,73,es.po,,es,,spanish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/cs.po,46,73,67,0,0,0,0,46,73,cs.po,,cs,,czech,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/gl.po,46,73,77,0,0,0,0,46,73,gl.po,,gl,,galician,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/fr.po,46,73,73,0,0,0,0,46,73,fr.po,,fr,,french,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/it.po,46,73,69,0,0,0,0,46,73,it.po,,it,,italian,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pl.po,46,73,78,0,0,0,0,46,73,pl.po,,pl,,polish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ja.po,46,73,48,0,0,0,0,46,73,ja.po,,ja,,japanese,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/sk.po,46,73,70,0,0,0,0,46,73,sk.po,,sk,,slovak,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ca.po,46,73,82,0,0,0,0,46,73,ca.po,,ca,,catalan,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/vi.po,46,73,97,0,0,0,0,46,73,vi.po,,vi,,vietnamese,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/de.po,46,73,78,0,0,0,0,46,73,de.po,,de,,german,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/hu.po,2,29,22,0,0,44,44,46,73,hu.po,,hu,,hungarian,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/eu.po,46,73,72,0,0,0,0,46,73,eu.po,,eu,,basque,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/fi.po,46,73,60,0,0,0,0,46,73,fi.po,,fi,,finnish,,

- libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pt.po,46,73,88,0,0,0,0,46,73,pt.po,,pt,,portuguese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/th.po,34,112,54,0,0,0,0,34,112,th.po,,th,,thai,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_tw.po,34,112,37,0,0,0,0,34,112,zh_tw.po,,zh,tw,chinese,,taiwan

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/uk.po,26,105,83,0,0,0,0,26,105,uk.po,,uk,,ukrainian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/el.po,34,112,112,0,0,0,0,34,112,el.po,,el,,greek,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nds.po,11,24,21,0,0,0,0,11,24,nds.po,,nds,,low german,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/lt.po,34,112,94,0,0,0,0,34,112,lt.po,,lt,,lithuanian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fr.po,34,112,127,0,0,0,0,34,112,fr.po,,fr,,french,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ast.po,24,103,103,0,0,0,0,24,103,ast.po,,ast,,asturian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/id.po,34,112,98,0,0,0,0,34,112,id.po,,id,,indonesian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/an.po,34,111,118,0,0,0,0,34,111,an.po,,an,,aragonese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/tg.po,26,105,107,0,0,0,0,26,105,tg.po,,tg,,tajik,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/be.po,34,112,99,0,0,0,0,34,112,be.po,,be,,belarusian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/de.po,34,112,110,0,0,0,0,34,112,de.po,,de,,german,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ar.po,26,105,85,0,0,0,0,26,105,ar.po,,ar,,arabic,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/he.po,34,112,100,0,0,0,0,34,112,he.po,,he,,hebrew,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sr.po,34,112,110,0,0,0,0,34,112,sr.po,,sr,,serbian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/te.po,31,110,101,0,0,0,0,31,110,te.po,,te,,telugu,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ml.po,26,105,88,0,0,0,0,26,105,ml.po,,ml,,malayalam,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pl.po,34,112,107,0,0,0,0,34,112,pl.po,,pl,,polish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/it.po,34,112,117,0,0,0,0,34,112,it.po,,it,,italian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/as.po,31,110,125,0,0,0,0,31,110,as.po,,as,,assamese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_hk.po,31,110,35,0,0,0,0,31,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/eu.po,34,112,111,0,0,0,0,34,112,eu.po,,eu,,basque,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/gu.po,31,110,126,0,0,0,0,31,110,gu.po,,gu,,gujarati,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bg.po,26,105,114,0,0,0,0,26,105,bg.po,,bg,,bulgarian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/gl.po,34,112,122,0,0,0,0,34,112,gl.po,,gl,,galician,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ta.po,31,110,102,0,0,0,0,31,110,ta.po,,ta,,tamil,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hi.po,31,110,135,0,0,0,0,31,110,hi.po,,hi,,hindi,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sv.po,34,112,107,0,0,0,0,34,112,sv.po,,sv,,swedish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ne.po,19,33,38,6,22,6,55,31,110,ne.po,,ne,,nepali,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ru.po,34,112,104,0,0,0,0,34,112,ru.po,,ru,,russian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nl.po,27,106,99,0,0,0,0,27,106,nl.po,,nl,,dutch,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hu.po,34,112,103,0,0,0,0,34,112,hu.po,,hu,,hungarian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fi.po,34,112,100,0,0,0,0,34,112,fi.po,,fi,,finnish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bs.po,34,111,105,0,0,0,0,34,111,bs.po,,bs,,bosnian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fur.po,34,112,133,0,0,0,0,34,112,fur.po,,fur,,friulian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/oc.po,34,112,121,0,0,0,0,34,112,oc.po,,oc,,occitan,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hr.po,34,112,105,0,0,0,0,34,112,hr.po,,hr,,croatian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ro.po,34,112,131,0,0,0,0,34,112,ro.po,,ro,,romanian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ca@valencia.po,31,110,121,0,0,0,0,31,110,ca@valencia.po,valencia,ca,,catalan,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/or.po,31,110,127,0,0,0,0,31,110,or.po,,or,,odia,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fa.po,34,112,109,0,0,0,0,34,112,fa.po,,fa,,persian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/da.po,34,112,107,0,0,0,0,34,112,da.po,,da,,danish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/en_gb.po,34,112,112,0,0,0,0,34,112,en_gb.po,,en,gb,english,,united kingdom

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pa.po,31,110,119,0,0,0,0,31,110,pa.po,,pa,,punjabi,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/mr.po,31,110,115,0,0,0,0,31,110,mr.po,,mr,,marathi,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/vi.po,26,105,135,0,0,0,0,26,105,vi.po,,vi,,vietnamese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/is.po,27,56,62,0,0,7,55,34,111,is.po,,is,,icelandic,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sk.po,34,112,117,0,0,0,0,34,112,sk.po,,sk,,slovak,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/et.po,26,105,80,0,0,0,0,26,105,et.po,,et,,estonian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ko.po,34,112,92,0,0,0,0,34,112,ko.po,,ko,,korean,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_cn.po,34,112,37,0,0,0,0,34,112,zh_cn.po,,zh,cn,chinese,,china

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/lv.po,34,112,95,0,0,0,0,34,112,lv.po,,lv,,latvian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bn_in.po,31,110,124,0,0,0,0,31,110,bn_in.po,,bn,in,bangla,,india

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/cs.po,34,112,118,0,0,0,0,34,112,cs.po,,cs,,czech,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sr@latin.po,34,112,110,0,0,0,0,34,112,sr@latin.po,latin,sr,,serbian,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pt_br.po,34,112,116,0,0,0,0,34,112,pt_br.po,,pt,br,portuguese,,brazil

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/kn.po,34,111,107,0,0,0,0,34,111,kn.po,,kn,,kannada,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/kk.po,34,112,96,0,0,0,0,34,112,kk.po,,kk,,kazakh,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nb.po,34,112,112,0,0,0,0,34,112,nb.po,,nb,,norwegian bokmål,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/es.po,34,112,119,0,0,0,0,34,112,es.po,,es,,spanish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/eo.po,24,103,91,0,0,0,0,24,103,eo.po,,eo,,esperanto,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ja.po,30,99,48,3,9,1,3,34,111,ja.po,,ja,,japanese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ug.po,26,105,89,0,0,0,0,26,105,ug.po,,ug,,uyghur,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pt.po,34,112,119,0,0,0,0,34,112,pt.po,,pt,,portuguese,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ca.po,34,112,124,0,0,0,0,34,112,ca.po,,ca,,catalan,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/tr.po,34,112,103,0,0,0,0,34,112,tr.po,,tr,,turkish,,

- libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sl.po,34,112,114,0,0,0,0,34,112,sl.po,,sl,,slovenian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/hu.po,53,343,311,0,0,0,0,53,343,hu.po,,hu,,hungarian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/bn_in.po,53,343,307,0,0,0,0,53,343,bn_in.po,,bn,in,bangla,,india

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/si.po,6,18,19,0,0,47,325,53,343,si.po,,si,,sinhala,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/de.po,53,343,308,0,0,0,0,53,343,de.po,,de,,german,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/kk.po,6,18,20,0,0,47,325,53,343,kk.po,,kk,,kazakh,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/tr.po,6,18,17,0,0,47,325,53,343,tr.po,,tr,,turkish,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/fi.po,53,343,255,0,0,0,0,53,343,fi.po,,fi,,finnish,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ru.po,53,343,275,0,0,0,0,53,343,ru.po,,ru,,russian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sr.po,53,343,290,0,0,0,0,53,343,sr.po,,sr,,serbian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sk.po,53,343,292,0,0,0,0,53,343,sk.po,,sk,,slovak,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/te.po,53,343,255,0,0,0,0,53,343,te.po,,te,,telugu,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/uk.po,53,343,311,0,0,0,0,53,343,uk.po,,uk,,ukrainian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/gu.po,53,343,309,0,0,0,0,53,343,gu.po,,gu,,gujarati,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/nb.po,6,18,18,0,0,47,325,53,343,nb.po,,nb,,norwegian bokmål,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/fr.po,53,343,462,0,0,0,0,53,343,fr.po,,fr,,french,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zu.po,6,18,17,0,0,47,325,53,343,zu.po,,zu,,zulu,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/he.po,53,343,286,0,0,0,0,53,343,he.po,,he,,hebrew,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/kn.po,53,343,259,0,0,0,0,53,343,kn.po,,kn,,kannada,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zh_tw.po,53,343,81,0,0,0,0,53,343,zh_tw.po,,zh,tw,chinese,,taiwan

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sq.po,9,59,53,0,0,44,284,53,343,sq.po,,sq,,albanian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ja.po,53,343,86,0,0,0,0,53,343,ja.po,,ja,,japanese,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ta.po,53,343,285,0,0,0,0,53,343,ta.po,,ta,,tamil,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/da.po,53,343,305,0,0,0,0,53,343,da.po,,da,,danish,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/nl.po,53,343,339,0,0,0,0,53,343,nl.po,,nl,,dutch,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/bg.po,51,324,304,0,0,2,19,53,343,bg.po,,bg,,bulgarian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/vi.po,6,18,32,0,0,47,325,53,343,vi.po,,vi,,vietnamese,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/or.po,53,343,344,0,0,0,0,53,343,or.po,,or,,odia,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sr@latin.po,6,18,19,0,0,47,325,53,343,sr@latin.po,latin,sr,,serbian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ko.po,53,343,274,0,0,0,0,53,343,ko.po,,ko,,korean,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/km.po,53,343,101,0,0,0,0,53,343,km.po,,km,,khmer,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/cs.po,53,343,291,0,0,0,0,53,343,cs.po,,cs,,czech,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zh_cn.po,53,343,86,0,0,0,0,53,343,zh_cn.po,,zh,cn,chinese,,china

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pt_br.po,53,343,372,0,0,0,0,53,343,pt_br.po,,pt,br,portuguese,,brazil

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pl.po,53,343,307,0,0,0,0,53,343,pl.po,,pl,,polish,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sv.po,53,343,290,0,0,0,0,53,343,sv.po,,sv,,swedish,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ca.po,53,343,389,0,0,0,0,53,343,ca.po,,ca,,catalan,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ur.po,6,23,33,0,0,47,320,53,343,ur.po,,ur,,urdu,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/hi.po,53,343,356,0,0,0,0,53,343,hi.po,,hi,,hindi,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pt.po,53,343,372,0,0,0,0,53,343,pt.po,,pt,,portuguese,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/as.po,53,343,289,0,0,0,0,53,343,as.po,,as,,assamese,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/mr.po,53,343,287,0,0,0,0,53,343,mr.po,,mr,,marathi,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/eu.po,23,108,85,0,0,30,235,53,343,eu.po,,eu,,basque,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/it.po,53,343,350,0,0,0,0,53,343,it.po,,it,,italian,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ar.po,6,18,29,0,0,47,325,53,343,ar.po,,ar,,arabic,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pa.po,53,343,381,0,0,0,0,53,343,pa.po,,pa,,punjabi,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ml.po,53,343,219,0,0,0,0,53,343,ml.po,,ml,,malayalam,,

- libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/es.po,53,343,398,0,0,0,0,53,343,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sr.po,1,9,13,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/an_es.po,1,3,6,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/be_by.po,1,3,6,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bg_bg.po,1,7,13,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bn_bd.po,1,3,6,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/br_fr.po,1,3,6,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bs_ba.po,1,3,6,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ca.po,1,7,13,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/da_dk.po,1,7,13,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/de.po,1,10,18,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/el_gr.po,1,6,11,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/es.po,1,12,18,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/fr_fr.po,1,7,13,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gu_in.po,1,3,6,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/he_il.po,1,3,6,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/is.po,1,7,13,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/it_it.po,1,7,13,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lo_la.po,1,3,6,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ne_np.po,1,5,10,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/no.po,1,10,16,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/oc_fr.po,1,3,6,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pl_pl.po,1,7,13,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_pt.po,1,8,14,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ro.po,1,7,13,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/si_lk.po,1,3,6,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sk_sk.po,1,7,13,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sl_si.po,1,7,13,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sr.po,1,9,13,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sw_tz.po,1,3,6,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/te_in.po,1,6,11,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/th_th.po,1,3,6,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/uk_ua.po,1,7,13,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/vi.po,1,3,6,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ca.po,1,7,14,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/de.po,1,10,17,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/en.po,1,9,16,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/et_ee.po,1,6,12,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hr_hr.po,1,6,12,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/it_it.po,1,7,14,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lt_lt.po,1,6,12,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lv_lv.po,1,6,12,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/nl_nl.po,1,6,12,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_br.po,1,9,15,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_pt.po,1,8,15,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ro.po,1,7,14,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ru_ru.po,1,9,16,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sk_sk.po,1,7,14,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sl_si.po,1,7,14,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sr.po,1,9,15,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/te_in.po,1,6,12,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/uk_ua.po,1,7,14,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/zu_za.po,1,3,9,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bg_bg.po,1,7,12,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bo.po,1,6,9,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/es.po,1,12,20,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hu_hu.po,1,9,14,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/no.po,1,10,15,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ru_ru.po,1,9,14,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bg_bg.po,1,7,12,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bo.po,1,6,9,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/cs_cz.po,1,8,12,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/es.po,1,12,20,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hu_hu.po,1,9,14,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/id.po,1,7,12,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/no.po,1,10,15,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ru_ru.po,1,9,14,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ar.po,1,5,8,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sr.po,1,9,6,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/cs_cz.po,1,8,6,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sv_se.po,1,2,4,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bo.po,1,6,4,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/kde.po,2,9,5,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hu_hu.po,1,9,15,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ru_ru.po,1,9,15,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/en.po,0,0,0,1,9,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bn_bd.po,1,3,7,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sq_al.po,1,3,6,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_br.po,1,9,13,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hu_hu.po,1,9,5,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_br.po,1,9,5,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ru_ru.po,1,9,5,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bo.po,1,6,1,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_br.po,1,9,2,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_pt.po,1,8,3,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/af_za.po,1,6,11,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/es.po,1,12,17,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/et_ee.po,1,6,11,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gd_gb.po,1,4,7,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hr_hr.po,1,6,11,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/id.po,1,7,12,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lt_lt.po,1,6,11,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lv_lv.po,1,6,11,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/nl_nl.po,1,6,11,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sr.po,1,9,14,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/te_in.po,1,6,11,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/zu_za.po,0,0,0,1,3,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/af_za.po,1,6,2,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ar.po,1,5,2,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bg_bg.po,1,7,3,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ca.po,1,7,3,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/da_dk.po,1,7,3,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/de.po,1,10,7,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/el_gr.po,1,6,2,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/et_ee.po,1,6,2,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/fr_fr.po,1,7,3,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gl.po,1,7,3,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hr_hr.po,1,6,2,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hu_hu.po,1,9,3,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/it_it.po,1,7,3,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lt_lt.po,1,6,2,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lv_lv.po,1,6,2,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ne_np.po,1,5,2,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/nl_nl.po,1,6,2,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/no.po,1,10,5,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pl_pl.po,1,7,3,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_br.po,1,9,4,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_pt.po,1,8,3,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ro.po,1,7,3,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ru_ru.po,1,9,4,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sk_sk.po,1,7,3,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sl_si.po,1,7,3,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sr.po,1,9,4,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/te_in.po,1,6,2,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/uk_ua.po,1,7,3,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ar.po,1,5,12,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/br_fr.po,1,3,10,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ca.po,1,7,15,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/da_dk.po,1,7,15,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/et_ee.po,1,6,13,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hr_hr.po,1,6,13,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/it_it.po,1,7,15,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lt_lt.po,1,6,13,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lv_lv.po,1,6,14,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ne_np.po,1,5,12,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/nl_nl.po,1,6,13,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pl_pl.po,1,7,15,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ro.po,1,7,15,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sk_sk.po,1,7,15,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sl_si.po,1,7,15,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sr.po,1,9,16,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/uk_ua.po,1,7,15,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/kde.po,2,9,16,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bg_bg.po,0,0,0,1,7,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/da_dk.po,0,0,0,1,7,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/no.po,1,10,7,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sr.po,1,9,6,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sv_se.po,1,2,5,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/no.po,1,10,6,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/be_by.po,1,3,7,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bn_bd.po,1,3,10,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/en.po,1,9,15,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gu_in.po,1,3,7,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/he_il.po,1,3,7,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hi_in.po,1,3,7,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hu_hu.po,1,9,15,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lo_la.po,1,3,7,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ru_ru.po,1,9,15,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sw_tz.po,1,3,7,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/te_in.po,1,6,10,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/th_th.po,1,3,7,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/vi.po,1,3,7,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bg_bg.po,1,7,4,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ca.po,1,7,4,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hu_hu.po,1,9,4,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/it_it.po,1,7,4,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ne_np.po,1,5,3,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ro.po,1,7,4,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/uk_ua.po,1,7,4,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/kde.po,2,9,5,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ca.po,1,7,2,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sw_tz.po,1,3,6,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bg_bg.po,1,7,4,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ca.po,1,7,4,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/da_dk.po,1,7,4,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/de.po,1,10,4,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hu_hu.po,0,0,0,1,9,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/an_es.po,1,3,6,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bg_bg.po,0,0,0,1,7,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ar.po,1,5,12,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bg_bg.po,1,7,17,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ca.po,1,7,32,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/da_dk.po,1,7,15,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/fr_fr.po,1,7,16,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/it_it.po,1,7,16,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ne_np.po,1,5,12,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pl_pl.po,1,7,16,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ro.po,1,7,16,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sk_sk.po,1,7,16,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sl_si.po,1,7,16,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/uk_ua.po,1,7,16,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/el_gr.po,1,6,10,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/te_in.po,1,6,10,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/be_by.po,1,3,7,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bn_bd.po,1,3,7,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bo.po,1,6,11,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ca.po,1,7,14,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/cs_cz.po,1,8,14,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/de.po,1,10,17,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/en.po,1,9,16,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/es.po,1,12,19,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/et_ee.po,1,6,12,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gd_gb.po,1,4,8,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gu_in.po,1,3,7,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/he_il.po,1,3,7,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hi_in.po,1,3,7,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hr_hr.po,1,6,12,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/id.po,1,7,14,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/is.po,1,7,14,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/it_it.po,1,7,14,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lo_la.po,1,3,7,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lt_lt.po,1,6,12,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lv_lv.po,1,6,12,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ne_np.po,1,5,10,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/nl_nl.po,1,6,12,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_pt.po,1,8,15,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ro.po,1,7,14,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ru_ru.po,1,9,16,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sk_sk.po,1,7,14,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sl_si.po,1,7,14,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sq_al.po,1,3,7,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sr.po,1,9,15,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sv_se.po,1,2,7,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sw_tz.po,1,3,7,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/te_in.po,1,6,12,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/th_th.po,1,3,7,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/tr_tr.po,1,3,7,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/uk_ua.po,1,7,14,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/vi.po,1,3,7,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bg_bg.po,1,7,2,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ca.po,1,7,2,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/da_dk.po,0,0,0,1,7,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/kde.po,0,0,0,1,7,1,2,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/te_in.po,1,6,3,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/th_th.po,1,3,10,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hu_hu.po,0,0,0,1,9,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/es.po,1,12,17,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bg_bg.po,1,7,13,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bn_bd.po,1,3,6,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/br_fr.po,1,3,6,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ca.po,1,7,13,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/el_gr.po,1,6,11,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/en.po,1,9,18,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gl.po,1,7,13,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/he_il.po,1,3,6,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ro.po,1,7,13,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ru_ru.po,1,9,19,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sk_sk.po,1,7,13,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/th_th.po,1,3,6,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/vi.po,1,3,6,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bo.po,1,6,2,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_br.po,1,9,1,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_pt.po,1,8,1,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bo.po,1,6,2,0,0,0,0,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_br.po,1,9,1,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_pt.po,1,8,1,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa

- libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,452,3501,452,3501,zu.po,,zu,,zulu,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,607,4987,1829,0,0,0,0,607,4987,zh_tw.po,,zh,tw,chinese,,taiwan

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,452,3501,452,3501,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,607,4987,2018,0,0,0,0,607,4987,zh_cn.po,,zh,cn,chinese,,china

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,452,3501,452,3501,xh.po,,xh,,xhosa,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,452,3501,452,3501,wo.po,,wo,,wolof,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,452,3501,452,3501,vi.po,,vi,,vietnamese,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,452,3501,452,3501,uz.po,,uz,,uzbek,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,452,3501,452,3501,ur.po,,ur,,urdu,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/uk.po,607,4987,5205,0,0,0,0,607,4987,uk.po,,uk,,ukrainian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tr.po,144,695,578,0,0,463,4292,607,4987,tr.po,,tr,,turkish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,452,3501,452,3501,tl.po,,tl,,tagalog,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,452,3501,452,3501,th.po,,th,,thai,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,452,3501,452,3501,tg.po,,tg,,tajik,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/te.po,376,2390,2029,0,0,231,2597,607,4987,te.po,,te,,telugu,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ta.po,405,2625,2275,0,0,202,2362,607,4987,ta.po,,ta,,tamil,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sv.po,607,4987,4649,0,0,0,0,607,4987,sv.po,,sv,,swedish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,22,91,82,0,0,585,4896,607,4987,sr@latin.po,latin,sr,,serbian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sr.po,22,91,82,0,0,585,4896,607,4987,sr.po,,sr,,serbian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,452,3501,452,3501,sq.po,,sq,,albanian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,452,3501,452,3501,sl.po,,sl,,slovenian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sk.po,388,2375,2241,0,0,219,2612,607,4987,sk.po,,sk,,slovak,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,452,3501,452,3501,si.po,,si,,sinhala,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,452,3501,452,3501,ru_ru.po,,ru,ru,russian,,russia

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ru.po,607,4987,4456,0,0,0,0,607,4987,ru.po,,ru,,russian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,452,3501,452,3501,ro.po,,ro,,romanian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,607,4987,5471,0,0,0,0,607,4987,pt_br.po,,pt,br,portuguese,,brazil

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pt.po,201,1081,1183,0,0,406,3906,607,4987,pt.po,,pt,,portuguese,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pl.po,607,4987,4886,0,0,0,0,607,4987,pl.po,,pl,,polish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pa.po,183,1038,1189,0,0,424,3949,607,4987,pa.po,,pa,,punjabi,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/or.po,384,2463,2590,0,0,223,2524,607,4987,or.po,,or,,odia,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,452,3501,452,3501,nso.po,,nso,,northern sotho,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,452,3501,452,3501,no.po,,no,,norwegian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,452,3501,452,3501,nn.po,,nn,,norwegian nynorsk,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nl.po,607,4987,5224,0,0,0,0,607,4987,nl.po,,nl,,dutch,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,452,3501,452,3501,ne.po,,ne,,nepali,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nds.po,7,9,9,0,0,600,4978,607,4987,nds.po,,nds,,low german,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nb.po,65,180,174,0,0,542,4807,607,4987,nb.po,,nb,,norwegian bokmål,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,452,3501,452,3501,my.po,,my,,burmese,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,452,3501,452,3501,ms.po,,ms,,malay,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mr.po,390,2507,2436,0,0,217,2480,607,4987,mr.po,,mr,,marathi,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,452,3501,452,3501,mn.po,,mn,,mongolian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ml.po,200,1127,901,0,0,407,3860,607,4987,ml.po,,ml,,malayalam,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,452,3501,452,3501,mk.po,,mk,,macedonian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,452,3501,452,3501,mg.po,,mg,,malagasy,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,452,3501,452,3501,mai.po,,mai,,maithili,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lv.po,33,70,62,0,0,574,4917,607,4987,lv.po,,lv,,latvian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,452,3501,452,3501,lt.po,,lt,,lithuanian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,452,3501,452,3501,lo.po,,lo,,lao,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,452,3501,452,3501,la.po,,la,,latin,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,452,3501,452,3501,ky.po,,ky,,kyrgyz,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,452,3501,452,3501,ku.po,,ku,,kurdish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,452,3501,452,3501,ks.po,,ks,,kashmiri,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ko.po,183,1038,902,0,0,424,3949,607,4987,ko.po,,ko,,korean,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/kn.po,390,2507,2260,0,0,217,2480,607,4987,kn.po,,kn,,kannada,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,452,3501,452,3501,km.po,,km,,khmer,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,452,3501,452,3501,kk.po,,kk,,kazakh,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ka.po,85,214,194,0,0,522,4773,607,4987,ka.po,,ka,,georgian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ja.po,390,2507,1055,0,0,217,2480,607,4987,ja.po,,ja,,japanese,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/it.po,552,3893,4220,22,489,33,605,607,4987,it.po,,it,,italian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,452,3501,452,3501,is.po,,is,,icelandic,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,452,3501,452,3501,ilo.po,,ilo,,iloko,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/id.po,1,1,1,0,0,606,4986,607,4987,id.po,,id,,indonesian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ia.po,69,230,251,0,0,538,4757,607,4987,ia.po,,ia,,interlingua,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,452,3501,452,3501,hy.po,,hy,,armenian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hu.po,470,3241,3174,0,0,137,1746,607,4987,hu.po,,hu,,hungarian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,452,3501,452,3501,hr.po,,hr,,croatian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hi.po,376,2390,2926,0,0,231,2597,607,4987,hi.po,,hi,,hindi,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/he.po,81,337,316,0,0,526,4650,607,4987,he.po,,he,,hebrew,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/gu.po,388,2497,2747,0,0,219,2490,607,4987,gu.po,,gu,,gujarati,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/gl.po,254,1424,1753,0,0,353,3563,607,4987,gl.po,,gl,,galician,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,452,3501,452,3501,ga.po,,ga,,irish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fr.po,607,4987,5735,0,0,0,0,607,4987,fr.po,,fr,,french,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fi.po,392,2288,1779,0,0,215,2699,607,4987,fi.po,,fi,,finnish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fa.po,33,148,159,0,0,574,4839,607,4987,fa.po,,fa,,persian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/eu.po,68,181,174,0,0,539,4806,607,4987,eu.po,,eu,,basque,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,452,3501,452,3501,et.po,,et,,estonian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/es.po,607,4987,5630,0,0,0,0,607,4987,es.po,,es,,spanish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,452,3501,452,3501,eo.po,,eo,,esperanto,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,452,3501,452,3501,en_us.po,,en,us,english,,united states

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,139,682,682,0,0,468,4305,607,4987,en_gb.po,,en,gb,english,,united kingdom

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/el.po,2,2,2,0,0,605,4985,607,4987,el.po,,el,,greek,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,452,3501,452,3501,dz.po,,dz,,dzongkha,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,452,3501,452,3501,de_ch.po,,de,ch,german,,switzerland

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/de.po,607,4987,4755,0,0,0,0,607,4987,de.po,,de,,german,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/da.po,177,674,647,0,0,430,4313,607,4987,da.po,,da,,danish,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,452,3501,452,3501,cy.po,,cy,,welsh,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/cs.po,607,4987,4554,0,0,0,0,607,4987,cs.po,,cs,,czech,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ca.po,607,4987,6174,0,0,0,0,607,4987,ca.po,,ca,,catalan,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bs.po,43,229,220,0,0,564,4758,607,4987,bs.po,,bs,,bosnian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,452,3501,452,3501,brx.po,,brx,,bodo,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,452,3501,452,3501,br.po,,br,,breton,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,452,3501,452,3501,bo.po,,bo,,tibetan,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,216,1249,1428,0,0,391,3738,607,4987,bn_in.po,,bn,in,bangla,,india

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,452,3501,452,3501,bn.po,,bn,,bangla,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bg.po,259,1583,1677,0,0,348,3404,607,4987,bg.po,,bg,,bulgarian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,452,3501,452,3501,be.po,,be,,belarusian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,452,3501,452,3501,bal.po,,bal,,baluchi,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,452,3501,452,3501,az.po,,az,,azerbaijani,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,452,3501,452,3501,ast.po,,ast,,asturian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/as.po,390,2507,2679,0,0,217,2480,607,4987,as.po,,as,,assamese,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ar.po,56,233,224,0,0,551,4754,607,4987,ar.po,,ar,,arabic,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,452,3501,452,3501,am.po,,am,,amharic,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,452,3501,452,3501,aln.po,,aln,,gheg albanian,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,452,3501,452,3501,af.po,,af,,afrikaans,,

- libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,452,3501,452,3501,ach.po,,ach,,acoli,,

- librsvg2-2.45.5-3.fc30.src.rpm.stats.csv,po/es.po,21,67,80,0,0,0,0,21,67,es.po,,es,,spanish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fur.po,9,59,71,0,0,0,0,9,59,fur.po,,fur,,friulian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/hr.po,9,59,54,0,0,0,0,9,59,hr.po,,hr,,croatian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ar.po,9,59,49,0,0,0,0,9,59,ar.po,,ar,,arabic,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ko.po,9,59,46,0,0,0,0,9,59,ko.po,,ko,,korean,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sv.po,9,59,51,0,0,0,0,9,59,sv.po,,sv,,swedish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/tg.po,9,59,55,0,0,0,0,9,59,tg.po,,tg,,tajik,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/uk.po,9,59,53,0,0,0,0,9,59,uk.po,,uk,,ukrainian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/da.po,9,59,61,0,0,0,0,9,59,da.po,,da,,danish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ne.po,9,59,50,0,0,0,0,9,59,ne.po,,ne,,nepali,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sr.po,9,59,56,0,0,0,0,9,59,sr.po,,sr,,serbian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_hk.po,9,59,9,0,0,0,0,9,59,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ro.po,9,59,63,0,0,0,0,9,59,ro.po,,ro,,romanian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pa.po,9,59,63,0,0,0,0,9,59,pa.po,,pa,,punjabi,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/es.po,9,59,71,0,0,0,0,9,59,es.po,,es,,spanish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/tr.po,9,59,42,0,0,0,0,9,59,tr.po,,tr,,turkish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/it.po,9,59,65,0,0,0,0,9,59,it.po,,it,,italian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/de.po,9,59,54,0,0,0,0,9,59,de.po,,de,,german,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/lv.po,9,59,47,0,0,0,0,9,59,lv.po,,lv,,latvian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ca.po,9,59,77,0,0,0,0,9,59,ca.po,,ca,,catalan,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/bs.po,9,59,53,0,0,0,0,9,59,bs.po,,bs,,bosnian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/as.po,9,59,54,0,0,0,0,9,59,as.po,,as,,assamese,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pt_br.po,9,59,70,0,0,0,0,9,59,pt_br.po,,pt,br,portuguese,,brazil

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/an.po,9,59,69,0,0,0,0,9,59,an.po,,an,,aragonese,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/eu.po,9,59,50,0,0,0,0,9,59,eu.po,,eu,,basque,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/kk.po,9,59,48,0,0,0,0,9,59,kk.po,,kk,,kazakh,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/nb.po,9,59,56,0,0,0,0,9,59,nb.po,,nb,,norwegian bokmål,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/nl.po,9,59,55,0,0,0,0,9,59,nl.po,,nl,,dutch,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/eo.po,9,59,52,0,0,0,0,9,59,eo.po,,eo,,esperanto,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/lt.po,9,59,45,0,0,0,0,9,59,lt.po,,lt,,lithuanian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fa.po,9,59,62,0,0,0,0,9,59,fa.po,,fa,,persian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/oc.po,9,59,69,0,0,0,0,9,59,oc.po,,oc,,occitan,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fr.po,9,59,68,0,0,0,0,9,59,fr.po,,fr,,french,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ru.po,9,59,50,0,0,0,0,9,59,ru.po,,ru,,russian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sl.po,9,59,59,0,0,0,0,9,59,sl.po,,sl,,slovenian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/cs.po,9,59,55,0,0,0,0,9,59,cs.po,,cs,,czech,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/bg.po,9,59,48,0,0,0,0,9,59,bg.po,,bg,,bulgarian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ml.po,9,59,38,0,0,0,0,9,59,ml.po,,ml,,malayalam,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/be.po,9,59,51,0,0,0,0,9,59,be.po,,be,,belarusian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pl.po,9,59,49,0,0,0,0,9,59,pl.po,,pl,,polish,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_cn.po,9,59,9,0,0,0,0,9,59,zh_cn.po,,zh,cn,chinese,,china

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,59,77,0,0,0,0,9,59,ca@valencia.po,valencia,ca,,catalan,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/en_gb.po,9,59,59,0,0,0,0,9,59,en_gb.po,,en,gb,english,,united kingdom

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/id.po,9,59,59,0,0,0,0,9,59,id.po,,id,,indonesian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sr@latin.po,9,59,56,0,0,0,0,9,59,sr@latin.po,latin,sr,,serbian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ja.po,6,44,6,0,0,0,0,6,44,ja.po,,ja,,japanese,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/gl.po,9,59,73,0,0,0,0,9,59,gl.po,,gl,,galician,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/he.po,9,59,49,0,0,0,0,9,59,he.po,,he,,hebrew,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/hu.po,9,59,51,0,0,0,0,9,59,hu.po,,hu,,hungarian,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sk.po,9,59,51,0,0,0,0,9,59,sk.po,,sk,,slovak,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pt.po,9,59,64,0,0,0,0,9,59,pt.po,,pt,,portuguese,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/el.po,9,59,67,0,0,0,0,9,59,el.po,,el,,greek,,

- libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_tw.po,9,59,9,0,0,0,0,9,59,zh_tw.po,,zh,tw,chinese,,taiwan

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,359,2174,359,2174,zh_tw.po,,zh,tw,chinese,,taiwan

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,359,2174,359,2174,zh_cn.po,,zh,cn,chinese,,china

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,359,2174,359,2174,nl.po,,nl,,dutch,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,359,2174,359,2174,ko.po,,ko,,korean,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,359,2174,359,2174,ja.po,,ja,,japanese,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,359,2174,359,2174,it.po,,it,,italian,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,0,0,359,2174,359,2174,fr.po,,fr,,french,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/es.po,217,1139,1374,21,152,121,883,359,2174,es.po,,es,,spanish,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en_us.po,21,178,178,0,0,0,0,21,178,en_us.po,,en,us,english,,united states

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en@quot.po,359,2174,2174,0,0,0,0,359,2174,en@quot.po,quot,en,,english,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,359,2174,2174,0,0,0,0,359,2174,en@boldquot.po,boldquot,en,,english,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en.po,12,88,88,8,69,339,2017,359,2174,en.po,,en,,english,,

- libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,359,2174,359,2174,de.po,,de,,german,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,38,162,78,0,0,0,0,38,162,zh_tw.po,,zh,tw,chinese,,taiwan

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,25,110,50,0,0,0,0,25,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,38,162,87,0,0,0,0,38,162,zh_cn.po,,zh,cn,chinese,,china

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/vi.po,36,155,267,0,0,0,0,36,155,vi.po,,vi,,vietnamese,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,14,51,52,0,0,0,0,14,51,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/uk.po,25,110,111,0,0,0,0,25,110,uk.po,,uk,,ukrainian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ug.po,20,79,79,0,0,0,0,20,79,ug.po,,ug,,uyghur,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/tr.po,38,162,162,0,0,0,0,38,162,tr.po,,tr,,turkish,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/th.po,36,155,81,0,0,0,0,36,155,th.po,,th,,thai,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/tg.po,20,79,92,0,0,0,0,20,79,tg.po,,tg,,tajik,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/te.po,25,110,96,0,0,0,0,25,110,te.po,,te,,telugu,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ta.po,25,110,105,0,0,0,0,25,110,ta.po,,ta,,tamil,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sv.po,38,162,155,0,0,0,0,38,162,sv.po,,sv,,swedish,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,37,158,188,0,0,0,0,37,158,sr@latin.po,latin,sr,,serbian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sr.po,38,162,193,0,0,0,0,38,162,sr.po,,sr,,serbian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sl.po,38,162,185,0,0,0,0,38,162,sl.po,,sl,,slovenian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sk.po,38,162,188,0,0,0,0,38,162,sk.po,,sk,,slovak,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ru.po,36,155,157,0,0,0,0,36,155,ru.po,,ru,,russian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ro.po,38,162,213,0,0,0,0,38,162,ro.po,,ro,,romanian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,38,162,231,0,0,0,0,38,162,pt_br.po,,pt,br,portuguese,,brazil

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pt.po,36,155,183,0,0,0,0,36,155,pt.po,,pt,,portuguese,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pl.po,38,162,175,0,0,0,0,38,162,pl.po,,pl,,polish,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pa.po,25,110,146,0,0,0,0,25,110,pa.po,,pa,,punjabi,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/or.po,25,110,121,0,0,0,0,25,110,or.po,,or,,odia,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/oc.po,36,155,221,0,0,0,0,36,155,oc.po,,oc,,occitan,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/nl.po,38,162,147,0,0,0,0,38,162,nl.po,,nl,,dutch,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ne.po,36,155,159,0,0,0,0,36,155,ne.po,,ne,,nepali,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/nb.po,36,155,168,0,0,0,0,36,155,nb.po,,nb,,norwegian bokmål,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/mr.po,25,110,108,0,0,0,0,25,110,mr.po,,mr,,marathi,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ml.po,20,79,70,0,0,0,0,20,79,ml.po,,ml,,malayalam,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/lv.po,38,162,153,0,0,0,0,38,162,lv.po,,lv,,latvian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/lt.po,38,162,157,0,0,0,0,38,162,lt.po,,lt,,lithuanian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ko.po,38,162,173,0,0,0,0,38,162,ko.po,,ko,,korean,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/kn.po,25,110,106,0,0,0,0,25,110,kn.po,,kn,,kannada,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ja.po,14,51,31,0,0,0,0,14,51,ja.po,,ja,,japanese,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/it.po,38,162,200,0,0,0,0,38,162,it.po,,it,,italian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/id.po,38,162,190,0,0,0,0,38,162,id.po,,id,,indonesian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hu.po,38,162,188,0,0,0,0,38,162,hu.po,,hu,,hungarian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hr.po,38,162,155,0,0,0,0,38,162,hr.po,,hr,,croatian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hi.po,25,110,148,0,0,0,0,25,110,hi.po,,hi,,hindi,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/he.po,36,155,173,0,0,0,0,36,155,he.po,,he,,hebrew,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gu.po,25,110,124,0,0,0,0,25,110,gu.po,,gu,,gujarati,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gl.po,38,162,236,0,0,0,0,38,162,gl.po,,gl,,galician,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gd.po,36,155,259,0,0,0,0,36,155,gd.po,,gd,,scottish gaelic,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fur.po,38,162,219,0,0,0,0,38,162,fur.po,,fur,,friulian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fr.po,38,162,235,0,0,0,0,38,162,fr.po,,fr,,french,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fa.po,20,79,97,0,0,0,0,20,79,fa.po,,fa,,persian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/eu.po,36,155,176,0,0,0,0,36,155,eu.po,,eu,,basque,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/et.po,37,158,145,0,0,0,0,37,158,et.po,,et,,estonian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/es.po,38,162,255,0,0,0,0,38,162,es.po,,es,,spanish,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/eo.po,21,80,82,0,0,15,75,36,155,eo.po,,eo,,esperanto,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,36,155,155,0,0,0,0,36,155,en_gb.po,,en,gb,english,,united kingdom

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/el.po,38,162,205,0,0,0,0,38,162,el.po,,el,,greek,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/de.po,38,162,173,0,0,0,0,38,162,de.po,,de,,german,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/da.po,38,162,164,0,0,0,0,38,162,da.po,,da,,danish,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/cs.po,38,162,168,0,0,0,0,38,162,cs.po,,cs,,czech,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,36,155,260,0,0,0,0,36,155,ca@valencia.po,valencia,ca,,catalan,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ca.po,38,162,273,0,0,0,0,38,162,ca.po,,ca,,catalan,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bs.po,25,110,114,0,0,0,0,25,110,bs.po,,bs,,bosnian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,25,110,119,0,0,0,0,25,110,bn_in.po,,bn,in,bangla,,india

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bg.po,36,155,207,0,0,0,0,36,155,bg.po,,bg,,bulgarian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/be.po,38,162,161,0,0,0,0,38,162,be.po,,be,,belarusian,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/as.po,25,110,119,0,0,0,0,25,110,as.po,,as,,assamese,,

- libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/an.po,36,155,238,0,0,0,0,36,155,an.po,,an,,aragonese,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ar.po,211,981,1061,7,38,83,418,301,1437,ar.po,,ar,,arabic,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/as.po,213,996,1132,7,38,81,403,301,1437,as.po,,as,,assamese,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/bg.po,290,1374,1575,8,45,3,18,301,1437,bg.po,,bg,,bulgarian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/bn.po,213,996,1165,7,38,81,403,301,1437,bn.po,,bn,,bangla,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/bn_in.po,213,996,1165,7,38,81,403,301,1437,bn_in.po,,bn,in,bangla,,india

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/bs.po,192,889,945,5,25,104,523,301,1437,bs.po,,bs,,bosnian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ca.po,292,1385,2086,6,34,3,18,301,1437,ca.po,,ca,,catalan,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/cs.po,301,1437,1381,0,0,0,0,301,1437,cs.po,,cs,,czech,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/cy.po,197,904,1036,5,25,99,508,301,1437,cy.po,,cy,,welsh,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/da.po,292,1385,1360,6,34,3,18,301,1437,da.po,,da,,danish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/de.po,292,1385,1425,6,34,3,18,301,1437,de.po,,de,,german,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/de_ch.po,204,938,990,7,38,90,461,301,1437,de_ch.po,,de,ch,german,,switzerland

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/el.po,290,1374,1533,8,45,3,18,301,1437,el.po,,el,,greek,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/en_gb.po,197,904,904,5,25,99,508,301,1437,en_gb.po,,en,gb,english,,united kingdom

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/es.po,290,1374,1749,8,45,3,18,301,1437,es.po,,es,,spanish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/et.po,202,923,834,7,38,92,476,301,1437,et.po,,et,,estonian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/eu.po,24,58,55,0,0,277,1379,301,1437,eu.po,,eu,,basque,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/fi.po,211,984,842,7,38,83,415,301,1437,fi.po,,fi,,finnish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/fr.po,290,1374,1850,8,45,3,18,301,1437,fr.po,,fr,,french,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/gu.po,213,996,1147,7,38,81,403,301,1437,gu.po,,gu,,gujarati,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/he.po,84,355,359,5,25,212,1057,301,1437,he.po,,he,,hebrew,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/hi.po,213,996,1271,7,38,81,403,301,1437,hi.po,,hi,,hindi,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/hr.po,197,904,959,5,25,99,508,301,1437,hr.po,,hr,,croatian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/hu.po,290,1374,1337,8,45,3,18,301,1437,hu.po,,hu,,hungarian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/id.po,213,996,1062,7,38,81,403,301,1437,id.po,,id,,indonesian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/is.po,211,985,1064,7,38,83,414,301,1437,is.po,,is,,icelandic,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/it.po,213,996,1179,7,38,81,403,301,1437,it.po,,it,,italian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ja.po,290,1374,609,8,45,3,18,301,1437,ja.po,,ja,,japanese,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/kn.po,213,996,975,7,38,81,403,301,1437,kn.po,,kn,,kannada,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ko.po,218,1020,1049,7,38,76,379,301,1437,ko.po,,ko,,korean,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/lv.po,62,248,223,5,25,234,1164,301,1437,lv.po,,lv,,latvian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/mai.po,204,938,1192,7,38,90,461,301,1437,mai.po,,mai,,maithili,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/mk.po,197,904,1066,5,25,99,508,301,1437,mk.po,,mk,,macedonian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ml.po,208,970,862,7,38,86,429,301,1437,ml.po,,ml,,malayalam,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/mr.po,212,990,1013,7,38,82,409,301,1437,mr.po,,mr,,marathi,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ms.po,197,904,897,5,25,99,508,301,1437,ms.po,,ms,,malay,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/nb.po,290,1374,1364,8,45,3,18,301,1437,nb.po,,nb,,norwegian bokmål,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/nds.po,15,27,27,0,0,286,1410,301,1437,nds.po,,nds,,low german,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/nl.po,292,1385,1483,6,34,3,18,301,1437,nl.po,,nl,,dutch,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/or.po,213,996,1389,7,38,81,403,301,1437,or.po,,or,,odia,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/pa.po,213,996,1259,7,38,81,403,301,1437,pa.po,,pa,,punjabi,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/pl.po,292,1385,1463,6,34,3,18,301,1437,pl.po,,pl,,polish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/pt.po,213,996,1259,7,38,81,403,301,1437,pt.po,,pt,,portuguese,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/pt_br.po,219,1014,1243,7,38,75,385,301,1437,pt_br.po,,pt,br,portuguese,,brazil

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ro.po,77,306,353,5,25,219,1106,301,1437,ro.po,,ro,,romanian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ru.po,290,1374,1342,8,45,3,18,301,1437,ru.po,,ru,,russian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/sk.po,211,979,994,8,49,82,409,301,1437,sk.po,,sk,,slovak,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/sl.po,197,904,968,5,25,99,508,301,1437,sl.po,,sl,,slovenian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/sr.po,292,1385,1440,6,34,3,18,301,1437,sr.po,,sr,,serbian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/sr@latin.po,208,970,1024,7,38,86,429,301,1437,sr@latin.po,latin,sr,,serbian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/sv.po,292,1385,1404,6,34,3,18,301,1437,sv.po,,sv,,swedish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/ta.po,213,996,879,7,38,81,403,301,1437,ta.po,,ta,,tamil,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/te.po,213,996,894,7,38,81,403,301,1437,te.po,,te,,telugu,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/tr.po,212,990,901,7,38,82,409,301,1437,tr.po,,tr,,turkish,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/uk.po,292,1385,1380,6,34,3,18,301,1437,uk.po,,uk,,ukrainian,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/vi.po,145,607,810,5,25,151,805,301,1437,vi.po,,vi,,vietnamese,,

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/zh_cn.po,290,1374,574,8,45,3,18,301,1437,zh_cn.po,,zh,cn,chinese,,china

- libuser-0.62-20.fc30.src.rpm.stats.csv,po/zh_tw.po,290,1374,539,8,45,3,18,301,1437,zh_tw.po,,zh,tw,chinese,,taiwan

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,9877,64065,9877,64065,zu.po,,zu,,zulu,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_tw.po,290,1273,511,0,0,9587,62792,9877,64065,zh_tw.po,,zh,tw,chinese,,taiwan

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,9877,64065,9877,64065,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_cn.po,6212,38181,17684,0,0,3665,25884,9877,64065,zh_cn.po,,zh,cn,chinese,,china

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,9877,64065,9877,64065,yo.po,,yo,,yoruba,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/vi.po,2234,12503,17619,0,0,7643,51562,9877,64065,vi.po,,vi,,vietnamese,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,9877,64065,9877,64065,ur.po,,ur,,urdu,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/uk.po,9789,63408,68392,0,0,88,657,9877,64065,uk.po,,uk,,ukrainian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,9877,64065,9877,64065,tw.po,,tw,,twi,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,9877,64065,9877,64065,tr.po,,tr,,turkish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,9877,64065,9877,64065,th.po,,th,,thai,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,9877,64065,9877,64065,tg.po,,tg,,tajik,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/te.po,5674,34412,30313,0,0,4203,29653,9877,64065,te.po,,te,,telugu,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ta.po,6240,38353,35168,0,0,3637,25712,9877,64065,ta.po,,ta,,tamil,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sv.po,685,3447,3116,0,0,9192,60618,9877,64065,sv.po,,sv,,swedish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sr.po,594,2722,2626,0,0,9283,61343,9877,64065,sr.po,,sr,,serbian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sr@latin.po,594,2722,2626,0,0,9283,61343,9877,64065,sr@latin.po,latin,sr,,serbian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,9877,64065,9877,64065,sq.po,,sq,,albanian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,9877,64065,9877,64065,sl.po,,sl,,slovenian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,9877,64065,9877,64065,sk.po,,sk,,slovak,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,9877,64065,9877,64065,si.po,,si,,sinhala,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ru.po,5526,32781,31785,0,0,4351,31284,9877,64065,ru.po,,ru,,russian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,9877,64065,9877,64065,ro.po,,ro,,romanian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pt.po,345,1488,1996,0,0,9532,62577,9877,64065,pt.po,,pt,,portuguese,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pt_br.po,5813,35278,43640,0,0,4064,28787,9877,64065,pt_br.po,,pt,br,portuguese,,brazil

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pl.po,2622,14541,15360,0,0,7255,49524,9877,64065,pl.po,,pl,,polish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pa.po,5677,34495,39805,0,0,4200,29570,9877,64065,pa.po,,pa,,punjabi,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/or.po,5565,31727,33007,0,0,4312,32338,9877,64065,or.po,,or,,odia,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,9877,64065,9877,64065,nso.po,,nso,,northern sotho,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,9877,64065,9877,64065,nn.po,,nn,,norwegian nynorsk,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nl.po,2537,14131,14704,0,0,7340,49934,9877,64065,nl.po,,nl,,dutch,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,9877,64065,9877,64065,ne.po,,ne,,nepali,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,9877,64065,9877,64065,nds.po,,nds,,low german,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nb.po,132,468,432,0,0,9745,63597,9877,64065,nb.po,,nb,,norwegian bokmål,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,9877,64065,9877,64065,my.po,,my,,burmese,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ms.po,46,115,112,0,0,9831,63950,9877,64065,ms.po,,ms,,malay,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mr.po,6749,41259,39684,0,0,3128,22806,9877,64065,mr.po,,mr,,marathi,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,9877,64065,9877,64065,mn.po,,mn,,mongolian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ml.po,5733,34865,29079,0,0,4144,29200,9877,64065,ml.po,,ml,,malayalam,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mk.po,317,1353,1603,0,0,9560,62712,9877,64065,mk.po,,mk,,macedonian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,9877,64065,9877,64065,mai.po,,mai,,maithili,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,9877,64065,9877,64065,lv.po,,lv,,latvian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,9877,64065,9877,64065,lt.po,,lt,,lithuanian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,9877,64065,9877,64065,ky.po,,ky,,kyrgyz,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,9877,64065,9877,64065,kw@uccor.po,uccor,kw,,cornish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,9877,64065,9877,64065,kw.po,,kw,,cornish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,9877,64065,9877,64065,kw@kkcor.po,kkcor,kw,,cornish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,9877,64065,9877,64065,kw_gb.po,,kw,gb,cornish,,united kingdom

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ko.po,3364,18956,18126,0,0,6513,45109,9877,64065,ko.po,,ko,,korean,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kn.po,5704,34630,31559,0,0,4173,29435,9877,64065,kn.po,,kn,,kannada,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,9877,64065,9877,64065,km.po,,km,,khmer,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,9877,64065,9877,64065,kk.po,,kk,,kazakh,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,9877,64065,9877,64065,ka.po,,ka,,georgian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ja.po,5839,35421,16456,0,0,4038,28644,9877,64065,ja.po,,ja,,japanese,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/it.po,1676,8996,10539,0,0,8201,55069,9877,64065,it.po,,it,,italian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,9877,64065,9877,64065,is.po,,is,,icelandic,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,9877,64065,9877,64065,ilo.po,,ilo,,iloko,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/id.po,209,834,787,0,0,9668,63231,9877,64065,id.po,,id,,indonesian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,9877,64065,9877,64065,ia.po,,ia,,interlingua,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hu.po,270,1164,1106,0,0,9607,62901,9877,64065,hu.po,,hu,,hungarian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,9877,64065,9877,64065,hr.po,,hr,,croatian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hi.po,3586,20813,24843,0,0,6291,43252,9877,64065,hi.po,,hi,,hindi,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,9877,64065,9877,64065,he.po,,he,,hebrew,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/gu.po,5943,35847,38666,0,0,3934,28218,9877,64065,gu.po,,gu,,gujarati,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,9877,64065,9877,64065,gl.po,,gl,,galician,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,9877,64065,9877,64065,ga.po,,ga,,irish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fur.po,0,0,0,0,0,9877,64065,9877,64065,fur.po,,fur,,friulian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fr.po,1157,5793,7186,0,0,8720,58272,9877,64065,fr.po,,fr,,french,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fi.po,358,1518,1185,0,0,9519,62547,9877,64065,fi.po,,fi,,finnish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fil.po,0,0,0,0,0,9877,64065,9877,64065,fil.po,,fil,,filipino,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,9877,64065,9877,64065,fa.po,,fa,,persian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,9877,64065,9877,64065,eu.po,,eu,,basque,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,9877,64065,9877,64065,et.po,,et,,estonian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/es.po,5715,34614,44483,0,0,4162,29451,9877,64065,es.po,,es,,spanish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,9877,64065,9877,64065,eo.po,,eo,,esperanto,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/en_gb.po,5799,35309,35309,0,0,4078,28756,9877,64065,en_gb.po,,en,gb,english,,united kingdom

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/el.po,179,926,1349,0,0,9698,63139,9877,64065,el.po,,el,,greek,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/de.po,5746,34937,33795,0,0,4131,29128,9877,64065,de.po,,de,,german,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,9877,64065,9877,64065,de_ch.po,,de,ch,german,,switzerland

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/da.po,270,1164,1082,0,0,9607,62901,9877,64065,da.po,,da,,danish,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,9877,64065,9877,64065,cy.po,,cy,,welsh,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/cs.po,1294,6111,5858,0,0,8583,57954,9877,64065,cs.po,,cs,,czech,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ca.po,443,1971,2603,0,0,9434,62094,9877,64065,ca.po,,ca,,catalan,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bs.po,204,849,847,0,0,9673,63216,9877,64065,bs.po,,bs,,bosnian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,9877,64065,9877,64065,brx.po,,brx,,bodo,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,9877,64065,9877,64065,br.po,,br,,breton,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,9877,64065,9877,64065,bo.po,,bo,,tibetan,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,9877,64065,9877,64065,bn.po,,bn,,bangla,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bn_in.po,2364,13222,14044,0,0,7513,50843,9877,64065,bn_in.po,,bn,in,bangla,,india

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bg.po,335,1452,1632,0,0,9542,62613,9877,64065,bg.po,,bg,,bulgarian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,9877,64065,9877,64065,be.po,,be,,belarusian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,9877,64065,9877,64065,bal.po,,bal,,baluchi,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,9877,64065,9877,64065,ast.po,,ast,,asturian,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/as.po,5981,36594,38452,0,0,3896,27471,9877,64065,as.po,,as,,assamese,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,9877,64065,9877,64065,ar.po,,ar,,arabic,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,9877,64065,9877,64065,anp.po,,anp,,angika,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,9877,64065,9877,64065,am.po,,am,,amharic,,

- libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,9877,64065,9877,64065,af.po,,af,,afrikaans,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/cs.po,30,153,142,0,0,0,0,30,153,cs.po,,cs,,czech,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,25,121,159,0,0,5,32,30,153,pt_br.po,,pt,br,portuguese,,brazil

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,30,153,30,153,sl.po,,sl,,slovenian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,30,153,30,153,fa.po,,fa,,persian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,30,153,30,153,cy.po,,cy,,welsh,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,30,153,30,153,mk.po,,mk,,macedonian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/es.po,29,145,205,0,0,1,8,30,153,es.po,,es,,spanish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,30,153,30,153,sv.po,,sv,,swedish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ca.po,30,153,223,0,0,0,0,30,153,ca.po,,ca,,catalan,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,30,153,30,153,el.po,,el,,greek,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,30,153,30,153,ro.po,,ro,,romanian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,30,153,30,153,nds.po,,nds,,low german,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,30,153,30,153,or.po,,or,,odia,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,30,153,30,153,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,30,153,30,153,ar.po,,ar,,arabic,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,30,153,30,153,hr.po,,hr,,croatian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,30,153,30,153,et.po,,et,,estonian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,30,153,30,153,be.po,,be,,belarusian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,30,153,30,153,bn_in.po,,bn,in,bangla,,india

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,30,153,30,153,as.po,,as,,assamese,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,30,153,30,153,bg.po,,bg,,bulgarian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,30,153,30,153,anp.po,,anp,,angika,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,30,153,30,153,ka.po,,ka,,georgian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,30,153,30,153,zu.po,,zu,,zulu,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/uk.po,30,153,150,0,0,0,0,30,153,uk.po,,uk,,ukrainian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,30,153,30,153,kw@kkcor.po,kkcor,kw,,cornish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,30,153,30,153,lt.po,,lt,,lithuanian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,30,153,30,153,bn.po,,bn,,bangla,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,30,153,30,153,mr.po,,mr,,marathi,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,30,153,30,153,ne.po,,ne,,nepali,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pl.po,30,153,158,0,0,0,0,30,153,pl.po,,pl,,polish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,30,153,30,153,sr.po,,sr,,serbian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,30,153,30,153,gl.po,,gl,,galician,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,30,153,30,153,lv.po,,lv,,latvian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,30,153,30,153,te.po,,te,,telugu,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,30,153,30,153,eu.po,,eu,,basque,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,153,30,153,ilo.po,,ilo,,iloko,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,30,153,30,153,vi.po,,vi,,vietnamese,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fi.po,7,31,28,0,0,23,122,30,153,fi.po,,fi,,finnish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,30,153,30,153,bs.po,,bs,,bosnian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,30,153,30,153,pa.po,,pa,,punjabi,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,30,153,30,153,th.po,,th,,thai,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/en_gb.po,25,121,121,0,0,5,32,30,153,en_gb.po,,en,gb,english,,united kingdom

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fr.po,29,145,167,0,0,1,8,30,153,fr.po,,fr,,french,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,30,153,30,153,kw@uccor.po,uccor,kw,,cornish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,30,153,30,153,br.po,,br,,breton,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,30,153,30,153,ml.po,,ml,,malayalam,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,30,153,30,153,mai.po,,mai,,maithili,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,30,153,30,153,is.po,,is,,icelandic,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,30,153,30,153,hu.po,,hu,,hungarian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,30,153,30,153,nl.po,,nl,,dutch,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,30,153,30,153,sq.po,,sq,,albanian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,30,153,30,153,pt.po,,pt,,portuguese,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ru.po,1,4,3,0,0,29,149,30,153,ru.po,,ru,,russian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,30,153,30,153,ta.po,,ta,,tamil,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,30,153,30,153,de_ch.po,,de,ch,german,,switzerland

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,30,153,30,153,eo.po,,eo,,esperanto,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,30,153,30,153,am.po,,am,,amharic,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,30,153,30,153,nso.po,,nso,,northern sotho,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,30,153,30,153,kn.po,,kn,,kannada,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,30,153,30,153,af.po,,af,,afrikaans,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,30,153,30,153,id.po,,id,,indonesian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,30,153,30,153,brx.po,,brx,,bodo,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,30,153,30,153,gu.po,,gu,,gujarati,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,30,153,30,153,ms.po,,ms,,malay,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,30,153,30,153,si.po,,si,,sinhala,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,30,153,30,153,tw.po,,tw,,twi,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,30,153,30,153,de.po,,de,,german,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,30,153,30,153,zh_cn.po,,zh,cn,chinese,,china

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,30,153,30,153,kw_gb.po,,kw,gb,cornish,,united kingdom

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,30,153,30,153,zh_tw.po,,zh,tw,chinese,,taiwan

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ja.po,25,121,52,0,0,5,32,30,153,ja.po,,ja,,japanese,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,30,153,30,153,nn.po,,nn,,norwegian nynorsk,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,30,153,30,153,km.po,,km,,khmer,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,30,153,30,153,kw.po,,kw,,cornish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,30,153,30,153,da.po,,da,,danish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,30,153,30,153,ko.po,,ko,,korean,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hi.po,25,121,166,0,0,5,32,30,153,hi.po,,hi,,hindi,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,30,153,30,153,mn.po,,mn,,mongolian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,30,153,30,153,yo.po,,yo,,yoruba,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,30,153,30,153,ky.po,,ky,,kyrgyz,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,30,153,30,153,sk.po,,sk,,slovak,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,30,153,30,153,sr@latin.po,latin,sr,,serbian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,30,153,30,153,bo.po,,bo,,tibetan,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,30,153,30,153,he.po,,he,,hebrew,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,30,153,30,153,kk.po,,kk,,kazakh,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,153,30,153,ur.po,,ur,,urdu,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,30,153,30,153,bal.po,,bal,,baluchi,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,30,153,30,153,it.po,,it,,italian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,30,153,30,153,tr.po,,tr,,turkish,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,30,153,30,153,ast.po,,ast,,asturian,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,30,153,30,153,tg.po,,tg,,tajik,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,30,153,30,153,nb.po,,nb,,norwegian bokmål,,

- libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,30,153,30,153,ia.po,,ia,,interlingua,,

- libvisual-0.4.0-26.fc30.src.rpm.stats.csv,po/es_es.po,62,303,364,51,204,92,548,205,1055,es_es.po,,es,es,spanish,,spain

- libvisual-0.4.0-26.fc30.src.rpm.stats.csv,po/es_ar.po,62,303,364,51,204,92,548,205,1055,es_ar.po,,es,ar,spanish,,argentina

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,231,1086,353,0,0,0,0,231,1086,zh_tw.po,,zh,tw,chinese,,taiwan

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_hk.po,230,1084,352,0,0,0,0,230,1084,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,231,1086,330,0,0,0,0,231,1086,zh_cn.po,,zh,cn,chinese,,china

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/xh.po,30,73,88,0,0,0,0,30,73,xh.po,,xh,,xhosa,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/wa.po,15,30,46,9,29,6,14,30,73,wa.po,,wa,,walloon,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/vi.po,231,1086,1657,0,0,0,0,231,1086,vi.po,,vi,,vietnamese,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/uk.po,230,1084,998,0,0,0,0,230,1084,uk.po,,uk,,ukrainian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ug.po,230,1082,991,0,0,0,0,230,1082,ug.po,,ug,,uyghur,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/tr.po,231,1086,986,0,0,0,0,231,1086,tr.po,,tr,,turkish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/th.po,231,1086,432,0,0,0,0,231,1086,th.po,,th,,thai,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/te.po,231,1086,859,0,0,0,0,231,1086,te.po,,te,,telugu,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ta.po,230,1068,908,1,18,0,0,231,1086,ta.po,,ta,,tamil,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sv.po,231,1086,1025,0,0,0,0,231,1086,sv.po,,sv,,swedish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,231,1086,1084,0,0,0,0,231,1086,sr@latin.po,latin,sr,,serbian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sr.po,231,1086,1084,0,0,0,0,231,1086,sr.po,,sr,,serbian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sq.po,33,88,131,0,0,0,0,33,88,sq.po,,sq,,albanian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sl.po,231,1086,1032,0,0,0,0,231,1086,sl.po,,sl,,slovenian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sk.po,231,1086,1016,0,0,0,0,231,1086,sk.po,,sk,,slovak,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/si.po,32,87,103,0,0,0,0,32,87,si.po,,si,,sinhala,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/rw.po,1,2,2,20,55,9,16,30,73,rw.po,,rw,,kinyarwanda,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ru.po,231,1086,1035,0,0,0,0,231,1086,ru.po,,ru,,russian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ro.po,241,1124,1277,0,0,0,0,241,1124,ro.po,,ro,,romanian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,231,1086,1280,0,0,0,0,231,1086,pt_br.po,,pt,br,portuguese,,brazil

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pt.po,231,1086,1291,0,0,0,0,231,1086,pt.po,,pt,,portuguese,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pl.po,231,1086,1022,0,0,0,0,231,1086,pl.po,,pl,,polish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pa.po,230,1084,1097,0,0,0,0,230,1084,pa.po,,pa,,punjabi,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/or.po,230,1068,1013,1,18,0,0,231,1086,or.po,,or,,odia,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/oc.po,230,1082,1337,0,0,0,0,230,1082,oc.po,,oc,,occitan,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nn.po,241,1124,1049,0,0,0,0,241,1124,nn.po,,nn,,norwegian nynorsk,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nl.po,230,1084,992,0,0,0,0,230,1084,nl.po,,nl,,dutch,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ne.po,236,1083,1017,3,39,0,0,239,1122,ne.po,,ne,,nepali,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nb.po,203,749,697,0,0,27,335,230,1084,nb.po,,nb,,norwegian bokmål,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ms.po,21,47,49,7,21,2,5,30,73,ms.po,,ms,,malay,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mr.po,231,1086,1049,0,0,0,0,231,1086,mr.po,,mr,,marathi,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mn.po,21,47,56,7,21,2,5,30,73,mn.po,,mn,,mongolian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ml.po,231,1086,835,0,0,0,0,231,1086,ml.po,,ml,,malayalam,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mk.po,240,1106,1275,1,18,0,0,241,1124,mk.po,,mk,,macedonian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,6,11,24,62,30,73,mi.po,,mi,,maori,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mai.po,47,97,124,0,0,194,1027,241,1124,mai.po,,mai,,maithili,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/lv.po,231,1086,967,0,0,0,0,231,1086,lv.po,,lv,,latvian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/lt.po,231,1086,940,0,0,0,0,231,1086,lt.po,,lt,,lithuanian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/li.po,15,30,32,9,29,6,14,30,73,li.po,,li,,limburgish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ky.po,27,69,74,1,1,2,3,30,73,ky.po,,ky,,kyrgyz,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ku.po,30,73,87,0,0,0,0,30,73,ku.po,,ku,,kurdish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ko.po,230,1084,985,0,0,0,0,230,1084,ko.po,,ko,,korean,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/kn.po,230,1068,899,1,18,0,0,231,1086,kn.po,,kn,,kannada,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/km.po,230,1084,522,0,0,0,0,230,1084,km.po,,km,,khmer,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/kk.po,89,207,223,0,0,142,879,231,1086,kk.po,,kk,,kazakh,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ka.po,152,621,529,0,0,87,501,239,1122,ka.po,,ka,,georgian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ja.po,231,1086,443,0,0,0,0,231,1086,ja.po,,ja,,japanese,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/it.po,231,1086,1208,0,0,0,0,231,1086,it.po,,it,,italian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/is.po,17,33,43,8,27,5,13,30,73,is.po,,is,,icelandic,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/id.po,231,1086,1113,0,0,0,0,231,1086,id.po,,id,,indonesian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hu.po,231,1086,984,0,0,0,0,231,1086,hu.po,,hu,,hungarian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hr.po,22,65,80,4,10,215,1049,241,1124,hr.po,,hr,,croatian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hi.po,231,1086,1234,0,0,0,0,231,1086,hi.po,,hi,,hindi,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/he.po,230,1084,1094,0,0,0,0,230,1084,he.po,,he,,hebrew,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gu.po,231,1086,1133,0,0,0,0,231,1086,gu.po,,gu,,gujarati,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gl.po,231,1086,1330,0,0,0,0,231,1086,gl.po,,gl,,galician,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gd.po,231,1086,1331,0,0,0,0,231,1086,gd.po,,gd,,scottish gaelic,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ga.po,143,343,404,0,0,98,781,241,1124,ga.po,,ga,,irish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fy.po,230,1082,1120,0,0,0,0,230,1082,fy.po,,fy,,western frisian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fr.po,230,1084,1336,0,0,0,0,230,1084,fr.po,,fr,,french,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fi.po,230,1084,846,0,0,0,0,230,1084,fi.po,,fi,,finnish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fa.po,230,1084,1127,0,0,0,0,230,1084,fa.po,,fa,,persian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/eu.po,229,1066,935,1,18,0,0,230,1084,eu.po,,eu,,basque,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/et.po,230,1084,868,0,0,0,0,230,1084,et.po,,et,,estonian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/es.po,231,1086,1356,0,0,0,0,231,1086,es.po,,es,,spanish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/eo.po,153,410,403,0,0,78,676,231,1086,eo.po,,eo,,esperanto,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,230,1084,1084,0,0,0,0,230,1084,en_gb.po,,en,gb,english,,united kingdom

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en_ca.po,33,88,88,0,0,0,0,33,88,en_ca.po,,en,ca,english,,canada

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en@shaw.po,195,893,892,46,231,0,0,241,1124,en@shaw.po,shaw,en,,english,shavian,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/el.po,231,1086,1216,0,0,0,0,231,1086,el.po,,el,,greek,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/dz.po,241,1124,745,0,0,0,0,241,1124,dz.po,,dz,,dzongkha,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/de.po,231,1086,1023,0,0,0,0,231,1086,de.po,,de,,german,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/da.po,231,1086,1023,0,0,0,0,231,1086,da.po,,da,,danish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/cy.po,33,88,104,0,0,0,0,33,88,cy.po,,cy,,welsh,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/cs.po,231,1086,1037,0,0,0,0,231,1086,cs.po,,cs,,czech,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/crh.po,230,1084,959,0,0,0,0,230,1084,crh.po,,crh,,crimean turkish,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,229,1066,1341,1,18,0,0,230,1084,ca@valencia.po,valencia,ca,,catalan,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ca.po,229,1066,1343,2,20,0,0,231,1086,ca.po,,ca,,catalan,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bs.po,230,1068,1148,1,18,0,0,231,1086,bs.po,,bs,,bosnian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/br.po,98,240,257,2,8,141,876,241,1124,br.po,,br,,breton,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,230,1068,1127,1,18,0,0,231,1086,bn_in.po,,bn,in,bangla,,india

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bn.po,240,1106,1180,1,18,0,0,241,1124,bn.po,,bn,,bangla,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bg.po,230,1084,1263,0,0,0,0,230,1084,bg.po,,bg,,bulgarian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/be@latin.po,241,1124,1022,0,0,0,0,241,1124,be@latin.po,latin,be,,belarusian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/be.po,230,1084,1019,0,0,0,0,230,1084,be.po,,be,,belarusian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/az.po,21,47,50,7,21,2,5,30,73,az.po,,az,,azerbaijani,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ast.po,241,1124,1303,0,0,0,0,241,1124,ast.po,,ast,,asturian,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/as.po,230,1068,1055,1,18,0,0,231,1086,as.po,,as,,assamese,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ar.po,241,1124,1093,0,0,0,0,241,1124,ar.po,,ar,,arabic,,

- libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/am.po,11,26,35,13,33,6,14,30,73,am.po,,am,,amharic,,

- lrzsz-0.12.20-47.fc30.src.rpm.stats.csv,po/de.po,128,709,711,2,404,5,10,135,1123,de.po,,de,,german,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bg.po,53,145,166,36,89,77,521,166,755,bg.po,,bg,,bulgarian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/eu.po,166,755,626,0,0,0,0,166,755,eu.po,,eu,,basque,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/uk.po,91,208,216,0,0,75,547,166,755,uk.po,,uk,,ukrainian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pt.po,166,755,865,0,0,0,0,166,755,pt.po,,pt,,portuguese,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/te.po,102,215,213,0,0,64,540,166,755,te.po,,te,,telugu,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/el.po,166,755,843,0,0,0,0,166,755,el.po,,el,,greek,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,26,97,97,29,78,111,580,166,755,en_gb.po,,en,gb,english,,united kingdom

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/hr.po,121,422,420,0,0,45,333,166,755,hr.po,,hr,,croatian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/af.po,11,28,29,4,9,151,718,166,755,af.po,,af,,afrikaans,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ca.po,166,755,910,0,0,0,0,166,755,ca.po,,ca,,catalan,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sv.po,166,755,735,0,0,0,0,166,755,sv.po,,sv,,swedish,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fa.po,12,29,29,4,9,150,717,166,755,fa.po,,fa,,persian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,166,755,926,0,0,0,0,166,755,pt_br.po,,pt,br,portuguese,,brazil

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/et.po,166,755,599,0,0,0,0,166,755,et.po,,et,,estonian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/is.po,135,343,343,0,0,31,412,166,755,is.po,,is,,icelandic,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ro.po,26,97,91,29,78,111,580,166,755,ro.po,,ro,,romanian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nb.po,12,29,27,4,9,150,717,166,755,nb.po,,nb,,norwegian bokmål,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ja.po,166,755,251,0,0,0,0,166,755,ja.po,,ja,,japanese,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/be.po,26,97,87,29,78,111,580,166,755,be.po,,be,,belarusian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sl.po,47,131,126,11,22,144,659,202,812,sl.po,,sl,,slovenian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/am.po,3,5,6,3,5,160,745,166,755,am.po,,am,,amharic,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/de.po,46,114,115,15,38,105,603,166,755,de.po,,de,,german,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/eo.po,12,29,28,4,9,150,717,166,755,eo.po,,eo,,esperanto,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sr.po,166,755,742,0,0,0,0,166,755,sr.po,,sr,,serbian,,

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

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ast.po,12,29,27,4,9,150,717,166,755,ast.po,,ast,,asturian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ko.po,166,755,660,0,0,0,0,166,755,ko.po,,ko,,korean,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,166,755,166,755,th.po,,th,,thai,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ar.po,122,490,461,12,84,32,181,166,755,ar.po,,ar,,arabic,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,149,680,241,14,40,3,35,166,755,zh_tw.po,,zh,tw,chinese,,taiwan

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/lt.po,166,755,736,0,0,0,0,166,755,lt.po,,lt,,lithuanian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ms.po,12,29,25,4,9,150,717,166,755,ms.po,,ms,,malay,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ru.po,166,755,738,0,0,0,0,166,755,ru.po,,ru,,russian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fi.po,105,241,192,11,40,50,474,166,755,fi.po,,fi,,finnish,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nl.po,166,755,758,0,0,0,0,166,755,nl.po,,nl,,dutch,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/hu.po,59,106,92,0,0,107,649,166,755,hu.po,,hu,,hungarian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/vi.po,26,97,152,29,78,111,580,166,755,vi.po,,vi,,vietnamese,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/si.po,12,29,33,4,9,150,717,166,755,si.po,,si,,sinhala,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nn.po,12,29,31,4,9,150,717,166,755,nn.po,,nn,,norwegian nynorsk,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sk.po,159,713,695,0,0,7,42,166,755,sk.po,,sk,,slovak,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ur.po,12,29,33,4,9,150,717,166,755,ur.po,,ur,,urdu,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pl.po,166,755,751,0,0,0,0,166,755,pl.po,,pl,,polish,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/es.po,166,755,910,0,0,0,0,166,755,es.po,,es,,spanish,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fr.po,166,755,985,0,0,0,0,166,755,fr.po,,fr,,french,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/it.po,52,142,146,32,81,82,532,166,755,it.po,,it,,italian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ps.po,0,0,0,0,0,166,755,166,755,ps.po,,ps,,pashto,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,166,755,166,755,ml.po,,ml,,malayalam,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,28,27,5,10,150,717,166,755,bn_in.po,,bn,in,bangla,,india

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ug.po,26,97,83,29,78,111,580,166,755,ug.po,,ug,,uyghur,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fo.po,12,29,21,4,9,150,717,166,755,fo.po,,fo,,faroese,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/kk.po,121,318,320,4,24,41,413,166,755,kk.po,,kk,,kazakh,,

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

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/gl.po,166,755,917,0,0,0,0,166,755,gl.po,,gl,,galician,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,165,734,726,0,0,1,21,166,755,sr@latin.po,latin,sr,,serbian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/da.po,166,755,701,0,0,0,0,166,755,da.po,,da,,danish,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,166,755,249,0,0,0,0,166,755,zh_cn.po,,zh,cn,chinese,,china

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/id.po,111,298,315,10,37,45,420,166,755,id.po,,id,,indonesian,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bn.po,12,29,31,4,9,150,717,166,755,bn.po,,bn,,bangla,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/tr.po,166,755,700,0,0,0,0,166,755,tr.po,,tr,,turkish,,

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

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/cs.po,166,755,732,0,0,0,0,166,755,cs.po,,cs,,czech,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pa.po,12,29,29,4,9,150,717,166,755,pa.po,,pa,,punjabi,,

- lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/he.po,124,328,343,6,17,36,410,166,755,he.po,,he,,hebrew,,

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

- m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/ja.po,5,107,23,0,0,55,1283,60,1390,ja.po,,ja,,japanese,,

- m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/eo.po,5,44,83,0,0,55,1346,60,1390,eo.po,,eo,,esperanto,,

- m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/de.po,54,1120,1080,2,42,4,228,60,1390,de.po,,de,,german,,

- m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/vi.po,3,130,208,3,119,54,1141,60,1390,vi.po,,vi,,vietnamese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/it.po,42,163,185,7,40,0,0,49,203,it.po,,it,,italian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/nl.po,42,163,175,7,40,0,0,49,203,nl.po,,nl,,dutch,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/da.po,42,163,160,7,40,0,0,49,203,da.po,,da,,danish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/cs.po,42,163,168,7,40,0,0,49,203,cs.po,,cs,,czech,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ru.po,42,163,160,7,40,0,0,49,203,ru.po,,ru,,russian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/uk.po,42,163,149,7,40,0,0,49,203,uk.po,,uk,,ukrainian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ca.po,15,66,85,26,114,8,23,49,203,ca.po,,ca,,catalan,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/zh_tw.po,3,6,3,25,123,21,74,49,203,zh_tw.po,,zh,tw,chinese,,taiwan

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pl.po,42,163,162,7,40,0,0,49,203,pl.po,,pl,,polish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/fi.po,42,163,140,7,40,0,0,49,203,fi.po,,fi,,finnish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/be.po,4,13,12,23,113,22,77,49,203,be.po,,be,,belarusian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pt_br.po,42,163,191,7,40,0,0,49,203,pt_br.po,,pt,br,portuguese,,brazil

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/af.po,4,13,12,23,113,22,77,49,203,af.po,,af,,afrikaans,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/eo.po,42,163,154,7,40,0,0,49,203,eo.po,,eo,,esperanto,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/fr.po,42,163,195,7,40,0,0,49,203,fr.po,,fr,,french,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ga.po,40,153,161,9,50,0,0,49,203,ga.po,,ga,,irish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ms.po,4,13,15,23,113,22,77,49,203,ms.po,,ms,,malay,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/bg.po,5,19,21,23,110,21,74,49,203,bg.po,,bg,,bulgarian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/eu.po,3,6,5,24,120,22,77,49,203,eu.po,,eu,,basque,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sk.po,2,5,5,23,103,24,95,49,203,sk.po,,sk,,slovak,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/nb.po,2,5,5,24,120,23,78,49,203,nb.po,,nb,,norwegian bokmål,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/tr.po,4,13,11,24,116,21,74,49,203,tr.po,,tr,,turkish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sr.po,42,163,165,7,40,0,0,49,203,sr.po,,sr,,serbian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pt.po,42,163,186,7,40,0,0,49,203,pt.po,,pt,,portuguese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ko.po,2,5,7,24,120,23,78,49,203,ko.po,,ko,,korean,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/hu.po,42,163,160,7,40,0,0,49,203,hu.po,,hu,,hungarian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/es.po,42,163,198,7,40,0,0,49,203,es.po,,es,,spanish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ro.po,14,57,61,23,101,12,45,49,203,ro.po,,ro,,romanian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sv.po,42,163,158,7,40,0,0,49,203,sv.po,,sv,,swedish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ja.po,42,163,70,7,40,0,0,49,203,ja.po,,ja,,japanese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/de.po,42,163,166,7,40,0,0,49,203,de.po,,de,,german,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/gl.po,34,118,152,7,40,8,45,49,203,gl.po,,gl,,galician,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/et.po,35,150,127,6,37,8,16,49,203,et.po,,et,,estonian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/vi.po,42,163,265,7,40,0,0,49,203,vi.po,,vi,,vietnamese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/rw.po,2,2,2,38,175,9,26,49,203,rw.po,,rw,,kinyarwanda,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sl.po,42,163,164,7,40,0,0,49,203,sl.po,,sl,,slovenian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/el.po,3,6,7,22,102,24,95,49,203,el.po,,el,,greek,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/zh_cn.po,41,160,63,8,43,0,0,49,203,zh_cn.po,,zh,cn,chinese,,china

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/nl.po,185,4827,4619,61,1176,130,2347,376,8350,nl.po,,nl,,dutch,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/da.po,278,3985,3576,0,0,98,4365,376,8350,da.po,,da,,danish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/ru.po,376,8350,7382,0,0,0,0,376,8350,ru.po,,ru,,russian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/id.po,347,7617,7100,28,697,1,36,376,8350,id.po,,id,,indonesian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/pl.po,374,8256,7683,2,94,0,0,376,8350,pl.po,,pl,,polish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/pt_br.po,376,8350,9051,0,0,0,0,376,8350,pt_br.po,,pt,br,portuguese,,brazil

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/fr.po,374,8256,9537,2,94,0,0,376,8350,fr.po,,fr,,french,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/tr.po,374,8256,6588,2,94,0,0,376,8350,tr.po,,tr,,turkish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/sr.po,374,8256,7473,2,94,0,0,376,8350,sr.po,,sr,,serbian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/es.po,363,7626,8143,6,349,7,375,376,8350,es.po,,es,,spanish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/sv.po,376,8350,7667,0,0,0,0,376,8350,sv.po,,sv,,swedish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/ja.po,254,5069,1201,39,881,83,2400,376,8350,ja.po,,ja,,japanese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/de.po,376,8350,7764,0,0,0,0,376,8350,de.po,,de,,german,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/zh_cn.po,376,8350,1940,0,0,0,0,376,8350,zh_cn.po,,zh,cn,chinese,,china

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/it.po,85,452,540,14,109,101,485,200,1046,it.po,,it,,italian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/nl.po,192,965,960,8,81,0,0,200,1046,nl.po,,nl,,dutch,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/da.po,200,1046,1026,0,0,0,0,200,1046,da.po,,da,,danish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/cs.po,200,1046,1182,0,0,0,0,200,1046,cs.po,,cs,,czech,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ru.po,200,1046,1120,0,0,0,0,200,1046,ru.po,,ru,,russian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/id.po,200,1046,1145,0,0,0,0,200,1046,id.po,,id,,indonesian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ca.po,200,1046,1426,0,0,0,0,200,1046,ca.po,,ca,,catalan,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/zh_tw.po,200,1046,483,0,0,0,0,200,1046,zh_tw.po,,zh,tw,chinese,,taiwan

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/pl.po,200,1046,1156,0,0,0,0,200,1046,pl.po,,pl,,polish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/fi.po,72,290,250,13,86,115,670,200,1046,fi.po,,fi,,finnish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/pt_br.po,200,1046,1298,0,0,0,0,200,1046,pt_br.po,,pt,br,portuguese,,brazil

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/eo.po,200,1046,1103,0,0,0,0,200,1046,eo.po,,eo,,esperanto,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/fr.po,200,1046,1359,0,0,0,0,200,1046,fr.po,,fr,,french,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/tr.po,200,1046,976,0,0,0,0,200,1046,tr.po,,tr,,turkish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/sr.po,200,1046,1180,0,0,0,0,200,1046,sr.po,,sr,,serbian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/es.po,200,1046,1309,0,0,0,0,200,1046,es.po,,es,,spanish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ro.po,80,425,539,19,136,101,485,200,1046,ro.po,,ro,,romanian,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/sv.po,200,1046,1023,0,0,0,0,200,1046,sv.po,,sv,,swedish,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ja.po,200,1046,558,0,0,0,0,200,1046,ja.po,,ja,,japanese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/de.po,200,1046,1094,0,0,0,0,200,1046,de.po,,de,,german,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/vi.po,200,1046,1688,0,0,0,0,200,1046,vi.po,,vi,,vietnamese,,

- man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/zh_cn.po,200,1046,484,0,0,0,0,200,1046,zh_cn.po,,zh,cn,chinese,,china

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/sv.po,8,43,38,0,0,47,438,55,481,sv.po,,sv,,swedish,,

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/fr.po,8,43,61,0,0,47,438,55,481,fr.po,,fr,,french,,

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/nl.po,8,43,49,0,0,47,438,55,481,nl.po,,nl,,dutch,,

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/es.po,29,212,278,0,0,26,269,55,481,es.po,,es,,spanish,,

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/de.po,16,122,105,0,0,39,359,55,481,de.po,,de,,german,,

- mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/ca.po,29,212,276,0,0,26,269,55,481,ca.po,,ca,,catalan,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/nl.po,50,406,415,1,175,0,0,51,581,nl.po,,nl,,dutch,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/et.po,44,270,252,0,0,7,311,51,581,et.po,,et,,estonian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ms.po,31,165,157,0,0,20,416,51,581,ms.po,,ms,,malay,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/cs.po,51,581,568,0,0,0,0,51,581,cs.po,,cs,,czech,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sv.po,50,406,402,1,175,0,0,51,581,sv.po,,sv,,swedish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/tr.po,7,22,20,0,0,44,559,51,581,tr.po,,tr,,turkish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ru.po,50,406,413,1,175,0,0,51,581,ru.po,,ru,,russian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sr@latin.po,45,367,384,1,175,5,39,51,581,sr@latin.po,latin,sr,,serbian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pt.po,50,406,486,1,175,0,0,51,581,pt.po,,pt,,portuguese,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ta.po,4,156,156,1,175,46,250,51,581,ta.po,,ta,,tamil,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ast.po,49,397,464,1,175,1,9,51,581,ast.po,,ast,,asturian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/hu.po,50,406,373,1,175,0,0,51,581,hu.po,,hu,,hungarian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/es.po,50,406,490,1,175,0,0,51,581,es.po,,es,,spanish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fr.po,50,406,519,1,175,0,0,51,581,fr.po,,fr,,french,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ar.po,49,397,458,1,175,1,9,51,581,ar.po,,ar,,arabic,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ca.po,50,406,534,1,175,0,0,51,581,ca.po,,ca,,catalan,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/zh_tw.po,50,406,153,1,175,0,0,51,581,zh_tw.po,,zh,tw,chinese,,taiwan

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pt_br.po,50,406,494,1,175,0,0,51,581,pt_br.po,,pt,br,portuguese,,brazil

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ko.po,50,406,377,1,175,0,0,51,581,ko.po,,ko,,korean,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/da.po,50,406,390,1,175,0,0,51,581,da.po,,da,,danish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/el.po,47,286,330,0,0,4,295,51,581,el.po,,el,,greek,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/bs.po,47,380,399,1,175,3,26,51,581,bs.po,,bs,,bosnian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fi.po,34,174,150,0,0,17,407,51,581,fi.po,,fi,,finnish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fa.po,50,406,447,1,175,0,0,51,581,fa.po,,fa,,persian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/zh_cn.po,50,406,194,1,175,0,0,51,581,zh_cn.po,,zh,cn,chinese,,china

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/lv.po,50,406,385,1,175,0,0,51,581,lv.po,,lv,,latvian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/gu.po,24,140,147,0,0,27,441,51,581,gu.po,,gu,,gujarati,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/de.po,50,406,372,1,175,0,0,51,581,de.po,,de,,german,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/bg.po,50,406,455,1,175,0,0,51,581,bg.po,,bg,,bulgarian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sr.po,45,367,384,1,175,5,39,51,581,sr.po,,sr,,serbian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/en_gb.po,49,397,397,1,175,1,9,51,581,en_gb.po,,en,gb,english,,united kingdom

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pl.po,50,406,426,1,175,0,0,51,581,pl.po,,pl,,polish,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/as.po,50,406,413,1,175,0,0,51,581,as.po,,as,,assamese,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/uk.po,50,406,417,1,175,0,0,51,581,uk.po,,uk,,ukrainian,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/nds.po,3,10,10,0,0,48,571,51,581,nds.po,,nds,,low german,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ja.po,50,406,202,1,175,0,0,51,581,ja.po,,ja,,japanese,,

- mlocate-0.26-23.fc30.src.rpm.stats.csv,po/it.po,50,406,451,1,175,0,0,51,581,it.po,,it,,italian,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/cs.po,17,134,166,0,0,0,0,17,134,cs.po,,cs,,czech,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/de.po,13,105,106,2,15,2,14,17,134,de.po,,de,,german,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,17,134,178,0,0,0,0,17,134,pt_br.po,,pt,br,portuguese,,brazil

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/sk.po,17,134,132,0,0,0,0,17,134,sk.po,,sk,,slovak,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/hu.po,17,134,157,0,0,0,0,17,134,hu.po,,hu,,hungarian,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/uk.po,17,134,147,0,0,0,0,17,134,uk.po,,uk,,ukrainian,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/tr.po,17,134,137,0,0,0,0,17,134,tr.po,,tr,,turkish,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/sv.po,17,134,135,0,0,0,0,17,134,sv.po,,sv,,swedish,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/pl.po,17,134,124,0,0,0,0,17,134,pl.po,,pl,,polish,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/it.po,17,134,182,0,0,0,0,17,134,it.po,,it,,italian,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/id.po,17,134,132,0,0,0,0,17,134,id.po,,id,,indonesian,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/fr.po,17,134,177,0,0,0,0,17,134,fr.po,,fr,,french,,

- modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/fur.po,17,134,204,0,0,0,0,17,134,fur.po,,fur,,friulian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,30,114,113,0,0,0,0,30,114,he.po,,he,,hebrew,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,34,131,121,0,0,0,0,34,131,nl.po,,nl,,dutch,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,30,114,123,0,0,0,0,30,114,fa.po,,fa,,persian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,30,114,109,0,0,0,0,30,114,ug.po,,ug,,uyghur,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,30,114,102,0,0,0,0,30,114,ne.po,,ne,,nepali,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,30,114,39,0,0,0,0,30,114,ja.po,,ja,,japanese,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,94,715,740,0,0,0,0,94,715,bn_in.po,,bn,in,bangla,,india

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,30,114,105,0,0,0,0,30,114,eo.po,,eo,,esperanto,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,30,114,140,0,0,0,0,30,114,vi.po,,vi,,vietnamese,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,30,114,129,0,0,0,0,30,114,ro.po,,ro,,romanian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,30,114,167,0,0,0,0,30,114,ca.po,,ca,,catalan,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,94,715,720,0,0,0,0,94,715,or.po,,or,,odia,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,14,29,26,0,0,16,85,30,114,is.po,,is,,icelandic,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,30,114,114,0,0,0,0,30,114,en_gb.po,,en,gb,english,,united kingdom

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,34,131,121,0,0,0,0,34,131,hu.po,,hu,,hungarian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,30,114,104,0,0,0,0,30,114,lv.po,,lv,,latvian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,30,114,98,0,0,0,0,30,114,de.po,,de,,german,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,34,131,170,0,0,0,0,34,131,pt_br.po,,pt,br,portuguese,,brazil

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,97,730,752,0,0,0,0,97,730,bn.po,,bn,,bangla,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,30,114,117,0,0,0,0,30,114,bs.po,,bs,,bosnian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,34,131,164,0,0,0,0,34,131,it.po,,it,,italian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,30,114,99,0,0,0,0,30,114,nb.po,,nb,,norwegian bokmål,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,30,114,161,0,0,0,0,30,114,ca@valencia.po,valencia,ca,,catalan,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,30,114,136,0,0,0,0,30,114,gd.po,,gd,,scottish gaelic,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,30,114,111,0,0,0,0,30,114,hr.po,,hr,,croatian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,30,114,155,0,0,0,0,30,114,oc.po,,oc,,occitan,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,30,114,38,0,0,0,0,30,114,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,34,131,101,0,0,0,0,34,131,sv.po,,sv,,swedish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,30,114,111,0,0,0,0,30,114,te.po,,te,,telugu,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,34,131,108,0,0,0,0,34,131,da.po,,da,,danish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,23,73,59,1,4,6,37,30,114,fi.po,,fi,,finnish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,30,114,110,0,0,0,0,30,114,sk.po,,sk,,slovak,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,83,630,630,14,100,0,0,97,730,en@shaw.po,shaw,en,,english,shavian,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,30,114,115,0,0,0,0,30,114,be.po,,be,,belarusian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,12,16,24,0,0,82,699,94,715,mai.po,,mai,,maithili,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,30,114,121,0,0,0,0,30,114,sr.po,,sr,,serbian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,30,114,98,0,0,0,0,30,114,et.po,,et,,estonian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,30,114,107,0,0,0,0,30,114,ko.po,,ko,,korean,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,,ht,,haitian creole,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,30,114,151,0,0,0,0,30,114,fur.po,,fur,,friulian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,34,131,132,0,0,0,0,34,131,pl.po,,pl,,polish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,114,36,0,0,0,0,30,114,zh_cn.po,,zh,cn,chinese,,china

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,30,114,116,0,0,0,0,30,114,kk.po,,kk,,kazakh,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,30,114,118,0,0,0,0,30,114,tg.po,,tg,,tajik,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,34,131,194,0,0,0,0,34,131,es.po,,es,,spanish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,114,117,0,0,0,0,30,114,uk.po,,uk,,ukrainian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,30,114,109,0,0,0,0,30,114,ru.po,,ru,,russian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,30,114,102,0,0,0,0,30,114,ar.po,,ar,,arabic,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,30,114,153,0,0,0,0,30,114,bg.po,,bg,,bulgarian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,30,114,38,0,0,0,0,30,114,zh_tw.po,,zh,tw,chinese,,taiwan

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,34,131,124,0,0,0,0,34,131,tr.po,,tr,,turkish,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,30,114,108,0,0,0,0,30,114,eu.po,,eu,,basque,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,30,114,113,0,0,0,0,30,114,as.po,,as,,assamese,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,94,715,569,0,0,0,0,94,715,kn.po,,kn,,kannada,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lo.po,30,114,48,0,0,0,0,30,114,lo.po,,lo,,lao,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,30,114,125,0,0,0,0,30,114,el.po,,el,,greek,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,30,114,114,0,0,0,0,30,114,pa.po,,pa,,punjabi,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,30,114,125,0,0,0,0,30,114,hi.po,,hi,,hindi,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,30,114,97,0,0,0,0,30,114,lt.po,,lt,,lithuanian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,30,114,101,0,0,0,0,30,114,gu.po,,gu,,gujarati,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,30,114,38,0,0,0,0,30,114,th.po,,th,,thai,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,30,114,167,0,0,0,0,30,114,an.po,,an,,aragonese,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,76,294,291,0,0,0,0,76,294,nn.po,,nn,,norwegian nynorsk,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,94,715,631,0,0,0,0,94,715,mr.po,,mr,,marathi,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,34,131,124,0,0,0,0,34,131,id.po,,id,,indonesian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,30,114,150,0,0,0,0,30,114,fr.po,,fr,,french,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,30,114,92,0,0,0,0,30,114,ml.po,,ml,,malayalam,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,30,114,110,0,0,0,0,30,114,sl.po,,sl,,slovenian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,30,114,171,0,0,0,0,30,114,gl.po,,gl,,galician,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,97,730,863,0,0,0,0,97,730,ast.po,,ast,,asturian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,30,114,112,0,0,0,0,30,114,ta.po,,ta,,tamil,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,34,131,131,0,0,0,0,34,131,cs.po,,cs,,czech,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,76,294,380,0,0,0,0,76,294,mk.po,,mk,,macedonian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,94,426,497,0,0,0,0,94,426,sq.po,,sq,,albanian,,

- mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,30,114,121,0,0,0,0,30,114,sr@latin.po,latin,sr,,serbian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,1171,6674,4763,36,174,7,128,1214,6976,zu.po,,zu,,zulu,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1077,5524,1480,0,0,0,0,1077,5524,zh_tw.po,,zh,tw,chinese,,taiwan

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1050,6243,1428,0,0,0,0,1050,6243,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1082,5566,1537,0,0,0,0,1082,5566,zh_cn.po,,zh,cn,chinese,,china

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,295,1434,1797,513,2994,222,1686,1030,6114,yo.po,,yo,,yoruba,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/yi.po,29,31,31,32,59,1153,6886,1214,6976,yi.po,,yi,,yiddish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,1227,6945,5811,18,111,10,154,1255,7210,xh.po,,xh,,xhosa,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,505,1435,1779,182,813,574,4957,1261,7205,wa.po,,wa,,walloon,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,1123,5606,7068,0,0,0,0,1123,5606,vi.po,,vi,,vietnamese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,1015,4687,3905,0,0,299,3457,1314,8144,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,1015,4687,3905,0,0,299,3457,1314,8144,uz.po,,uz,,uzbek,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,1114,5948,5502,0,0,0,0,1114,5948,uk.po,,uk,,ukrainian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,1076,6381,4988,0,0,0,0,1076,6381,ug.po,,ug,,uyghur,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,1123,5606,4450,0,0,0,0,1123,5606,tr.po,,tr,,turkish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,994,5001,4101,81,321,139,1654,1214,6976,tk.po,,tk,,turkmen,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,1095,5862,1986,0,0,0,0,1095,5862,th.po,,th,,thai,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,976,4685,4949,77,1667,0,0,1053,6352,tg.po,,tg,,tajik,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,1029,6107,4975,1,7,0,0,1030,6114,te.po,,te,,telugu,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,1030,6114,5024,0,0,0,0,1030,6114,ta.po,,ta,,tamil,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,1123,5606,5548,0,0,0,0,1123,5606,sv.po,,sv,,swedish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1087,5622,6307,0,0,0,0,1087,5622,sr@latin.po,latin,sr,,serbian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@ije.po,1094,6241,5750,97,524,23,211,1214,6976,sr@ije.po,ije,sr,,serbian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,1123,5606,6317,0,0,0,0,1123,5606,sr.po,,sr,,serbian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,1320,8379,9223,0,0,0,0,1320,8379,sq.po,,sq,,albanian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,1123,5606,6276,0,0,0,0,1123,5606,sl.po,,sl,,slovenian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,1087,5620,5769,0,0,0,0,1087,5620,sk.po,,sk,,slovak,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,298,887,976,347,1835,385,3392,1030,6114,si.po,,si,,sinhala,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,100,107,117,849,6436,306,669,1255,7212,rw.po,,rw,,kinyarwanda,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,1123,5606,5574,0,0,0,0,1123,5606,ru.po,,ru,,russian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,1123,5606,6518,0,0,0,0,1123,5606,ro.po,,ro,,romanian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1123,5606,6242,0,0,0,0,1123,5606,pt_br.po,,pt,br,portuguese,,brazil

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,1002,5439,5737,66,282,40,172,1108,5893,pt.po,,pt,,portuguese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,512,1166,1250,1,4,807,7209,1320,8379,ps.po,,ps,,pashto,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,1123,5606,5651,0,0,0,0,1123,5606,pl.po,,pl,,polish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,1087,5622,6386,0,0,0,0,1087,5622,pa.po,,pa,,punjabi,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,1030,6114,6397,0,0,0,0,1030,6114,or.po,,or,,odia,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,1087,5622,6463,0,0,0,0,1087,5622,oc.po,,oc,,occitan,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,704,3641,4773,412,2671,198,1832,1314,8144,nso.po,,nso,,northern sotho,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,1097,6708,6383,10,71,4,36,1111,6815,nn.po,,nn,,norwegian nynorsk,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,1123,5606,5909,0,0,0,0,1123,5606,nl.po,,nl,,dutch,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,712,2397,2361,342,2525,70,1088,1124,6010,ne.po,,ne,,nepali,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,813,2511,2359,0,0,588,6170,1401,8681,nds.po,,nds,,low german,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,1096,5161,5086,20,674,11,153,1127,5988,nb.po,,nb,,norwegian bokmål,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,288,797,572,0,0,1161,8094,1449,8891,my.po,,my,,burmese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,844,4023,3681,244,1920,33,1136,1121,7079,ms.po,,ms,,malay,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,1030,6114,5696,0,0,0,0,1030,6114,mr.po,,mr,,marathi,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,1174,6597,5791,75,465,13,144,1262,7206,mn.po,,mn,,mongolian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,784,3484,2868,236,1891,104,665,1124,6040,ml.po,,ml,,malayalam,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,1121,7079,7322,0,0,0,0,1121,7079,mk.po,,mk,,macedonian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,167,244,285,78,170,969,6562,1214,6976,mi.po,,mi,,maori,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,1048,6089,6546,96,733,16,147,1160,6969,mg.po,,mg,,malagasy,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,951,5078,5462,0,0,343,3175,1294,8253,mai.po,,mai,,maithili,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,1123,5606,5259,0,0,0,0,1123,5606,lv.po,,lv,,latvian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,1123,5606,5087,0,0,0,0,1123,5606,lt.po,,lt,,lithuanian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ln.po,996,5489,5850,0,0,0,0,996,5489,ln.po,,ln,,lingala,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/li.po,743,3450,3347,398,2903,120,852,1261,7205,li.po,,li,,limburgish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,391,999,879,74,407,590,4910,1055,6316,ky.po,,ky,,kyrgyz,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,658,2464,2638,232,1737,281,3114,1171,7315,ku.po,,ku,,kurdish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,1123,5606,4326,0,0,0,0,1123,5606,ko.po,,ko,,korean,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,1030,6114,5253,0,0,0,0,1030,6114,kn.po,,kn,,kannada,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,11,42,14,89,398,1013,6331,1113,6771,km.po,,km,,khmer,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,1123,5606,4680,0,0,0,0,1123,5606,kk.po,,kk,,kazakh,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,1226,6415,4739,8,35,88,1948,1322,8398,ka.po,,ka,,georgian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,1077,5536,1499,19,32,27,38,1123,5606,ja.po,,ja,,japanese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,1123,5606,5938,0,0,0,0,1123,5606,it.po,,it,,italian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,1077,5524,5612,0,0,0,0,1077,5524,is.po,,is,,icelandic,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/io.po,451,1283,1212,14,44,766,6127,1231,7454,io.po,,io,,ido,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ig.po,723,3745,3973,386,2655,205,1744,1314,8144,ig.po,,ig,,igbo,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,1123,5606,5494,0,0,0,0,1123,5606,id.po,,id,,indonesian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,1140,6554,5928,28,262,0,0,1168,6816,hy.po,,hy,,armenian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,1123,5606,5020,0,0,0,0,1123,5606,hu.po,,hu,,hungarian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,1077,5524,5457,0,0,0,0,1077,5524,hr.po,,hr,,croatian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,1030,6114,7276,0,0,0,0,1030,6114,hi.po,,hi,,hindi,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,1108,5893,5862,0,0,0,0,1108,5893,he.po,,he,,hebrew,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ha.po,723,3745,4634,386,2655,205,1744,1314,8144,ha.po,,ha,,hausa,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gv.po,1269,7500,9107,138,863,36,521,1443,8884,gv.po,,gv,,manx,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,1030,6114,6546,0,0,0,0,1030,6114,gu.po,,gu,,gujarati,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,1123,5606,6168,0,0,0,0,1123,5606,gl.po,,gl,,galician,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,1087,5620,8440,0,0,0,0,1087,5620,gd.po,,gd,,scottish gaelic,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,416,1130,1618,168,785,311,3255,895,5170,ga.po,,ga,,irish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,484,946,932,0,0,959,7938,1443,8884,fy.po,,fy,,western frisian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,1123,5606,6504,0,0,0,0,1123,5606,fur.po,,fur,,friulian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,1123,5606,6496,0,0,0,0,1123,5606,fr.po,,fr,,french,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,1090,4753,3992,22,694,11,159,1123,5606,fi.po,,fi,,finnish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,1114,5984,6560,0,0,0,0,1114,5984,fa.po,,fa,,persian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,1123,5606,4837,0,0,0,0,1123,5606,eu.po,,eu,,basque,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,1049,6236,4871,1,7,0,0,1050,6243,et.po,,et,,estonian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,1123,5606,6297,0,0,0,0,1123,5606,es.po,,es,,spanish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,1123,5606,5377,0,0,0,0,1123,5606,eo.po,,eo,,esperanto,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,1077,5524,5604,0,0,0,0,1077,5524,en_gb.po,,en,gb,english,,united kingdom

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,1192,7325,7330,0,0,0,0,1192,7325,en_ca.po,,en,ca,english,,canada

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,1333,7548,7548,105,1292,0,0,1438,8840,en@shaw.po,shaw,en,,english,shavian,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,1123,5606,5791,0,0,0,0,1123,5606,el.po,,el,,greek,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,1172,7054,3098,3,10,1,2,1176,7066,dz.po,,dz,,dzongkha,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,1123,5606,5721,0,0,0,0,1123,5606,de.po,,de,,german,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,1123,5606,5403,0,0,0,0,1123,5606,da.po,,da,,danish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,1162,7004,7511,1,1,0,0,1163,7005,cy.po,,cy,,welsh,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,1123,5606,5709,0,0,0,0,1123,5606,cs.po,,cs,,czech,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,1032,6170,4852,2,16,6,46,1040,6232,crh.po,,crh,,crimean turkish,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1114,5984,7063,0,0,0,0,1114,5984,ca@valencia.po,valencia,ca,,catalan,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,1123,5606,6627,0,0,0,0,1123,5606,ca.po,,ca,,catalan,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,869,5118,5012,0,0,0,0,869,5118,bs.po,,bs,,bosnian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,1417,8788,10044,1,13,0,0,1418,8801,br.po,,br,,breton,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bo.po,1031,6259,2219,115,823,46,321,1192,7403,bo.po,,bo,,tibetan,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,1030,6114,6520,0,0,0,0,1030,6114,bn_in.po,,bn,in,bangla,,india

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1121,7063,7293,7,66,0,0,1128,7129,bn.po,,bn,,bangla,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,864,5223,5540,0,0,0,0,864,5223,bg.po,,bg,,bulgarian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,1287,7522,6673,8,104,19,509,1314,8135,be@latin.po,latin,be,,belarusian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,1123,5606,5651,0,0,0,0,1123,5606,be.po,,be,,belarusian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,1214,6881,5493,40,193,8,132,1262,7206,az.po,,az,,azerbaijani,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,1121,7079,7278,0,0,0,0,1121,7079,ast.po,,ast,,asturian,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,1030,6114,6295,0,0,0,0,1030,6114,as.po,,as,,assamese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,1029,4536,5586,21,595,27,393,1077,5524,ar.po,,ar,,arabic,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,783,3679,3986,0,0,85,1400,868,5079,an.po,,an,,aragonese,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,381,909,971,190,657,690,5639,1261,7205,am.po,,am,,amharic,,

- nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,1050,4908,5323,0,0,30,636,1080,5544,af.po,,af,,afrikaans,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en_ca.po,39,173,171,0,0,0,0,39,173,en_ca.po,,en,ca,english,,canada

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pt_br.po,10,56,69,0,0,0,0,10,56,pt_br.po,,pt,br,portuguese,,brazil

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ja.po,8,45,16,0,0,0,0,8,45,ja.po,,ja,,japanese,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/af.po,6,31,37,0,0,2,14,8,45,af.po,,af,,afrikaans,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/da.po,10,56,52,0,0,0,0,10,56,da.po,,da,,danish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nl.po,8,45,41,0,0,0,0,8,45,nl.po,,nl,,dutch,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/mk.po,62,299,293,0,0,0,0,62,299,mk.po,,mk,,macedonian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/he.po,8,45,45,0,0,0,0,8,45,he.po,,he,,hebrew,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/rw.po,2,1,1,12,42,5,10,19,53,rw.po,,rw,,kinyarwanda,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sq.po,20,55,58,0,0,0,0,20,55,sq.po,,sq,,albanian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/tr.po,10,56,48,0,0,0,0,10,56,tr.po,,tr,,turkish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/mr.po,8,45,47,0,0,0,0,8,45,mr.po,,mr,,marathi,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_cn.po,10,56,15,0,0,0,0,10,56,zh_cn.po,,zh,cn,chinese,,china

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/de.po,10,56,53,0,0,0,0,10,56,de.po,,de,,german,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/be.po,10,56,58,0,0,0,0,10,56,be.po,,be,,belarusian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/it.po,10,56,67,0,0,0,0,10,56,it.po,,it,,italian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bn_in.po,8,45,46,0,0,0,0,8,45,bn_in.po,,bn,in,bangla,,india

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/te.po,8,45,38,0,0,0,0,8,45,te.po,,te,,telugu,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/vi.po,10,56,90,0,0,0,0,10,56,vi.po,,vi,,vietnamese,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/cs.po,10,56,59,0,0,0,0,10,56,cs.po,,cs,,czech,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ka.po,28,84,68,0,0,0,0,28,84,ka.po,,ka,,georgian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/br.po,33,98,112,0,0,34,218,67,316,br.po,,br,,breton,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ast.po,65,310,334,0,0,0,0,65,310,ast.po,,ast,,asturian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kk.po,10,56,50,0,0,0,0,10,56,kk.po,,kk,,kazakh,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/eo.po,10,56,49,0,0,0,0,10,56,eo.po,,eo,,esperanto,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hr.po,10,56,60,0,0,0,0,10,56,hr.po,,hr,,croatian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bg.po,8,45,59,0,0,0,0,8,45,bg.po,,bg,,bulgarian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bn.po,65,310,304,0,0,0,0,65,310,bn.po,,bn,,bangla,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kg.po,11,39,34,2,6,44,230,57,275,kg.po,,kg,,kongo,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ms.po,50,217,189,0,0,0,0,50,217,ms.po,,ms,,malay,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hi.po,8,45,62,0,0,0,0,8,45,hi.po,,hi,,hindi,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nds.po,43,152,156,0,0,22,158,65,310,nds.po,,nds,,low german,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/oc.po,10,56,77,0,0,0,0,10,56,oc.po,,oc,,occitan,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sr.po,10,56,59,0,0,0,0,10,56,sr.po,,sr,,serbian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pt.po,10,56,67,0,0,0,0,10,56,pt.po,,pt,,portuguese,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bs.po,8,45,47,0,0,0,0,8,45,bs.po,,bs,,bosnian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ko.po,10,56,47,0,0,0,0,10,56,ko.po,,ko,,korean,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ro.po,8,45,54,0,0,0,0,8,45,ro.po,,ro,,romanian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/is.po,10,56,51,0,0,0,0,10,56,is.po,,is,,icelandic,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pl.po,10,56,61,0,0,0,0,10,56,pl.po,,pl,,polish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ne.po,8,45,42,0,0,0,0,8,45,ne.po,,ne,,nepali,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/km.po,59,274,130,0,0,0,0,59,274,km.po,,km,,khmer,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/th.po,8,45,17,0,0,0,0,8,45,th.po,,th,,thai,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ga.po,8,45,56,0,0,0,0,8,45,ga.po,,ga,,irish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/be@latin.po,60,289,251,0,0,0,0,60,289,be@latin.po,latin,be,,belarusian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ta.po,8,45,40,0,0,0,0,8,45,ta.po,,ta,,tamil,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_tw.po,10,56,18,0,0,0,0,10,56,zh_tw.po,,zh,tw,chinese,,taiwan

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/lv.po,10,56,50,0,0,0,0,10,56,lv.po,,lv,,latvian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sk.po,10,56,63,0,0,0,0,10,56,sk.po,,sk,,slovak,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/or.po,8,45,46,0,0,0,0,8,45,or.po,,or,,odia,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/eu.po,10,56,55,0,0,0,0,10,56,eu.po,,eu,,basque,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ar.po,6,31,33,0,0,2,14,8,45,ar.po,,ar,,arabic,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/tg.po,8,45,52,0,0,0,0,8,45,tg.po,,tg,,tajik,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fur.po,10,56,70,0,0,0,0,10,56,fur.po,,fur,,friulian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/lt.po,10,56,49,0,0,0,0,10,56,lt.po,,lt,,lithuanian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fi.po,8,42,29,0,0,2,14,10,56,fi.po,,fi,,finnish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ca.po,10,56,80,0,0,0,0,10,56,ca.po,,ca,,catalan,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en_gb.po,8,45,45,0,0,0,0,8,45,en_gb.po,,en,gb,english,,united kingdom

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fa.po,8,45,59,0,0,0,0,8,45,fa.po,,fa,,persian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,8,45,66,0,0,0,0,8,45,ca@valencia.po,valencia,ca,,catalan,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/id.po,10,56,58,0,0,0,0,10,56,id.po,,id,,indonesian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kn.po,8,45,38,0,0,0,0,8,45,kn.po,,kn,,kannada,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en@shaw.po,64,308,305,0,0,0,0,64,308,en@shaw.po,shaw,en,,english,shavian,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ml.po,8,45,33,0,0,0,0,8,45,ml.po,,ml,,malayalam,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sr@latin.po,10,56,59,0,0,0,0,10,56,sr@latin.po,latin,sr,,serbian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gd.po,10,56,75,0,0,0,0,10,56,gd.po,,gd,,scottish gaelic,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/el.po,10,56,61,0,0,0,0,10,56,el.po,,el,,greek,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_hk.po,8,45,12,0,0,0,0,8,45,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sv.po,10,56,46,0,0,0,0,10,56,sv.po,,sv,,swedish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/uk.po,8,45,48,0,0,0,0,8,45,uk.po,,uk,,ukrainian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/et.po,8,45,37,0,0,0,0,8,45,et.po,,et,,estonian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nb.po,10,56,45,0,0,0,0,10,56,nb.po,,nb,,norwegian bokmål,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/an.po,8,45,62,0,0,0,0,8,45,an.po,,an,,aragonese,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gu.po,8,45,50,0,0,0,0,8,45,gu.po,,gu,,gujarati,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ln.po,8,45,56,0,0,0,0,8,45,ln.po,,ln,,lingala,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/es.po,10,56,76,0,0,0,0,10,56,es.po,,es,,spanish,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pa.po,8,45,54,0,0,0,0,8,45,pa.po,,pa,,punjabi,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/as.po,8,45,49,0,0,0,0,8,45,as.po,,as,,assamese,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gl.po,10,56,77,0,0,0,0,10,56,gl.po,,gl,,galician,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ug.po,7,38,32,0,0,0,0,7,38,ug.po,,ug,,uyghur,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nn.po,64,308,275,0,0,0,0,64,308,nn.po,,nn,,norwegian nynorsk,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fr.po,10,56,73,0,0,0,0,10,56,fr.po,,fr,,french,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hu.po,10,56,47,0,0,0,0,10,56,hu.po,,hu,,hungarian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sl.po,10,56,64,0,0,0,0,10,56,sl.po,,sl,,slovenian,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/dz.po,39,173,56,0,0,0,0,39,173,dz.po,,dz,,dzongkha,,

- nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ru.po,10,56,61,0,0,0,0,10,56,ru.po,,ru,,russian,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/tr.po,14,76,57,47,255,75,363,136,694,tr.po,,tr,,turkish,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/cs.po,14,76,70,51,274,71,344,136,694,cs.po,,cs,,czech,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,32,172,104,522,136,694,ru.po,,ru,,russian,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,44,249,92,445,136,694,fr.po,,fr,,french,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/de.po,14,76,82,51,274,71,344,136,694,de.po,,de,,german,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/ja.po,6,32,11,46,251,84,411,136,694,ja.po,,ja,,japanese,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/pl.po,131,662,676,2,14,3,18,136,694,pl.po,,pl,,polish,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/nn.po,14,76,72,61,317,61,301,136,694,nn.po,,nn,,norwegian nynorsk,,

- neon-0.30.2-10.fc30.src.rpm.stats.csv,po/zh_cn.po,92,476,159,20,105,24,113,136,694,zh_cn.po,,zh,cn,chinese,,china

- net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/pt_br.po,500,2225,2477,0,0,0,0,500,2225,pt_br.po,,pt,br,portuguese,,brazil

- net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/fr.po,433,1859,2044,19,88,48,278,500,2225,fr.po,,fr,,french,,

- net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/et_ee.po,532,2439,2388,0,0,2,10,534,2449,et_ee.po,,et,ee,estonian,,estonia

- net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/de.po,486,2168,2038,8,31,6,26,500,2225,de.po,,de,,german,,

- net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/cs.po,608,2928,3121,0,0,0,0,608,2928,cs.po,,cs,,czech,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1558,20550,4247,463,2974,15,266,2036,23790,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,33,177,70,331,1380,1672,22233,2036,23790,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1985,21016,7189,38,2613,13,161,2036,23790,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,133,457,1903,23333,2036,23790,wa.po,,wa,,walloon,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/vi.po,23,158,198,60,347,1953,23285,2036,23790,vi.po,,vi,,vietnamese,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/uk.po,2036,23790,23429,0,0,0,0,2036,23790,uk.po,,uk,,ukrainian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/tr.po,1050,7118,6374,355,2087,631,14585,2036,23790,tr.po,,tr,,turkish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/th.po,8,13,11,284,1092,1744,22685,2036,23790,th.po,,th,,thai,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/te.po,807,4990,4360,473,3164,756,15636,2036,23790,te.po,,te,,telugu,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ta.po,981,6525,5706,395,2395,660,14870,2036,23790,ta.po,,ta,,tamil,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sv.po,1867,19460,17115,106,2314,63,2016,2036,23790,sv.po,,sv,,swedish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,135,644,671,598,3017,1303,20129,2036,23790,sr@latin.po,latin,sr,,serbian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sr.po,135,644,671,598,3017,1303,20129,2036,23790,sr.po,,sr,,serbian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,74,258,1962,23532,2036,23790,sq.po,,sq,,albanian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sl.po,258,1278,1302,459,2186,1319,20326,2036,23790,sl.po,,sl,,slovenian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sk.po,123,584,611,272,1078,1641,22128,2036,23790,sk.po,,sk,,slovak,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,204,792,1832,22998,2036,23790,rw.po,,rw,,kinyarwanda,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ru.po,1886,22856,20510,137,682,13,252,2036,23790,ru.po,,ru,,russian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,2043,23862,26303,0,0,0,0,2043,23862,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pt.po,2,2,2,192,711,1842,23077,2036,23790,pt.po,,pt,,portuguese,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pl.po,1736,12360,12178,0,0,0,0,1736,12360,pl.po,,pl,,polish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pa.po,705,4064,4663,524,3297,807,16429,2036,23790,pa.po,,pa,,punjabi,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/or.po,703,4054,4194,526,3307,807,16429,2036,23790,or.po,,or,,odia,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/oc.po,142,474,570,300,1328,1594,21988,2036,23790,oc.po,,oc,,occitan,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/nl.po,16,106,100,28,155,1992,23529,2036,23790,nl.po,,nl,,dutch,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ne.po,2,2,4,132,495,1902,23293,2036,23790,ne.po,,ne,,nepali,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/nb.po,10,53,51,33,196,1993,23541,2036,23790,nb.po,,nb,,norwegian bokmål,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/mr.po,807,4990,4787,474,3170,755,15630,2036,23790,mr.po,,mr,,marathi,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ml.po,703,4054,3407,526,3307,807,16429,2036,23790,ml.po,,ml,,malayalam,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,3,27,2033,23763,2036,23790,mk.po,,mk,,macedonian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/lv.po,5,10,10,276,1089,1755,22691,2036,23790,lv.po,,lv,,latvian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/lt.po,560,2847,2495,502,3030,974,17913,2036,23790,lt.po,,lt,,lithuanian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ku.po,1,2,2,256,1014,1779,22774,2036,23790,ku.po,,ku,,kurdish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ko.po,1860,22794,18435,162,735,14,261,2036,23790,ko.po,,ko,,korean,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/kn.po,807,4990,4493,473,3164,756,15636,2036,23790,kn.po,,kn,,kannada,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ka.po,8,13,13,284,1092,1744,22685,2036,23790,ka.po,,ka,,georgian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ja.po,1998,21403,8178,25,2226,13,161,2036,23790,ja.po,,ja,,japanese,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/it.po,1776,21675,23174,246,1854,14,261,2036,23790,it.po,,it,,italian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/id.po,1903,19866,18755,86,2406,47,1518,2036,23790,id.po,,id,,indonesian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hu.po,333,1689,1657,580,3132,1123,18969,2036,23790,hu.po,,hu,,hungarian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hr.po,95,352,322,487,2422,1454,21016,2036,23790,hr.po,,hr,,croatian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hi.po,807,4990,5566,534,4163,695,14637,2036,23790,hi.po,,hi,,hindi,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,3,27,2033,23763,2036,23790,he.po,,he,,hebrew,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gu.po,714,4112,4394,576,4351,746,15327,2036,23790,gu.po,,gu,,gujarati,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gl.po,478,1982,2468,447,2164,1111,19644,2036,23790,gl.po,,gl,,galician,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gd.po,139,1088,1401,352,1997,1545,20705,2036,23790,gd.po,,gd,,scottish gaelic,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/fr.po,2008,23164,26154,14,365,14,261,2036,23790,fr.po,,fr,,french,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/fi.po,97,475,412,393,1835,1546,21480,2036,23790,fi.po,,fi,,finnish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/eu.po,105,462,501,402,1879,1529,21449,2036,23790,eu.po,,eu,,basque,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/et.po,27,177,136,62,347,1947,23266,2036,23790,et.po,,et,,estonian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/es.po,1834,22640,25954,188,889,14,261,2036,23790,es.po,,es,,spanish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/eo.po,209,981,894,417,1987,1451,21157,2077,24125,eo.po,,eo,,esperanto,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,252,1242,1241,554,2768,1230,19780,2036,23790,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,3,5,5,380,1612,1653,22173,2036,23790,en_ca.po,,en,ca,english,,canada

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/el.po,766,4820,5267,554,4190,716,14780,2036,23790,el.po,,el,,greek,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/dz.po,2,2,2,197,733,1837,23055,2036,23790,dz.po,,dz,,dzongkha,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/de.po,1967,22332,21773,56,1206,13,252,2036,23790,de.po,,de,,german,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/da.po,450,3777,3526,422,2112,1165,17945,2037,23834,da.po,,da,,danish,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/cs.po,410,1288,1243,405,2241,1221,20261,2036,23790,cs.po,,cs,,czech,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ca.po,1207,8416,10277,320,2290,509,13084,2036,23790,ca.po,,ca,,catalan,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,78,278,1958,23512,2036,23790,bs.po,,bs,,bosnian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,810,5011,5139,531,4142,695,14637,2036,23790,bn_in.po,,bn,in,bangla,,india

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bg.po,141,670,842,500,2500,1395,20620,2036,23790,bg.po,,bg,,bulgarian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,0,0,0,5,29,2031,23761,2036,23790,be@latin.po,latin,be,,belarusian,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/as.po,817,5059,5128,525,4100,694,14631,2036,23790,as.po,,as,,assamese,,

- networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ar.po,2,2,2,145,545,1889,23243,2036,23790,ar.po,,ar,,arabic,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sk.po,804,3225,3289,86,594,96,1009,986,4828,sk.po,,sk,,slovak,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bs.po,542,1996,2016,184,1154,202,1253,928,4403,bs.po,,bs,,bosnian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bn_in.po,331,1081,1272,305,1617,292,1705,928,4403,bn_in.po,,bn,in,bangla,,india

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/be@latin.po,137,382,387,325,1337,466,2684,928,4403,be@latin.po,latin,be,,belarusian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fr.po,991,4844,5727,0,0,0,0,991,4844,fr.po,,fr,,french,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/oc.po,580,2082,2514,152,1003,196,1318,928,4403,oc.po,,oc,,occitan,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/km.po,538,1965,952,186,1178,204,1260,928,4403,km.po,,km,,khmer,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/de.po,981,4790,4490,0,0,3,13,984,4803,de.po,,de,,german,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/eo.po,510,1739,1680,134,1037,328,1954,972,4730,eo.po,,eo,,esperanto,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hu.po,910,4330,3988,5,27,13,46,928,4403,hu.po,,hu,,hungarian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/mk.po,333,1102,1308,275,1593,320,1708,928,4403,mk.po,,mk,,macedonian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/da.po,986,4828,4319,0,0,0,0,986,4828,da.po,,da,,danish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/he.po,497,1803,1831,194,1174,237,1426,928,4403,he.po,,he,,hebrew,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_tw.po,540,1974,921,181,1164,251,1592,972,4730,zh_tw.po,,zh,tw,chinese,,taiwan

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/es.po,960,4487,5426,0,0,17,323,977,4810,es.po,,es,,spanish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ne.po,32,70,76,227,849,669,3484,928,4403,ne.po,,ne,,nepali,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_cn.po,600,2264,1027,171,1147,201,1319,972,4730,zh_cn.po,,zh,cn,chinese,,china

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/as.po,540,1975,2165,190,1184,198,1244,928,4403,as.po,,as,,assamese,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/et.po,488,1783,1506,195,1177,245,1443,928,4403,et.po,,et,,estonian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fi.po,568,1914,1485,172,1163,188,1326,928,4403,fi.po,,fi,,finnish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sr@latin.po,972,4730,4709,0,0,0,0,972,4730,sr@latin.po,latin,sr,,serbian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/th.po,377,1305,660,244,1464,307,1634,928,4403,th.po,,th,,thai,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/crh.po,444,1593,1526,197,1189,287,1621,928,4403,crh.po,,crh,,crimean turkish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/vi.po,541,1981,2558,186,1174,201,1248,928,4403,vi.po,,vi,,vietnamese,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ml.po,491,1792,1568,193,1172,244,1439,928,4403,ml.po,,ml,,malayalam,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ro.po,525,2292,2593,96,474,147,656,768,3422,ro.po,,ro,,romanian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ast.po,326,1087,1286,277,1587,325,1729,928,4403,ast.po,,ast,,asturian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ca.po,978,4803,6020,0,0,0,0,978,4803,ca.po,,ca,,catalan,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ar.po,278,892,916,269,1392,381,2119,928,4403,ar.po,,ar,,arabic,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ms.po,333,1102,1085,273,1586,322,1715,928,4403,ms.po,,ms,,malay,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,539,1974,2582,186,1175,203,1254,928,4403,ca@valencia.po,valencia,ca,,catalan,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ku.po,135,272,293,191,745,602,3386,928,4403,ku.po,,ku,,kurdish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ug.po,479,1711,1640,200,1194,249,1498,928,4403,ug.po,,ug,,uyghur,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nl.po,972,4730,4644,0,0,0,0,972,4730,nl.po,,nl,,dutch,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/eu.po,541,1981,1860,187,1174,200,1248,928,4403,eu.po,,eu,,basque,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hi.po,486,1760,2125,198,1188,244,1455,928,4403,hi.po,,hi,,hindi,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nn.po,366,1210,1160,250,1509,312,1684,928,4403,nn.po,,nn,,norwegian nynorsk,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sv.po,985,4814,4337,0,0,0,0,985,4814,sv.po,,sv,,swedish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/id.po,984,4803,4662,0,0,0,0,984,4803,id.po,,id,,indonesian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/mr.po,369,1190,1294,267,1566,292,1647,928,4403,mr.po,,mr,,marathi,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pa.po,872,3588,3999,0,0,77,916,949,4504,pa.po,,pa,,punjabi,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gd.po,780,3365,4473,30,128,118,910,928,4403,gd.po,,gd,,scottish gaelic,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/or.po,331,1081,1224,305,1617,292,1705,928,4403,or.po,,or,,odia,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/lv.po,972,4730,4300,0,0,0,0,972,4730,lv.po,,lv,,latvian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ta.po,395,1281,1219,251,1502,282,1620,928,4403,ta.po,,ta,,tamil,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sq.po,1,2,3,68,232,859,4169,928,4403,sq.po,,sq,,albanian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/el.po,540,1975,2126,191,1186,197,1242,928,4403,el.po,,el,,greek,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/tr.po,981,4720,4207,0,0,4,94,985,4814,tr.po,,tr,,turkish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/lt.po,991,4844,4337,0,0,0,0,991,4844,lt.po,,lt,,lithuanian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ja.po,969,4707,1931,2,14,1,9,972,4730,ja.po,,ja,,japanese,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/kk.po,749,2641,2450,0,0,235,2162,984,4803,kk.po,,kk,,kazakh,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/tg.po,307,685,741,388,2358,233,1360,928,4403,tg.po,,tg,,tajik,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/cs.po,986,4828,4633,0,0,0,0,986,4828,cs.po,,cs,,czech,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/en_ca.po,24,56,56,197,748,707,3599,928,4403,en_ca.po,,en,ca,english,,canada

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,95,375,833,4028,928,4403,rw.po,,rw,,kinyarwanda,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/it.po,984,4803,5162,0,0,0,0,984,4803,it.po,,it,,italian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ru.po,897,3821,3493,0,0,87,982,984,4803,ru.po,,ru,,russian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nb.po,530,1912,1828,189,1179,209,1312,928,4403,nb.po,,nb,,norwegian bokmål,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ur.po,241,813,1104,300,1528,387,2062,928,4403,ur.po,,ur,,urdu,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pl.po,991,4844,4526,0,0,0,0,991,4844,pl.po,,pl,,polish,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/af.po,155,445,379,187,880,586,3078,928,4403,af.po,,af,,afrikaans,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pt.po,629,2353,2677,171,1131,128,919,928,4403,pt.po,,pt,,portuguese,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/dz.po,32,70,40,227,849,669,3484,928,4403,dz.po,,dz,,dzongkha,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/en_gb.po,485,1755,1755,203,1202,240,1446,928,4403,en_gb.po,,en,gb,english,,united kingdom

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/uk.po,364,1197,1174,252,1511,312,1695,928,4403,uk.po,,uk,,ukrainian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_hk.po,543,1978,925,185,1177,200,1248,928,4403,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/be.po,482,1750,1625,196,1187,250,1466,928,4403,be.po,,be,,belarusian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/is.po,816,3203,3155,23,145,133,1382,972,4730,is.po,,is,,icelandic,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gl.po,949,4504,5401,0,0,1,3,950,4507,gl.po,,gl,,galician,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ko.po,538,1972,1735,181,1161,253,1597,972,4730,ko.po,,ko,,korean,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sr.po,972,4730,4709,0,0,0,0,972,4730,sr.po,,sr,,serbian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/wa.po,1,2,2,72,251,855,4150,928,4403,wa.po,,wa,,walloon,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sl.po,545,2002,2012,181,1148,202,1253,928,4403,sl.po,,sl,,slovenian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hr.po,985,4814,4588,0,0,0,0,985,4814,hr.po,,hr,,croatian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gu.po,499,1634,1899,196,1267,233,1502,928,4403,gu.po,,gu,,gujarati,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/kn.po,331,1081,1038,305,1617,292,1705,928,4403,kn.po,,kn,,kannada,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/an.po,313,915,1106,298,1787,317,1701,928,4403,an.po,,an,,aragonese,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pt_br.po,991,4844,5606,0,0,0,0,991,4844,pt_br.po,,pt,br,portuguese,,brazil

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fa.po,377,1305,1606,244,1457,307,1641,928,4403,fa.po,,fa,,persian,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/te.po,416,1414,1336,233,1419,279,1570,928,4403,te.po,,te,,telugu,,

- network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bg.po,540,1975,2323,185,1174,203,1254,928,4403,bg.po,,bg,,bulgarian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bg.po,16,54,59,2,5,578,3182,596,3241,bg.po,,bg,,bulgarian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_cn.po,112,468,245,18,81,466,2692,596,3241,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_tw.po,23,86,44,2,11,571,3144,596,3241,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/kn.po,9,34,36,2,5,585,3202,596,3241,kn.po,,kn,,kannada,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/or.po,16,54,71,2,5,578,3182,596,3241,or.po,,or,,odia,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fi.po,114,385,335,24,149,809,4872,947,5406,fi.po,,fi,,finnish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/es.po,929,5286,6666,0,0,18,120,947,5406,es.po,,es,,spanish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pa.po,122,463,530,31,156,443,2622,596,3241,pa.po,,pa,,punjabi,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fa.po,15,51,62,2,5,579,3185,596,3241,fa.po,,fa,,persian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ar.po,10,48,51,0,0,539,3016,549,3064,ar.po,,ar,,arabic,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ro.po,16,54,54,2,5,578,3182,596,3241,ro.po,,ro,,romanian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,34,38,5,11,582,3196,596,3241,ca@valencia.po,valencia,ca,,catalan,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ca.po,936,5323,6936,0,0,11,83,947,5406,ca.po,,ca,,catalan,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/uk.po,81,305,336,17,102,498,2834,596,3241,uk.po,,uk,,ukrainian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pl.po,969,5555,6112,0,0,0,0,969,5555,pl.po,,pl,,polish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/tg.po,6,10,10,0,0,543,3054,549,3064,tg.po,,tg,,tajik,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/vi.po,31,134,191,2,5,563,3102,596,3241,vi.po,,vi,,vietnamese,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/en_gb.po,468,2531,2531,21,105,447,2690,936,5326,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/mr.po,9,34,33,2,5,585,3202,596,3241,mr.po,,mr,,marathi,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ta.po,9,34,33,2,5,585,3202,596,3241,ta.po,,ta,,tamil,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/lv.po,32,139,133,2,5,562,3097,596,3241,lv.po,,lv,,latvian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sv.po,910,5159,4870,0,0,37,247,947,5406,sv.po,,sv,,swedish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pt.po,883,4982,5697,0,0,64,424,947,5406,pt.po,,pt,,portuguese,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/gl.po,156,780,1018,21,127,419,2334,596,3241,gl.po,,gl,,galician,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bs.po,857,4812,4857,0,0,90,594,947,5406,bs.po,,bs,,bosnian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/tr.po,726,4047,3875,0,0,221,1359,947,5406,tr.po,,tr,,turkish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/de.po,964,5524,5487,2,14,3,17,969,5555,de.po,,de,,german,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_hk.po,16,54,34,2,5,578,3182,596,3241,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/da.po,32,139,125,2,5,562,3097,596,3241,da.po,,da,,danish,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/te.po,9,34,34,2,5,585,3202,596,3241,te.po,,te,,telugu,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/lt.po,947,5406,5012,0,0,0,0,947,5406,lt.po,,lt,,lithuanian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pt_br.po,929,5286,6182,0,0,18,120,947,5406,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sl.po,514,2771,3118,20,94,402,2461,936,5326,sl.po,,sl,,slovenian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/et.po,32,139,133,2,5,562,3097,596,3241,et.po,,et,,estonian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sr.po,947,5406,5964,0,0,0,0,947,5406,sr.po,,sr,,serbian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ko.po,16,54,49,2,5,578,3182,596,3241,ko.po,,ko,,korean,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bn_in.po,9,34,35,2,5,585,3202,596,3241,bn_in.po,,bn,in,bangla,,india

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/it.po,93,346,400,391,1798,390,2780,874,4924,it.po,,it,,italian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/nl.po,441,2398,2481,24,123,471,2805,936,5326,nl.po,,nl,,dutch,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/as.po,16,54,68,2,5,578,3182,596,3241,as.po,,as,,assamese,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/he.po,16,54,64,2,5,578,3182,596,3241,he.po,,he,,hebrew,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sr@latin.po,947,5406,5964,0,0,0,0,947,5406,sr@latin.po,latin,sr,,serbian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/eu.po,547,2935,3044,149,894,240,1497,936,5326,eu.po,,eu,,basque,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fr.po,58,213,247,9,44,529,2984,596,3241,fr.po,,fr,,french,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/cs.po,969,5555,5702,0,0,0,0,969,5555,cs.po,,cs,,czech,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/nb.po,35,128,124,6,28,555,3085,596,3241,nb.po,,nb,,norwegian bokmål,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ru.po,32,139,129,2,5,562,3097,596,3241,ru.po,,ru,,russian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ug.po,427,2314,2171,20,104,489,2908,936,5326,ug.po,,ug,,uyghur,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/id.po,925,5277,5354,0,0,22,129,947,5406,id.po,,id,,indonesian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/hu.po,969,5555,5922,0,0,0,0,969,5555,hu.po,,hu,,hungarian,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/gu.po,16,54,66,2,5,578,3182,596,3241,gu.po,,gu,,gujarati,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/eo.po,6,15,14,0,0,590,3226,596,3241,eo.po,,eo,,esperanto,,

- networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/el.po,540,2895,3194,13,75,383,2356,936,5326,el.po,,el,,greek,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sk.po,5,14,14,26,60,138,975,169,1049,sk.po,,sk,,slovak,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/bs.po,169,1049,1020,0,0,0,0,169,1049,bs.po,,bs,,bosnian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ka.po,9,30,20,33,82,127,937,169,1049,ka.po,,ka,,georgian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fr.po,161,997,1230,2,11,6,41,169,1049,fr.po,,fr,,french,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/de.po,256,1847,1773,0,0,0,0,256,1847,de.po,,de,,german,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/eo.po,30,43,41,2,6,137,1000,169,1049,eo.po,,eo,,esperanto,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/hu.po,249,1768,1634,0,0,0,0,249,1768,hu.po,,hu,,hungarian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/mk.po,9,32,42,32,78,128,939,169,1049,mk.po,,mk,,macedonian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/da.po,255,1846,1733,0,0,0,0,255,1846,da.po,,da,,danish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/he.po,29,82,87,14,31,126,936,169,1049,he.po,,he,,hebrew,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_tw.po,42,102,68,16,134,111,813,169,1049,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/es.po,246,1695,2036,3,41,7,118,256,1854,es.po,,es,,spanish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_cn.po,126,750,338,11,59,32,240,169,1049,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/as.po,48,121,137,18,151,103,777,169,1049,as.po,,as,,assamese,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/et.po,71,207,167,11,137,87,705,169,1049,et.po,,et,,estonian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fi.po,113,358,277,17,169,126,1320,256,1847,fi.po,,fi,,finnish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sr@latin.po,247,1734,1749,0,0,0,0,247,1734,sr@latin.po,latin,sr,,serbian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/th.po,10,31,21,27,72,132,946,169,1049,th.po,,th,,thai,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/vi.po,7,22,31,32,78,130,949,169,1049,vi.po,,vi,,vietnamese,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ro.po,52,147,156,21,165,96,737,169,1049,ro.po,,ro,,romanian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ca.po,256,1847,2279,0,0,0,0,256,1847,ca.po,,ca,,catalan,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ar.po,10,33,34,37,97,122,919,169,1049,ar.po,,ar,,arabic,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ps.po,36,93,102,15,50,118,906,169,1049,ps.po,,ps,,pashto,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,52,133,154,26,189,91,727,169,1049,ca@valencia.po,valencia,ca,,catalan,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ug.po,28,77,71,14,31,127,941,169,1049,ug.po,,ug,,uyghur,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/nl.po,110,449,417,0,0,26,308,136,757,nl.po,,nl,,dutch,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/eu.po,160,972,857,3,36,6,41,169,1049,eu.po,,eu,,basque,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sv.po,256,1847,1685,0,0,0,0,256,1847,sv.po,,sv,,swedish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/id.po,256,1847,1813,0,0,0,0,256,1847,id.po,,id,,indonesian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/mr.po,48,121,133,18,151,103,777,169,1049,mr.po,,mr,,marathi,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pa.po,96,356,373,0,0,43,435,139,791,pa.po,,pa,,punjabi,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/lv.po,249,1768,1623,0,0,0,0,249,1768,lv.po,,lv,,latvian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ta.po,49,125,126,19,156,101,768,169,1049,ta.po,,ta,,tamil,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/el.po,199,1222,1341,6,64,24,327,229,1613,el.po,,el,,greek,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/tr.po,168,1164,1051,7,40,37,265,212,1469,tr.po,,tr,,turkish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/lt.po,256,1854,1720,0,0,0,0,256,1854,lt.po,,lt,,lithuanian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ja.po,118,451,253,4,25,47,573,169,1049,ja.po,,ja,,japanese,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/cs.po,255,1846,1739,0,0,0,0,255,1846,cs.po,,cs,,czech,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/it.po,256,1847,2030,0,0,0,0,256,1847,it.po,,it,,italian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ru.po,209,1328,1274,1,1,44,510,254,1839,ru.po,,ru,,russian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/nb.po,86,242,223,7,29,76,778,169,1049,nb.po,,nb,,norwegian bokmål,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pl.po,256,1854,1801,0,0,0,0,256,1854,pl.po,,pl,,polish,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pt.po,180,1265,1374,0,0,0,0,180,1265,pt.po,,pt,,portuguese,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/dz.po,9,31,10,36,94,124,924,169,1049,dz.po,,dz,,dzongkha,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/en_gb.po,134,788,788,10,77,25,184,169,1049,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/uk.po,71,207,195,11,137,87,705,169,1049,uk.po,,uk,,ukrainian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_hk.po,42,102,68,16,134,111,813,169,1049,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/be.po,96,337,334,15,164,58,548,169,1049,be.po,,be,,belarusian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/gl.po,249,1768,2126,0,0,0,0,249,1768,gl.po,,gl,,galician,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ko.po,34,97,86,33,95,102,857,169,1049,ko.po,,ko,,korean,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sr.po,247,1734,1749,0,0,0,0,247,1734,sr.po,,sr,,serbian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sl.po,159,969,964,4,39,6,41,169,1049,sl.po,,sl,,slovenian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/hr.po,77,283,281,2,2,177,1562,256,1847,hr.po,,hr,,croatian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/gu.po,29,82,85,14,31,126,936,169,1049,gu.po,,gu,,gujarati,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/kn.po,49,125,123,19,156,101,768,169,1049,kn.po,,kn,,kannada,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pt_br.po,256,1854,2176,0,0,0,0,256,1854,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fa.po,70,205,231,12,139,87,705,169,1049,fa.po,,fa,,persian,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/te.po,49,125,122,19,156,101,768,169,1049,te.po,,te,,telugu,,

- networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/bg.po,70,205,229,12,139,87,705,169,1049,bg.po,,bg,,bulgarian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_tw.po,44,144,74,0,0,0,0,44,144,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_hk.po,44,144,74,0,0,0,0,44,144,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_cn.po,66,280,142,0,0,0,0,66,280,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/vi.po,129,588,817,0,0,0,0,129,588,vi.po,,vi,,vietnamese,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/uk.po,44,144,138,0,0,0,0,44,144,uk.po,,uk,,ukrainian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ug.po,38,102,106,0,0,6,42,44,144,ug.po,,ug,,uyghur,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/tr.po,71,407,401,0,0,0,0,71,407,tr.po,,tr,,turkish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/th.po,129,584,313,0,0,0,0,129,584,th.po,,th,,thai,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/te.po,43,118,127,0,0,0,0,43,118,te.po,,te,,telugu,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ta.po,44,144,151,0,0,0,0,44,144,ta.po,,ta,,tamil,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sv.po,84,509,465,0,0,0,0,84,509,sv.po,,sv,,swedish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sr@latin.po,84,509,527,0,0,0,0,84,509,sr@latin.po,latin,sr,,serbian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sr.po,84,509,527,0,0,0,0,84,509,sr.po,,sr,,serbian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sl.po,77,415,403,0,0,0,0,77,415,sl.po,,sl,,slovenian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ru.po,84,509,485,0,0,0,0,84,509,ru.po,,ru,,russian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ro.po,44,144,161,0,0,0,0,44,144,ro.po,,ro,,romanian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pt_br.po,84,509,588,0,0,0,0,84,509,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pt.po,71,407,458,0,0,0,0,71,407,pt.po,,pt,,portuguese,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pl.po,84,509,509,0,0,0,0,84,509,pl.po,,pl,,polish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pa.po,54,188,202,0,0,23,227,77,415,pa.po,,pa,,punjabi,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/oc.po,74,410,486,0,0,0,0,74,410,oc.po,,oc,,occitan,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/nl.po,84,509,457,0,0,0,0,84,509,nl.po,,nl,,dutch,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/nb.po,56,193,184,0,0,21,222,77,415,nb.po,,nb,,norwegian bokmål,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/mr.po,42,115,145,0,0,0,0,42,115,mr.po,,mr,,marathi,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/mk.po,129,584,617,0,0,0,0,129,584,mk.po,,mk,,macedonian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/lv.po,84,509,474,0,0,0,0,84,509,lv.po,,lv,,latvian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/lt.po,84,509,475,0,0,0,0,84,509,lt.po,,lt,,lithuanian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ko.po,44,144,132,0,0,0,0,44,144,ko.po,,ko,,korean,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/kn.po,43,118,117,0,0,0,0,43,118,kn.po,,kn,,kannada,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ka.po,129,584,412,0,0,0,0,129,584,ka.po,,ka,,georgian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ja.po,62,273,149,1,2,3,5,66,280,ja.po,,ja,,japanese,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/it.po,84,509,560,0,0,0,0,84,509,it.po,,it,,italian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/id.po,84,509,516,0,0,0,0,84,509,id.po,,id,,indonesian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/hu.po,84,509,476,0,0,0,0,84,509,hu.po,,hu,,hungarian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/hr.po,83,508,477,0,0,1,1,84,509,hr.po,,hr,,croatian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/he.po,44,144,149,0,0,0,0,44,144,he.po,,he,,hebrew,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/gu.po,44,144,171,0,0,0,0,44,144,gu.po,,gu,,gujarati,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/gl.po,77,415,501,0,0,0,0,77,415,gl.po,,gl,,galician,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fur.po,84,509,581,0,0,0,0,84,509,fur.po,,fur,,friulian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fr.po,77,415,511,0,0,0,0,77,415,fr.po,,fr,,french,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fi.po,47,147,118,0,0,27,263,74,410,fi.po,,fi,,finnish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fa.po,44,144,173,0,0,24,145,68,289,fa.po,,fa,,persian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/eu.po,74,410,389,0,0,0,0,74,410,eu.po,,eu,,basque,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/et.po,44,144,122,0,0,0,0,44,144,et.po,,et,,estonian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/es.po,84,509,625,0,0,0,0,84,509,es.po,,es,,spanish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/eo.po,22,37,34,0,0,44,243,66,280,eo.po,,eo,,esperanto,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/en_gb.po,44,144,144,0,0,0,0,44,144,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/el.po,71,407,475,0,0,0,0,71,407,el.po,,el,,greek,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/de.po,84,509,470,0,0,0,0,84,509,de.po,,de,,german,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/da.po,84,509,463,0,0,0,0,84,509,da.po,,da,,danish,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/cs.po,84,509,485,0,0,0,0,84,509,cs.po,,cs,,czech,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ca@valencia.po,42,115,145,1,3,1,26,44,144,ca@valencia.po,valencia,ca,,catalan,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ca.po,84,509,650,0,0,0,0,84,509,ca.po,,ca,,catalan,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bs.po,74,410,411,0,0,0,0,74,410,bs.po,,bs,,bosnian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bn_in.po,42,115,170,0,0,0,0,42,115,bn_in.po,,bn,in,bangla,,india

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bg.po,44,144,172,0,0,0,0,44,144,bg.po,,bg,,bulgarian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/be@latin.po,41,114,109,0,0,0,0,41,114,be@latin.po,latin,be,,belarusian,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/as.po,42,115,144,0,0,0,0,42,115,as.po,,as,,assamese,,

- networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ar.po,7,11,13,16,55,18,46,41,112,ar.po,,ar,,arabic,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_tw.po,15,35,20,9,23,45,228,69,286,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_hk.po,15,35,20,9,23,45,228,69,286,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_cn.po,17,39,24,14,43,38,204,69,286,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/vi.po,4,18,24,14,29,51,239,69,286,vi.po,,vi,,vietnamese,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/uk.po,17,39,36,14,43,38,204,69,286,uk.po,,uk,,ukrainian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ug.po,7,24,23,6,10,56,252,69,286,ug.po,,ug,,uyghur,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/th.po,4,16,9,13,36,52,234,69,286,th.po,,th,,thai,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/te.po,16,37,35,13,36,40,213,69,286,te.po,,te,,telugu,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ta.po,16,37,36,13,36,40,213,69,286,ta.po,,ta,,tamil,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sv.po,29,115,99,22,87,18,84,69,286,sv.po,,sv,,swedish,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sl.po,32,120,118,21,85,16,81,69,286,sl.po,,sl,,slovenian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sk.po,1,2,2,11,21,57,263,69,286,sk.po,,sk,,slovak,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ru.po,29,115,110,22,87,18,84,69,286,ru.po,,ru,,russian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ro.po,17,39,40,14,43,38,204,69,286,ro.po,,ro,,romanian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pt_br.po,32,120,133,21,85,16,81,69,286,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pt.po,17,39,41,15,55,37,192,69,286,pt.po,,pt,,portuguese,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ps.po,11,26,33,12,27,46,233,69,286,ps.po,,ps,,pashto,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pl.po,32,120,123,21,85,16,81,69,286,pl.po,,pl,,polish,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pa.po,17,39,41,15,55,37,192,69,286,pa.po,,pa,,punjabi,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/nl.po,13,32,32,15,38,41,216,69,286,nl.po,,nl,,dutch,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/nb.po,24,61,58,13,39,32,186,69,286,nb.po,,nb,,norwegian bokmål,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/mr.po,16,37,43,13,36,40,213,69,286,mr.po,,mr,,marathi,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/mk.po,4,18,25,14,29,51,239,69,286,mk.po,,mk,,macedonian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/lv.po,29,115,107,22,87,18,84,69,286,lv.po,,lv,,latvian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/lt.po,32,120,113,21,85,16,81,69,286,lt.po,,lt,,lithuanian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ko.po,8,27,21,14,39,47,220,69,286,ko.po,,ko,,korean,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/kn.po,16,37,33,13,36,40,213,69,286,kn.po,,kn,,kannada,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ka.po,4,16,8,14,37,51,233,69,286,ka.po,,ka,,georgian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ja.po,5,19,9,15,41,49,226,69,286,ja.po,,ja,,japanese,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/it.po,17,39,39,14,43,38,204,69,286,it.po,,it,,italian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/id.po,32,120,124,21,85,16,81,69,286,id.po,,id,,indonesian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/hu.po,29,115,106,22,87,18,84,69,286,hu.po,,hu,,hungarian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/he.po,22,64,55,2,3,45,219,69,286,he.po,,he,,hebrew,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/gu.po,7,24,25,6,10,56,252,69,286,gu.po,,gu,,gujarati,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/gl.po,29,115,144,22,87,18,84,69,286,gl.po,,gl,,galician,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fr.po,29,115,143,22,87,18,84,69,286,fr.po,,fr,,french,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fi.po,15,34,24,15,51,39,201,69,286,fi.po,,fi,,finnish,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fa.po,17,39,41,14,43,38,204,69,286,fa.po,,fa,,persian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/eu.po,17,39,37,14,43,38,204,69,286,eu.po,,eu,,basque,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/et.po,17,39,30,14,43,38,204,69,286,et.po,,et,,estonian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/es.po,32,120,144,21,85,16,81,69,286,es.po,,es,,spanish,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/en_gb.po,8,27,27,14,39,47,220,69,286,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/el.po,17,39,40,14,43,38,204,69,286,el.po,,el,,greek,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/dz.po,5,19,7,14,37,50,230,69,286,dz.po,,dz,,dzongkha,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/de.po,32,120,112,21,85,16,81,69,286,de.po,,de,,german,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/da.po,15,34,32,14,39,40,213,69,286,da.po,,da,,danish,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/cs.po,73,297,282,0,0,0,0,73,297,cs.po,,cs,,czech,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,16,37,40,14,48,39,201,69,286,ca@valencia.po,valencia,ca,,catalan,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ca.po,17,39,42,15,55,37,192,69,286,ca.po,,ca,,catalan,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/bg.po,17,39,38,14,43,38,204,69,286,bg.po,,bg,,bulgarian,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/as.po,16,37,38,13,36,40,213,69,286,as.po,,as,,assamese,,

- networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ar.po,5,19,19,16,41,48,226,69,286,ar.po,,ar,,arabic,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sv.po,101,606,536,0,0,0,0,101,606,sv.po,,sv,,swedish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/id.po,101,606,610,0,0,0,0,101,606,id.po,,id,,indonesian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/kn.po,36,139,124,0,0,0,0,36,139,kn.po,,kn,,kannada,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ja.po,83,439,256,0,0,0,0,83,439,ja.po,,ja,,japanese,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ug.po,38,114,118,0,0,3,42,41,156,ug.po,,ug,,uyghur,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pt.po,86,479,517,0,0,0,0,86,479,pt.po,,pt,,portuguese,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/lt.po,101,606,548,0,0,0,0,101,606,lt.po,,lt,,lithuanian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/eo.po,19,38,30,0,0,40,231,59,269,eo.po,,eo,,esperanto,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/gu.po,41,156,183,0,0,0,0,41,156,gu.po,,gu,,gujarati,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/cs.po,101,606,571,0,0,0,0,101,606,cs.po,,cs,,czech,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ta.po,36,139,142,0,0,0,0,36,139,ta.po,,ta,,tamil,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ru.po,87,464,444,0,0,14,142,101,606,ru.po,,ru,,russian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bs.po,91,494,482,0,0,0,0,91,494,bs.po,,bs,,bosnian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/mr.po,36,139,163,0,0,0,0,36,139,mr.po,,mr,,marathi,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/et.po,41,156,140,0,0,0,0,41,156,et.po,,et,,estonian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sr@latin.po,101,606,616,0,0,0,0,101,606,sr@latin.po,latin,sr,,serbian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_cn.po,41,156,85,0,0,0,0,41,156,zh_cn.po,,zh,cn,chinese,,china

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bg.po,41,156,183,0,0,0,0,41,156,bg.po,,bg,,bulgarian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,156,80,0,0,0,0,41,156,zh_tw.po,,zh,tw,chinese,,taiwan

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sk.po,37,143,154,1,4,3,9,41,156,sk.po,,sk,,slovak,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/vi.po,54,303,413,0,0,0,0,54,303,vi.po,,vi,,vietnamese,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/nl.po,101,606,545,0,0,0,0,101,606,nl.po,,nl,,dutch,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,34,135,167,1,2,2,6,37,143,ca@valencia.po,valencia,ca,,catalan,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fi.po,54,168,144,3,64,44,374,101,606,fi.po,,fi,,finnish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sl.po,84,442,449,0,0,0,0,84,442,sl.po,,sl,,slovenian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/el.po,86,479,532,0,0,0,0,86,479,el.po,,el,,greek,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/eu.po,84,442,424,0,0,0,0,84,442,eu.po,,eu,,basque,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/tr.po,91,494,456,0,0,0,0,91,494,tr.po,,tr,,turkish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ko.po,41,156,136,0,0,0,0,41,156,ko.po,,ko,,korean,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fr.po,86,444,554,0,0,0,0,86,444,fr.po,,fr,,french,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pl.po,101,606,592,0,0,0,0,101,606,pl.po,,pl,,polish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sr.po,101,606,616,0,0,0,0,101,606,sr.po,,sr,,serbian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fur.po,101,606,688,0,0,0,0,101,606,fur.po,,fur,,friulian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pa.po,64,246,273,1,12,19,167,84,425,pa.po,,pa,,punjabi,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/lv.po,101,606,544,0,0,0,0,101,606,lv.po,,lv,,latvian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ro.po,41,156,171,0,0,0,0,41,156,ro.po,,ro,,romanian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/gl.po,86,444,537,0,0,0,0,86,444,gl.po,,gl,,galician,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ca.po,101,606,745,0,0,0,0,101,606,ca.po,,ca,,catalan,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pt_br.po,101,606,709,0,0,0,0,101,606,pt_br.po,,pt,br,portuguese,,brazil

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/it.po,101,606,652,0,0,0,0,101,606,it.po,,it,,italian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/he.po,41,156,162,0,0,0,0,41,156,he.po,,he,,hebrew,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/de.po,101,606,565,0,0,0,0,101,606,de.po,,de,,german,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/or.po,41,156,176,0,0,0,0,41,156,or.po,,or,,odia,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/te.po,36,139,129,0,0,0,0,36,139,te.po,,te,,telugu,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fa.po,37,143,160,1,4,16,97,54,244,fa.po,,fa,,persian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bn_in.po,36,139,168,0,0,0,0,36,139,bn_in.po,,bn,in,bangla,,india

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/nb.po,69,285,266,0,0,17,159,86,444,nb.po,,nb,,norwegian bokmål,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ar.po,16,89,92,6,12,11,32,33,133,ar.po,,ar,,arabic,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/uk.po,41,156,149,0,0,0,0,41,156,uk.po,,uk,,ukrainian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_hk.po,41,156,80,0,0,0,0,41,156,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/hu.po,101,606,553,0,0,0,0,101,606,hu.po,,hu,,hungarian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/es.po,101,606,745,0,0,0,0,101,606,es.po,,es,,spanish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/mk.po,31,128,145,0,0,1,4,32,132,mk.po,,mk,,macedonian,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/th.po,52,328,146,0,0,0,0,52,328,th.po,,th,,thai,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/da.po,101,606,554,0,0,0,0,101,606,da.po,,da,,danish,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/en_gb.po,86,444,444,0,0,0,0,86,444,en_gb.po,,en,gb,english,,united kingdom

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/as.po,36,139,153,0,0,0,0,36,139,as.po,,as,,assamese,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/dz.po,52,328,121,0,0,0,0,52,328,dz.po,,dz,,dzongkha,,

- networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ka.po,52,328,216,0,0,0,0,52,328,ka.po,,ka,,georgian,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/es.po,481,3518,3880,0,0,0,0,481,3518,es.po,,es,,spanish,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pl.po,480,3521,3249,0,0,1,1,481,3522,pl.po,,pl,,polish,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/zh.po,481,3523,642,0,0,0,0,481,3523,zh.po,,zh,,chinese,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br.po,85,165,194,0,0,396,3353,481,3518,pt_br.po,,pt,br,portuguese,,brazil

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ja.po,474,3393,1203,0,0,7,125,481,3518,ja.po,,ja,,japanese,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hi.po,481,3518,3386,0,0,0,0,481,3518,hi.po,,hi,,hindi,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hr.po,269,1053,1006,0,0,212,2465,481,3518,hr.po,,hr,,croatian,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ru.po,365,1860,1602,0,0,116,1658,481,3518,ru.po,,ru,,russian,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/it.po,481,3518,3743,0,0,0,0,481,3518,it.po,,it,,italian,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/fr.po,481,3518,4002,0,0,0,0,481,3518,fr.po,,fr,,french,,

- nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/de.po,481,3518,3425,0,0,0,0,481,3518,de.po,,de,,german,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/fi.po,94,321,281,0,0,935,5609,1029,5930,fi.po,,fi,,finnish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pa.po,77,268,313,0,0,952,5662,1029,5930,pa.po,,pa,,punjabi,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/en_us.po,265,1463,1463,0,0,764,4467,1029,5930,en_us.po,,en,us,english,,united states

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sk.po,4,19,19,0,0,1025,5911,1029,5930,sk.po,,sk,,slovak,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/tg.po,6,10,10,0,0,1023,5920,1029,5930,tg.po,,tg,,tajik,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ug.po,400,2198,2053,0,0,629,3732,1029,5930,ug.po,,ug,,uyghur,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/eu.po,495,2734,2857,0,0,534,3196,1029,5930,eu.po,,eu,,basque,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/tr.po,659,3760,3594,0,0,370,2170,1029,5930,tr.po,,tr,,turkish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sr@latin.po,888,5156,5697,0,0,141,774,1029,5930,sr@latin.po,latin,sr,,serbian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/hu.po,895,5200,5582,0,0,134,730,1029,5930,hu.po,,hu,,hungarian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/da.po,1018,5866,5553,0,0,11,64,1029,5930,da.po,,da,,danish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sv.po,888,5156,4903,0,0,141,774,1029,5930,sv.po,,sv,,swedish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/gl.po,91,479,650,0,0,938,5451,1029,5930,gl.po,,gl,,galician,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/bs.po,787,4508,4544,0,0,242,1422,1029,5930,bs.po,,bs,,bosnian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pt.po,812,4671,5363,0,0,217,1259,1029,5930,pt.po,,pt,,portuguese,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/en_gb.po,417,2300,2300,0,0,612,3630,1029,5930,en_gb.po,,en,gb,english,,united kingdom

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/fr.po,22,63,72,0,0,1007,5867,1029,5930,fr.po,,fr,,french,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pl.po,1029,5930,6536,0,0,0,0,1029,5930,pl.po,,pl,,polish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/lt.po,1018,5866,5491,0,0,11,64,1029,5930,lt.po,,lt,,lithuanian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/de.po,962,5573,5551,0,0,67,357,1029,5930,de.po,,de,,german,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/el.po,483,2667,2906,0,0,546,3263,1029,5930,el.po,,el,,greek,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sr.po,888,5156,5697,0,0,141,774,1029,5930,sr.po,,sr,,serbian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/es.po,1003,5780,7324,0,0,26,150,1029,5930,es.po,,es,,spanish,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/it.po,47,171,208,0,0,982,5759,1029,5930,it.po,,it,,italian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ar.po,10,48,51,0,0,1019,5882,1029,5930,ar.po,,ar,,arabic,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/cs.po,997,5778,5973,0,0,32,152,1029,5930,cs.po,,cs,,czech,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/nl.po,427,2326,2404,0,0,602,3604,1029,5930,nl.po,,nl,,dutch,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sl.po,454,2505,2850,0,0,575,3425,1029,5930,sl.po,,sl,,slovenian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pt_br.po,1018,5866,6848,0,0,11,64,1029,5930,pt_br.po,,pt,br,portuguese,,brazil

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/uk.po,61,233,263,0,0,968,5697,1029,5930,uk.po,,uk,,ukrainian,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/zh_tw.po,7,32,10,0,0,1022,5898,1029,5930,zh_tw.po,,zh,tw,chinese,,taiwan

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/zh_cn.po,76,314,170,0,0,953,5616,1029,5930,zh_cn.po,,zh,cn,chinese,,china

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ca.po,962,5573,7268,0,0,67,357,1029,5930,ca.po,,ca,,catalan,,

- openconnect-8.02-3.fc30.src.rpm.stats.csv,po/id.po,895,5200,5258,0,0,134,730,1029,5930,id.po,,id,,indonesian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,1028,13554,14971,0,0,0,0,1028,13554,es.po,,es,,spanish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,1033,13658,12824,0,0,0,0,1033,13658,sv.po,,sv,,swedish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,1033,13658,12393,0,0,0,0,1033,13658,de.po,,de,,german,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,1028,13554,15596,0,0,0,0,1028,13554,fr.po,,fr,,french,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,1002,13021,13505,0,0,0,0,1002,13021,bg.po,,bg,,bulgarian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,1033,13658,12911,0,0,0,0,1033,13658,cs.po,,cs,,czech,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,984,12505,12718,0,0,0,0,984,12505,el.po,,el,,greek,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,313,1704,1907,4,31,667,10696,984,12431,gl.po,,gl,,galician,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,956,11916,13573,0,0,0,0,956,11916,pt_br.po,,pt,br,portuguese,,brazil

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,1033,13658,13383,0,0,0,0,1033,13658,hu.po,,hu,,hungarian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,955,11824,10493,8,134,9,300,972,12258,sl.po,,sl,,slovenian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,599,1448,1626,0,0,664,2233,1263,3681,mai.po,,mai,,maithili,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,445,1066,1175,339,874,516,1853,1300,3793,gu.po,,gu,,gujarati,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,187,516,565,2,2,1654,5050,1843,5568,fur.po,,fur,,friulian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,492,1239,1321,11,28,6,37,509,1304,cy.po,,cy,,welsh,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,562,1404,1577,158,277,547,2023,1267,3704,or.po,,or,,odia,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,718,1941,1025,0,0,0,0,718,1941,dz.po,,dz,,dzongkha,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,1867,5675,5484,0,0,0,0,1867,5675,lt.po,,lt,,lithuanian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,1867,5675,6640,0,0,0,0,1867,5675,es.po,,es,,spanish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,379,541,548,62,440,71,342,512,1323,mr.po,,mr,,marathi,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1843,5568,6996,0,0,0,0,1843,5568,ca@valencia.po,valencia,ca,,catalan,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,177,277,302,3,6,329,1021,509,1304,bn_in.po,,bn,in,bangla,,india

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1867,5675,6401,0,0,0,0,1867,5675,pt_br.po,,pt,br,portuguese,,brazil

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,1774,5518,5543,0,0,83,92,1857,5610,sk.po,,sk,,slovak,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,6,234,404,270,895,509,1304,rw.po,,rw,,kinyarwanda,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,1867,5675,5504,0,0,0,0,1867,5675,hu.po,,hu,,hungarian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,1739,5344,5846,0,0,0,0,1739,5344,el.po,,el,,greek,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,218,485,571,487,1623,233,390,938,2498,sq.po,,sq,,albanian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,1626,5057,4828,0,0,0,0,1626,5057,bs.po,,bs,,bosnian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1349,4140,1844,0,0,0,0,1349,4140,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,1021,3273,2415,98,492,49,311,1168,4076,ja.po,,ja,,japanese,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,1847,5611,5471,0,0,20,64,1867,5675,lv.po,,lv,,latvian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,908,2817,2898,157,561,99,487,1164,3865,ar.po,,ar,,arabic,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,1867,5675,5788,0,0,0,0,1867,5675,cs.po,,cs,,czech,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,1343,4135,4262,1,2,9,18,1353,4155,ru.po,,ru,,russian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,1867,5675,5399,0,0,0,0,1867,5675,de.po,,de,,german,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,327,708,705,64,181,118,415,509,1304,en_ca.po,,en,ca,english,,canada

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,1201,3897,3642,0,0,0,0,1201,3897,ta.po,,ta,,tamil,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,1357,4096,4194,0,0,463,2037,1820,6133,hr.po,,hr,,croatian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,1867,5675,5364,0,0,0,0,1867,5675,sv.po,,sv,,swedish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,1867,5675,5268,0,0,0,0,1867,5675,tr.po,,tr,,turkish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1315,4011,4162,0,0,0,0,1315,4011,bn.po,,bn,,bangla,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,936,2466,2400,31,109,136,599,1103,3174,nn.po,,nn,,norwegian nynorsk,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,1857,5610,6753,0,0,0,0,1857,5610,fr.po,,fr,,french,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,1356,4172,4835,0,0,0,0,1356,4172,an.po,,an,,aragonese,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,1170,4091,3674,0,0,0,0,1170,4091,te.po,,te,,telugu,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,92,101,107,0,0,1775,5574,1867,5675,kk.po,,kk,,kazakh,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,1095,3269,2784,334,989,413,1298,1842,5556,fi.po,,fi,,finnish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,1196,3855,3992,0,0,0,0,1196,3855,be.po,,be,,belarusian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,1657,4957,4757,67,172,119,439,1843,5568,nb.po,,nb,,norwegian bokmål,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,1337,4309,4907,0,0,0,0,1337,4309,mk.po,,mk,,macedonian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,1739,5344,6270,0,0,0,0,1739,5344,oc.po,,oc,,occitan,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,342,467,484,408,1727,339,902,1089,3096,kn.po,,kn,,kannada,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,488,906,896,105,212,1247,4433,1840,5551,eo.po,,eo,,esperanto,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,1867,5675,6673,0,0,0,0,1867,5675,gl.po,,gl,,galician,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,1725,5323,5828,0,0,0,0,1725,5323,bg.po,,bg,,bulgarian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,1739,5344,6073,0,0,0,0,1739,5344,pt.po,,pt,,portuguese,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,1867,5675,5941,0,0,0,0,1867,5675,pl.po,,pl,,polish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,940,2627,2442,421,1289,482,1652,1843,5568,ml.po,,ml,,malayalam,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,812,1893,1992,0,0,388,1974,1200,3867,tg.po,,tg,,tajik,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,139,209,217,273,355,1208,4476,1620,5040,is.po,,is,,icelandic,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1440,4397,1953,298,896,41,174,1779,5467,zh_tw.po,,zh,tw,chinese,,taiwan

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,1414,4456,6066,0,0,0,0,1414,4456,vi.po,,vi,,vietnamese,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,1855,5603,7084,0,0,0,0,1855,5603,ca.po,,ca,,catalan,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,579,1433,1386,351,999,340,1275,1270,3707,ko.po,,ko,,korean,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,1337,4314,4887,0,0,0,0,1337,4314,ast.po,,ast,,asturian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,1867,5675,5684,0,0,0,0,1867,5675,id.po,,id,,indonesian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,644,2053,2031,14,47,642,1693,1300,3793,he.po,,he,,hebrew,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,1867,5675,6426,0,0,0,0,1867,5675,ro.po,,ro,,romanian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,1260,3694,1794,0,0,7,10,1267,3704,th.po,,th,,thai,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,1201,3897,4548,0,0,0,0,1201,3897,hi.po,,hi,,hindi,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,1867,5675,6523,0,0,0,0,1867,5675,it.po,,it,,italian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,1356,4172,3944,0,0,0,0,1356,4172,eu.po,,eu,,basque,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,1739,5344,5345,0,0,0,0,1739,5344,en_gb.po,,en,gb,english,,united kingdom

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,118,143,175,0,0,810,2357,928,2500,si.po,,si,,sinhala,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,1867,5675,6165,0,0,0,0,1867,5675,sl.po,,sl,,slovenian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1842,5556,5805,0,0,0,0,1842,5556,sr@latin.po,latin,sr,,serbian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,1201,3897,3448,0,0,0,0,1201,3897,ug.po,,ug,,uyghur,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,1867,5675,5946,0,0,0,0,1867,5675,sr.po,,sr,,serbian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,47,103,116,0,0,1256,3706,1303,3809,ga.po,,ga,,irish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,1867,5675,5449,0,0,0,0,1867,5675,da.po,,da,,danish,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,1867,5675,5587,0,0,0,0,1867,5675,nl.po,,nl,,dutch,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,456,940,924,0,0,860,3079,1316,4019,ms.po,,ms,,malay,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,1290,3823,4071,14,94,33,397,1337,4314,pa.po,,pa,,punjabi,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1842,5556,2214,0,0,0,0,1842,5556,zh_cn.po,,zh,cn,chinese,,china

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,1843,5568,5540,0,0,0,0,1843,5568,uk.po,,uk,,ukrainian,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,1513,4355,4233,292,1042,38,171,1843,5568,ne.po,,ne,,nepali,,

- orca-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,360,729,695,183,327,866,3344,1409,4400,et.po,,et,,estonian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pl.po,41,209,227,0,0,0,0,41,209,pl.po,,pl,,polish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,41,209,41,209,bal.po,,bal,,baluchi,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/de.po,11,54,51,0,0,30,155,41,209,de.po,,de,,german,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,41,209,41,209,ky.po,,ky,,kyrgyz,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,41,209,41,209,ro.po,,ro,,romanian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,41,209,41,209,kn.po,,kn,,kannada,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fr.po,11,54,71,0,0,30,155,41,209,fr.po,,fr,,french,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,41,209,41,209,nso.po,,nso,,northern sotho,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,41,209,41,209,kk.po,,kk,,kazakh,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,41,209,41,209,gu.po,,gu,,gujarati,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,41,209,41,209,el.po,,el,,greek,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,41,209,41,209,br.po,,br,,breton,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,41,209,41,209,hu.po,,hu,,hungarian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,41,209,41,209,gl.po,,gl,,galician,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,41,209,41,209,is.po,,is,,icelandic,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,41,209,41,209,yo.po,,yo,,yoruba,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,41,209,41,209,nn.po,,nn,,norwegian nynorsk,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,41,209,41,209,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,41,209,41,209,pa.po,,pa,,punjabi,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,41,209,41,209,et.po,,et,,estonian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,41,209,41,209,hi.po,,hi,,hindi,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,41,209,41,209,zh_tw.po,,zh,tw,chinese,,taiwan

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,41,209,41,209,kw@kkcor.po,kkcor,kw,,cornish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,41,209,41,209,ar.po,,ar,,arabic,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,41,209,41,209,ne.po,,ne,,nepali,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,41,209,41,209,sv.po,,sv,,swedish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,41,209,41,209,it.po,,it,,italian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,41,209,41,209,nb.po,,nb,,norwegian bokmål,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/uk.po,41,209,231,0,0,0,0,41,209,uk.po,,uk,,ukrainian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,41,209,41,209,ko.po,,ko,,korean,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,41,209,41,209,en_gb.po,,en,gb,english,,united kingdom

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,41,209,41,209,anp.po,,anp,,angika,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,41,209,41,209,km.po,,km,,khmer,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,41,209,41,209,bn_in.po,,bn,in,bangla,,india

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,41,209,41,209,or.po,,or,,odia,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,41,209,41,209,nl.po,,nl,,dutch,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,41,209,41,209,as.po,,as,,assamese,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/id.po,11,54,55,0,0,30,155,41,209,id.po,,id,,indonesian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,41,209,41,209,ru.po,,ru,,russian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ja.po,11,54,30,0,0,30,155,41,209,ja.po,,ja,,japanese,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,41,209,41,209,eo.po,,eo,,esperanto,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,41,209,41,209,te.po,,te,,telugu,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,41,209,41,209,mai.po,,mai,,maithili,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,41,209,41,209,zu.po,,zu,,zulu,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,41,209,41,209,ur.po,,ur,,urdu,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,41,209,41,209,bs.po,,bs,,bosnian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,41,209,41,209,ast.po,,ast,,asturian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,41,209,41,209,de_ch.po,,de,ch,german,,switzerland

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,41,209,41,209,cy.po,,cy,,welsh,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,41,209,41,209,am.po,,am,,amharic,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,41,209,41,209,bg.po,,bg,,bulgarian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,41,209,41,209,tr.po,,tr,,turkish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,41,209,41,209,he.po,,he,,hebrew,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,41,209,41,209,be.po,,be,,belarusian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,41,209,41,209,kw.po,,kw,,cornish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,41,209,41,209,mn.po,,mn,,mongolian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/es.po,11,54,74,0,0,30,155,41,209,es.po,,es,,spanish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,41,209,41,209,kw@uccor.po,uccor,kw,,cornish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,41,209,41,209,bn.po,,bn,,bangla,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,41,209,41,209,mk.po,,mk,,macedonian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,41,209,41,209,hr.po,,hr,,croatian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,41,209,41,209,ka.po,,ka,,georgian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1,2,2,0,0,40,207,41,209,pt_br.po,,pt,br,portuguese,,brazil

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,41,209,41,209,sq.po,,sq,,albanian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,41,209,41,209,fi.po,,fi,,finnish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,41,209,41,209,tg.po,,tg,,tajik,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,41,209,41,209,kw_gb.po,,kw,gb,cornish,,united kingdom

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,41,209,41,209,af.po,,af,,afrikaans,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,41,209,41,209,eu.po,,eu,,basque,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,41,209,41,209,ilo.po,,ilo,,iloko,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,41,209,41,209,nds.po,,nds,,low german,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ca.po,11,54,77,0,0,30,155,41,209,ca.po,,ca,,catalan,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,41,209,41,209,bo.po,,bo,,tibetan,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,41,209,41,209,pt.po,,pt,,portuguese,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,41,209,41,209,ta.po,,ta,,tamil,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,41,209,41,209,fa.po,,fa,,persian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,41,209,41,209,zh_cn.po,,zh,cn,chinese,,china

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,41,209,41,209,sr.po,,sr,,serbian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,41,209,41,209,ia.po,,ia,,interlingua,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,41,209,41,209,lv.po,,lv,,latvian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,41,209,41,209,sk.po,,sk,,slovak,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,41,209,41,209,si.po,,si,,sinhala,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,41,209,41,209,mr.po,,mr,,marathi,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,41,209,41,209,da.po,,da,,danish,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,41,209,41,209,vi.po,,vi,,vietnamese,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,41,209,41,209,sl.po,,sl,,slovenian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,41,209,41,209,ml.po,,ml,,malayalam,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,41,209,41,209,lt.po,,lt,,lithuanian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,41,209,41,209,ms.po,,ms,,malay,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,41,209,41,209,sr@latin.po,latin,sr,,serbian,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,41,209,41,209,tw.po,,tw,,twi,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,41,209,41,209,brx.po,,brx,,bodo,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,41,209,41,209,th.po,,th,,thai,,

- osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/cs.po,38,178,171,0,0,3,31,41,209,cs.po,,cs,,czech,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,81,476,81,476,lt.po,,lt,,lithuanian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ca.po,81,476,570,0,0,0,0,81,476,ca.po,,ca,,catalan,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pl.po,81,476,415,0,0,0,0,81,476,pl.po,,pl,,polish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,81,476,81,476,kn.po,,kn,,kannada,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,81,476,81,476,ast.po,,ast,,asturian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/cs.po,81,476,387,0,0,0,0,81,476,cs.po,,cs,,czech,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,81,476,81,476,ca@valencia.po,valencia,ca,,catalan,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/de.po,81,476,519,0,0,0,0,81,476,de.po,,de,,german,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/lv.po,80,469,373,0,0,1,7,81,476,lv.po,,lv,,latvian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,81,476,81,476,sq.po,,sq,,albanian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,81,476,81,476,te.po,,te,,telugu,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/da.po,81,476,433,0,0,0,0,81,476,da.po,,da,,danish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/oc.po,81,476,503,0,0,0,0,81,476,oc.po,,oc,,occitan,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sl.po,81,476,404,0,0,0,0,81,476,sl.po,,sl,,slovenian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/id.po,81,476,392,0,0,0,0,81,476,id.po,,id,,indonesian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/gl.po,81,476,549,0,0,0,0,81,476,gl.po,,gl,,galician,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ru.po,81,476,378,0,0,0,0,81,476,ru.po,,ru,,russian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sk.po,81,476,409,0,0,0,0,81,476,sk.po,,sk,,slovak,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/uk.po,81,476,434,0,0,0,0,81,476,uk.po,,uk,,ukrainian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hr.po,81,476,385,0,0,0,0,81,476,hr.po,,hr,,croatian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_tw.po,1,2,1,0,0,80,474,81,476,zh_tw.po,,zh,tw,chinese,,taiwan

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pt_br.po,81,476,501,0,0,0,0,81,476,pt_br.po,,pt,br,portuguese,,brazil

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,81,476,81,476,bg.po,,bg,,bulgarian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,81,476,81,476,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,81,476,81,476,he.po,,he,,hebrew,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/tr.po,81,476,324,0,0,0,0,81,476,tr.po,,tr,,turkish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,81,476,81,476,ga.po,,ga,,irish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,81,476,81,476,bn_in.po,,bn,in,bangla,,india

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,81,476,81,476,sr@latin.po,latin,sr,,serbian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,81,476,81,476,mr.po,,mr,,marathi,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,81,476,81,476,ta.po,,ta,,tamil,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,81,476,81,476,cy.po,,cy,,welsh,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,81,476,81,476,or.po,,or,,odia,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,81,476,81,476,nb.po,,nb,,norwegian bokmål,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/it.po,81,476,513,0,0,0,0,81,476,it.po,,it,,italian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,81,476,81,476,ar.po,,ar,,arabic,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,81,476,81,476,az.po,,az,,azerbaijani,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fr.po,81,476,504,0,0,0,0,81,476,fr.po,,fr,,french,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,81,476,81,476,ml.po,,ml,,malayalam,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fi.po,81,476,402,0,0,0,0,81,476,fi.po,,fi,,finnish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,81,476,81,476,fo.po,,fo,,faroese,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pa.po,74,425,444,0,0,7,51,81,476,pa.po,,pa,,punjabi,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pt.po,81,476,466,0,0,0,0,81,476,pt.po,,pt,,portuguese,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nl.po,80,469,498,0,0,1,7,81,476,nl.po,,nl,,dutch,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,81,476,81,476,hi.po,,hi,,hindi,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hu.po,81,476,396,0,0,0,0,81,476,hu.po,,hu,,hungarian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fur.po,81,476,579,0,0,0,0,81,476,fur.po,,fur,,friulian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en_gb.po,81,476,476,0,0,0,0,81,476,en_gb.po,,en,gb,english,,united kingdom

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/es.po,81,476,563,0,0,0,0,81,476,es.po,,es,,spanish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_cn.po,81,476,95,0,0,0,0,81,476,zh_cn.po,,zh,cn,chinese,,china

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,81,476,81,476,th.po,,th,,thai,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,81,476,81,476,ia.po,,ia,,interlingua,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,81,476,81,476,vi.po,,vi,,vietnamese,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,81,476,81,476,wa.po,,wa,,walloon,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ja.po,81,476,95,0,0,0,0,81,476,ja.po,,ja,,japanese,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,81,476,81,476,ro.po,,ro,,romanian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,81,476,81,476,nn.po,,nn,,norwegian nynorsk,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/eo.po,14,58,55,0,0,67,418,81,476,eo.po,,eo,,esperanto,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/kk.po,4,12,11,0,0,77,464,81,476,kk.po,,kk,,kazakh,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ko.po,81,476,327,0,0,0,0,81,476,ko.po,,ko,,korean,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,81,476,81,476,as.po,,as,,assamese,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,81,476,81,476,et.po,,et,,estonian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,81,476,81,476,fa.po,,fa,,persian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ka.po,31,156,107,0,0,50,320,81,476,ka.po,,ka,,georgian,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,81,476,81,476,gu.po,,gu,,gujarati,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/el.po,81,476,532,0,0,0,0,81,476,el.po,,el,,greek,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,81,476,81,476,eu.po,,eu,,basque,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en@quot.po,81,476,476,0,0,0,0,81,476,en@quot.po,quot,en,,english,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,81,476,81,476,ms.po,,ms,,malay,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sv.po,81,476,406,0,0,0,0,81,476,sv.po,,sv,,swedish,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,81,476,476,0,0,0,0,81,476,en@boldquot.po,boldquot,en,,english,,

- p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sr.po,81,476,417,0,0,0,0,81,476,sr.po,,sr,,serbian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/eo.po,85,180,166,0,0,236,1102,321,1282,eo.po,,eo,,esperanto,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sr.po,310,1239,1178,0,0,11,43,321,1282,sr.po,,sr,,serbian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nl.po,310,1239,1244,0,0,11,43,321,1282,nl.po,,nl,,dutch,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/cs.po,321,1282,1318,0,0,0,0,321,1282,cs.po,,cs,,czech,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/tr.po,310,1239,1096,0,0,11,43,321,1282,tr.po,,tr,,turkish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/mr.po,239,877,920,0,0,82,405,321,1282,mr.po,,mr,,marathi,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/he.po,242,893,846,0,0,79,389,321,1282,he.po,,he,,hebrew,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/bn_in.po,239,877,1077,0,0,82,405,321,1282,bn_in.po,,bn,in,bangla,,india

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,326,1328,326,1328,ar.po,,ar,,arabic,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pl.po,321,1282,1237,0,0,0,0,321,1282,pl.po,,pl,,polish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/uk.po,321,1282,1276,0,0,0,0,321,1282,uk.po,,uk,,ukrainian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,326,1328,326,1328,cy.po,,cy,,welsh,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,326,1328,326,1328,nn.po,,nn,,norwegian nynorsk,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hr.po,318,1275,1177,0,0,3,7,321,1282,hr.po,,hr,,croatian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ast.po,27,38,41,0,0,294,1244,321,1282,ast.po,,ast,,asturian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sr@latin.po,242,903,856,0,0,79,379,321,1282,sr@latin.po,latin,sr,,serbian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,326,1328,326,1328,sq.po,,sq,,albanian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ca.po,321,1282,1615,0,0,0,0,321,1282,ca.po,,ca,,catalan,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/br.po,126,370,490,2,6,198,952,326,1328,br.po,,br,,breton,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fr.po,310,1239,1639,0,0,11,43,321,1282,fr.po,,fr,,french,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_cn.po,319,1277,338,0,0,2,5,321,1282,zh_cn.po,,zh,cn,chinese,,china

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,326,1328,326,1328,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sv.po,319,1277,1201,0,0,2,5,321,1282,sv.po,,sv,,swedish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nb.po,20,73,71,0,0,301,1209,321,1282,nb.po,,nb,,norwegian bokmål,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,326,1328,326,1328,ca@valencia.po,valencia,ca,,catalan,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/bg.po,247,931,1041,0,0,74,351,321,1282,bg.po,,bg,,bulgarian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/en_gb.po,321,1282,1282,0,0,0,0,321,1282,en_gb.po,,en,gb,english,,united kingdom

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/it.po,321,1282,1457,0,0,0,0,321,1282,it.po,,it,,italian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/oc.po,138,339,427,0,0,183,943,321,1282,oc.po,,oc,,occitan,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/es.po,302,1195,1391,0,0,19,87,321,1282,es.po,,es,,spanish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ml.po,239,877,740,0,0,82,405,321,1282,ml.po,,ml,,malayalam,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/kk.po,117,326,296,0,0,204,956,321,1282,kk.po,,kk,,kazakh,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/de.po,321,1282,1320,0,0,0,0,321,1282,de.po,,de,,german,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/lt.po,263,1013,873,0,0,58,269,321,1282,lt.po,,lt,,lithuanian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ja.po,285,1108,330,0,0,36,174,321,1282,ja.po,,ja,,japanese,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_tw.po,321,1282,354,0,0,0,0,321,1282,zh_tw.po,,zh,tw,chinese,,taiwan

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/te.po,239,877,703,0,0,82,405,321,1282,te.po,,te,,telugu,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hi.po,239,877,1118,0,0,82,405,321,1282,hi.po,,hi,,hindi,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/as.po,239,877,1004,0,0,82,405,321,1282,as.po,,as,,assamese,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/id.po,321,1282,1259,0,0,0,0,321,1282,id.po,,id,,indonesian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pa.po,310,1239,1633,0,0,11,43,321,1282,pa.po,,pa,,punjabi,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pt_br.po,321,1282,1477,0,0,0,0,321,1282,pt_br.po,,pt,br,portuguese,,brazil

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,326,1328,326,1328,fo.po,,fo,,faroese,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,326,1328,326,1328,wa.po,,wa,,walloon,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/gu.po,239,877,1112,0,0,82,405,321,1282,gu.po,,gu,,gujarati,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,326,1328,326,1328,az.po,,az,,azerbaijani,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/el.po,305,1211,1330,0,0,16,71,321,1282,el.po,,el,,greek,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,326,1328,326,1328,ga.po,,ga,,irish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/kn.po,239,877,772,0,0,82,405,321,1282,kn.po,,kn,,kannada,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fi.po,290,1142,902,0,0,31,140,321,1282,fi.po,,fi,,finnish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ro.po,247,931,1057,0,0,74,351,321,1282,ro.po,,ro,,romanian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ms.po,2,6,6,0,0,324,1322,326,1328,ms.po,,ms,,malay,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ru.po,321,1282,1130,0,0,0,0,321,1282,ru.po,,ru,,russian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ia.po,81,318,381,0,0,240,964,321,1282,ia.po,,ia,,interlingua,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/da.po,310,1239,1176,0,0,11,43,321,1282,da.po,,da,,danish,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/eu.po,310,1239,1114,0,0,11,43,321,1282,eu.po,,eu,,basque,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,326,1328,326,1328,vi.po,,vi,,vietnamese,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/gl.po,305,1211,1415,0,0,16,71,321,1282,gl.po,,gl,,galician,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ka.po,54,118,104,0,0,267,1164,321,1282,ka.po,,ka,,georgian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/lv.po,261,1007,851,0,0,60,275,321,1282,lv.po,,lv,,latvian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/or.po,239,877,941,0,0,82,405,321,1282,or.po,,or,,odia,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/th.po,21,77,33,0,0,300,1205,321,1282,th.po,,th,,thai,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sl.po,305,1211,1195,0,0,16,71,321,1282,sl.po,,sl,,slovenian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,326,1328,326,1328,fa.po,,fa,,persian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hu.po,319,1277,1100,0,0,2,5,321,1282,hu.po,,hu,,hungarian,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ta.po,239,877,703,0,0,82,405,321,1282,ta.po,,ta,,tamil,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sk.po,321,1282,1283,0,0,0,0,321,1282,sk.po,,sk,,slovak,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pt.po,307,1221,1445,0,0,14,61,321,1282,pt.po,,pt,,portuguese,,

- packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ko.po,319,1277,1103,0,0,2,5,321,1282,ko.po,,ko,,korean,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zu.po,85,371,317,4,27,31,199,120,597,zu.po,,zu,,zulu,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_tw.po,117,575,215,3,22,0,0,120,597,zh_tw.po,,zh,tw,chinese,,taiwan

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,120,597,120,597,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_cn.po,117,575,217,3,22,0,0,120,597,zh_cn.po,,zh,cn,chinese,,china

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,120,597,120,597,yo.po,,yo,,yoruba,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/vi.po,115,562,794,5,35,0,0,120,597,vi.po,,vi,,vietnamese,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,120,597,120,597,ur.po,,ur,,urdu,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/uk.po,119,595,597,1,2,0,0,120,597,uk.po,,uk,,ukrainian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,120,597,120,597,tw.po,,tw,,twi,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tr.po,117,575,506,3,22,0,0,120,597,tr.po,,tr,,turkish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,120,597,120,597,th.po,,th,,thai,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,120,597,120,597,tg.po,,tg,,tajik,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/te.po,117,575,470,3,22,0,0,120,597,te.po,,te,,telugu,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ta.po,117,575,483,3,22,0,0,120,597,ta.po,,ta,,tamil,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sv.po,117,575,541,3,22,0,0,120,597,sv.po,,sv,,swedish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sr.po,117,575,587,3,22,0,0,120,597,sr.po,,sr,,serbian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sr@latin.po,114,559,572,5,35,1,3,120,597,sr@latin.po,latin,sr,,serbian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,120,597,120,597,sq.po,,sq,,albanian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,120,597,120,597,sl.po,,sl,,slovenian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sk.po,117,575,566,3,22,0,0,120,597,sk.po,,sk,,slovak,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/si.po,90,410,450,4,27,26,160,120,597,si.po,,si,,sinhala,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ru.po,117,575,598,3,22,0,0,120,597,ru.po,,ru,,russian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,120,597,120,597,ro.po,,ro,,romanian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pt.po,117,575,699,3,22,0,0,120,597,pt.po,,pt,,portuguese,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pt_br.po,117,575,627,3,22,0,0,120,597,pt_br.po,,pt,br,portuguese,,brazil

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pl.po,119,595,591,1,2,0,0,120,597,pl.po,,pl,,polish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pa.po,117,575,677,3,22,0,0,120,597,pa.po,,pa,,punjabi,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/or.po,117,575,655,3,22,0,0,120,597,or.po,,or,,odia,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,120,597,120,597,nso.po,,nso,,northern sotho,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,120,597,120,597,nn.po,,nn,,norwegian nynorsk,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nl.po,117,575,572,3,22,0,0,120,597,nl.po,,nl,,dutch,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,120,597,120,597,ne.po,,ne,,nepali,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,120,597,120,597,nds.po,,nds,,low german,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nb.po,117,575,543,3,22,0,0,120,597,nb.po,,nb,,norwegian bokmål,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,120,597,120,597,my.po,,my,,burmese,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ms.po,1,4,4,1,2,118,591,120,597,ms.po,,ms,,malay,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mr.po,117,575,598,3,22,0,0,120,597,mr.po,,mr,,marathi,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,120,597,120,597,mn.po,,mn,,mongolian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ml.po,117,575,504,3,22,0,0,120,597,ml.po,,ml,,malayalam,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,120,597,120,597,mk.po,,mk,,macedonian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,120,597,120,597,mai.po,,mai,,maithili,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,120,597,120,597,lv.po,,lv,,latvian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,120,597,120,597,lt.po,,lt,,lithuanian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,120,597,120,597,ky.po,,ky,,kyrgyz,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,120,597,120,597,kw@uccor.po,uccor,kw,,cornish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,120,597,120,597,kw.po,,kw,,cornish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,120,597,120,597,kw@kkcor.po,kkcor,kw,,cornish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,120,597,120,597,kw_gb.po,,kw,gb,cornish,,united kingdom

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ko.po,117,575,508,3,22,0,0,120,597,ko.po,,ko,,korean,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kn.po,117,575,512,3,22,0,0,120,597,kn.po,,kn,,kannada,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/km.po,81,344,168,4,27,35,226,120,597,km.po,,km,,khmer,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kk.po,117,575,553,3,22,0,0,120,597,kk.po,,kk,,kazakh,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ka.po,31,87,77,1,2,88,508,120,597,ka.po,,ka,,georgian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ja.po,117,575,192,3,22,0,0,120,597,ja.po,,ja,,japanese,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/it.po,117,575,614,3,22,0,0,120,597,it.po,,it,,italian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,120,597,120,597,is.po,,is,,icelandic,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,120,597,120,597,ilo.po,,ilo,,iloko,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/id.po,47,215,203,0,0,73,382,120,597,id.po,,id,,indonesian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ia.po,117,575,695,3,22,0,0,120,597,ia.po,,ia,,interlingua,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hu.po,117,575,544,3,22,0,0,120,597,hu.po,,hu,,hungarian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,120,597,120,597,hr.po,,hr,,croatian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hi.po,117,575,665,3,22,0,0,120,597,hi.po,,hi,,hindi,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/he.po,44,198,180,4,27,72,372,120,597,he.po,,he,,hebrew,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/gu.po,117,575,639,3,22,0,0,120,597,gu.po,,gu,,gujarati,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,120,597,120,597,gl.po,,gl,,galician,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ga.po,117,575,779,3,22,0,0,120,597,ga.po,,ga,,irish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fr.po,117,575,698,3,22,0,0,120,597,fr.po,,fr,,french,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fi.po,117,575,471,3,22,0,0,120,597,fi.po,,fi,,finnish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,120,597,120,597,fa.po,,fa,,persian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/eu.po,7,13,15,1,2,112,582,120,597,eu.po,,eu,,basque,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/et.po,38,158,137,2,7,80,432,120,597,et.po,,et,,estonian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/es.po,119,595,725,1,2,0,0,120,597,es.po,,es,,spanish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,120,597,120,597,eo.po,,eo,,esperanto,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,120,597,120,597,en_gb.po,,en,gb,english,,united kingdom

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,120,597,120,597,el.po,,el,,greek,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/de.po,117,575,579,3,22,0,0,120,597,de.po,,de,,german,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,120,597,120,597,de_ch.po,,de,ch,german,,switzerland

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/da.po,117,575,569,3,22,0,0,120,597,da.po,,da,,danish,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,120,597,120,597,cy.po,,cy,,welsh,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/cs.po,119,595,563,1,2,0,0,120,597,cs.po,,cs,,czech,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ca.po,117,575,719,3,22,0,0,120,597,ca.po,,ca,,catalan,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,120,597,120,597,bs.po,,bs,,bosnian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,120,597,120,597,brx.po,,brx,,bodo,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,120,597,120,597,br.po,,br,,breton,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,120,597,120,597,bo.po,,bo,,tibetan,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bn.po,115,562,618,5,35,0,0,120,597,bn.po,,bn,,bangla,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bn_in.po,115,562,618,5,35,0,0,120,597,bn_in.po,,bn,in,bangla,,india

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bg.po,117,575,628,3,22,0,0,120,597,bg.po,,bg,,bulgarian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,120,597,120,597,be.po,,be,,belarusian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,120,597,120,597,bal.po,,bal,,baluchi,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,120,597,120,597,ast.po,,ast,,asturian,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/as.po,117,575,617,3,22,0,0,120,597,as.po,,as,,assamese,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ar.po,84,367,420,4,27,32,203,120,597,ar.po,,ar,,arabic,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,120,597,120,597,anp.po,,anp,,angika,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,120,597,120,597,am.po,,am,,amharic,,

- pam-1.3.1-17.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,120,597,120,597,af.po,,af,,afrikaans,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/as.po,4,7,8,0,0,0,0,4,7,as.po,,as,,assamese,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bg.po,4,7,7,0,0,0,0,4,7,bg.po,,bg,,bulgarian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bn_in.po,4,7,8,0,0,0,0,4,7,bn_in.po,,bn,in,bangla,,india

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bn.po,4,7,8,0,0,0,0,4,7,bn.po,,bn,,bangla,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ca.po,4,7,11,0,0,0,0,4,7,ca.po,,ca,,catalan,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/cs.po,4,7,7,0,0,0,0,4,7,cs.po,,cs,,czech,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/da.po,4,7,7,0,0,0,0,4,7,da.po,,da,,danish,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/de.po,4,7,7,0,0,0,0,4,7,de.po,,de,,german,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/el.po,4,7,7,0,0,0,0,4,7,el.po,,el,,greek,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/es.po,4,7,8,0,0,0,0,4,7,es.po,,es,,spanish,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/et.po,4,7,7,0,0,0,0,4,7,et.po,,et,,estonian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/eu.po,4,7,7,0,0,0,0,4,7,eu.po,,eu,,basque,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/fa.po,4,7,11,0,0,0,0,4,7,fa.po,,fa,,persian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/fr.po,4,7,19,0,0,0,0,4,7,fr.po,,fr,,french,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/gu.po,4,7,8,0,0,0,0,4,7,gu.po,,gu,,gujarati,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/hi.po,4,7,6,0,0,0,0,4,7,hi.po,,hi,,hindi,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/hu.po,4,7,9,0,0,0,0,4,7,hu.po,,hu,,hungarian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ia.po,4,7,7,0,0,0,0,4,7,ia.po,,ia,,interlingua,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/it.po,4,7,8,0,0,0,0,4,7,it.po,,it,,italian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ja.po,4,7,6,0,0,0,0,4,7,ja.po,,ja,,japanese,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/kn.po,4,7,7,0,0,0,0,4,7,kn.po,,kn,,kannada,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ko.po,4,7,8,0,0,0,0,4,7,ko.po,,ko,,korean,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/lv.po,4,7,7,0,0,0,0,4,7,lv.po,,lv,,latvian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ml.po,4,7,7,0,0,0,0,4,7,ml.po,,ml,,malayalam,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/mr.po,4,7,8,0,0,0,0,4,7,mr.po,,mr,,marathi,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ms.po,4,7,10,0,0,0,0,4,7,ms.po,,ms,,malay,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/nl.po,4,7,7,0,0,0,0,4,7,nl.po,,nl,,dutch,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/or.po,4,7,12,0,0,0,0,4,7,or.po,,or,,odia,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pa.po,4,7,7,0,0,0,0,4,7,pa.po,,pa,,punjabi,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pl.po,4,7,8,0,0,0,0,4,7,pl.po,,pl,,polish,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pt_br.po,4,7,8,0,0,0,0,4,7,pt_br.po,,pt,br,portuguese,,brazil

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pt.po,4,7,8,0,0,0,0,4,7,pt.po,,pt,,portuguese,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ro.po,4,7,7,0,0,0,0,4,7,ro.po,,ro,,romanian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ru.po,4,7,7,0,0,0,0,4,7,ru.po,,ru,,russian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sk.po,4,7,7,0,0,0,0,4,7,sk.po,,sk,,slovak,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sr@latin.po,4,7,7,0,0,0,0,4,7,sr@latin.po,latin,sr,,serbian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sr.po,4,7,7,0,0,0,0,4,7,sr.po,,sr,,serbian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sv.po,4,7,7,0,0,0,0,4,7,sv.po,,sv,,swedish,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ta.po,4,7,7,0,0,0,0,4,7,ta.po,,ta,,tamil,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/te.po,4,7,9,0,0,0,0,4,7,te.po,,te,,telugu,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/tr.po,4,7,7,0,0,0,0,4,7,tr.po,,tr,,turkish,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/uk.po,4,7,10,0,0,0,0,4,7,uk.po,,uk,,ukrainian,,

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/zh_cn.po,4,7,6,0,0,0,0,4,7,zh_cn.po,,zh,cn,chinese,,china

- pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/zh_tw.po,4,7,7,0,0,0,0,4,7,zh_tw.po,,zh,tw,chinese,,taiwan

- parted-3.2-40.fc30.src.rpm.stats.csv,po/nl.po,550,4416,4407,0,0,0,0,550,4416,nl.po,,nl,,dutch,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/vi.po,550,4416,5897,0,0,0,0,550,4416,vi.po,,vi,,vietnamese,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/ca.po,154,1027,1173,113,1142,283,2247,550,4416,ca.po,,ca,,catalan,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/ja.po,550,4416,1666,0,0,0,0,550,4416,ja.po,,ja,,japanese,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/gl.po,340,2436,2865,12,85,198,1895,550,4416,gl.po,,gl,,galician,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/id.po,494,3917,3864,41,368,15,131,550,4416,id.po,,id,,indonesian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/it.po,550,4416,4678,0,0,0,0,550,4416,it.po,,it,,italian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/cs.po,456,3683,3248,56,494,38,239,550,4416,cs.po,,cs,,czech,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/ro.po,110,663,741,41,406,399,3347,550,4416,ro.po,,ro,,romanian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/de.po,550,4416,4379,0,0,0,0,550,4416,de.po,,de,,german,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/fr.po,518,4158,4933,25,195,7,63,550,4416,fr.po,,fr,,french,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/sk.po,536,4291,3966,10,93,4,32,550,4416,sk.po,,sk,,slovak,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/uk.po,550,4416,4105,0,0,0,0,550,4416,uk.po,,uk,,ukrainian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/zh_cn.po,155,1007,363,111,1183,284,2226,550,4416,zh_cn.po,,zh,cn,chinese,,china

- parted-3.2-40.fc30.src.rpm.stats.csv,po/sv.po,424,3121,3008,44,397,82,898,550,4416,sv.po,,sv,,swedish,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/pt_br.po,550,4416,4968,0,0,0,0,550,4416,pt_br.po,,pt,br,portuguese,,brazil

- parted-3.2-40.fc30.src.rpm.stats.csv,po/nn.po,157,1052,974,113,1191,280,2173,550,4416,nn.po,,nn,,norwegian nynorsk,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/ru.po,550,4416,3987,0,0,0,0,550,4416,ru.po,,ru,,russian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/tr.po,536,4291,3605,10,93,4,32,550,4416,tr.po,,tr,,turkish,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/pt.po,112,786,860,120,1017,318,2613,550,4416,pt.po,,pt,,portuguese,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/sl.po,513,4060,3820,29,292,8,64,550,4416,sl.po,,sl,,slovenian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/sr.po,535,4290,4198,8,86,7,40,550,4416,sr.po,,sr,,serbian,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/rw.po,16,16,17,227,2179,307,2221,550,4416,rw.po,,rw,,kinyarwanda,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/es.po,217,1706,1989,79,702,254,2008,550,4416,es.po,,es,,spanish,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/da.po,433,3165,3069,26,211,91,1040,550,4416,da.po,,da,,danish,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/pl.po,550,4416,4257,0,0,0,0,550,4416,pl.po,,pl,,polish,,

- parted-3.2-40.fc30.src.rpm.stats.csv,po/zh_tw.po,535,4290,1578,8,86,7,40,550,4416,zh_tw.po,,zh,tw,chinese,,taiwan

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/zh_tw.po,56,329,125,0,0,1,7,57,336,zh_tw.po,,zh,tw,chinese,,taiwan

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,57,336,57,336,gl.po,,gl,,galician,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/bs.po,49,267,299,0,0,8,69,57,336,bs.po,,bs,,bosnian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ast.po,49,267,318,0,0,8,69,57,336,ast.po,,ast,,asturian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/fi.po,56,329,282,0,0,1,7,57,336,fi.po,,fi,,finnish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/eu.po,21,88,81,0,0,36,248,57,336,eu.po,,eu,,basque,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,57,336,57,336,ur.po,,ur,,urdu,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/nl.po,56,329,357,0,0,1,7,57,336,nl.po,,nl,,dutch,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ko.po,56,329,333,0,0,1,7,57,336,ko.po,,ko,,korean,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,57,336,57,336,my.po,,my,,burmese,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/cs.po,56,329,306,0,0,1,7,57,336,cs.po,,cs,,czech,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ml.po,56,329,329,0,0,1,7,57,336,ml.po,,ml,,malayalam,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/as.po,54,306,380,0,0,3,30,57,336,as.po,,as,,assamese,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/tr.po,56,329,315,0,0,1,7,57,336,tr.po,,tr,,turkish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/nds.po,17,51,52,0,0,40,285,57,336,nds.po,,nds,,low german,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sk.po,56,329,314,0,0,1,7,57,336,sk.po,,sk,,slovak,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/te.po,54,306,297,0,0,3,30,57,336,te.po,,te,,telugu,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sr@latin.po,49,267,288,0,0,8,69,57,336,sr@latin.po,latin,sr,,serbian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ja.po,54,306,137,0,0,3,30,57,336,ja.po,,ja,,japanese,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/bn.po,54,306,348,0,0,3,30,57,336,bn.po,,bn,,bangla,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sl.po,54,306,319,0,0,3,30,57,336,sl.po,,sl,,slovenian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/da.po,56,329,310,0,0,1,7,57,336,da.po,,da,,danish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,57,336,57,336,cy.po,,cy,,welsh,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/bg.po,54,306,338,0,0,3,30,57,336,bg.po,,bg,,bulgarian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/fa.po,20,97,118,0,0,37,239,57,336,fa.po,,fa,,persian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/fr.po,56,329,425,0,0,1,7,57,336,fr.po,,fr,,french,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/or.po,49,267,328,0,0,8,69,57,336,or.po,,or,,odia,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,57,336,57,336,hy.po,,hy,,armenian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/is.po,17,56,50,0,0,40,280,57,336,is.po,,is,,icelandic,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/pa.po,49,267,305,0,0,8,69,57,336,pa.po,,pa,,punjabi,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/es.po,56,329,397,0,0,1,7,57,336,es.po,,es,,spanish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ms.po,41,225,226,0,0,16,111,57,336,ms.po,,ms,,malay,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/id.po,56,329,351,0,0,1,7,57,336,id.po,,id,,indonesian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/en_gb.po,49,267,267,0,0,8,69,57,336,en_gb.po,,en,gb,english,,united kingdom

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/pt_br.po,56,329,401,0,0,1,7,57,336,pt_br.po,,pt,br,portuguese,,brazil

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ka.po,42,212,200,0,0,15,124,57,336,ka.po,,ka,,georgian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/pl.po,56,329,321,0,0,1,7,57,336,pl.po,,pl,,polish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,57,336,57,336,lo.po,,lo,,lao,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sv.po,56,329,311,0,0,1,7,57,336,sv.po,,sv,,swedish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,57,336,57,336,wa.po,,wa,,walloon,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sr.po,56,329,342,0,0,1,7,57,336,sr.po,,sr,,serbian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/el.po,54,306,347,0,0,3,30,57,336,el.po,,el,,greek,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/nb.po,54,306,292,0,0,3,30,57,336,nb.po,,nb,,norwegian bokmål,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/it.po,56,329,352,0,0,1,7,57,336,it.po,,it,,italian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ar.po,49,267,291,0,0,8,69,57,336,ar.po,,ar,,arabic,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,57,336,57,336,ku.po,,ku,,kurdish,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ro.po,54,306,335,0,0,3,30,57,336,ro.po,,ro,,romanian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,57,336,57,336,vi.po,,vi,,vietnamese,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/hr.po,47,259,289,0,0,10,77,57,336,hr.po,,hr,,croatian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/hu.po,56,329,321,0,0,1,7,57,336,hu.po,,hu,,hungarian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/mr.po,49,267,284,0,0,8,69,57,336,mr.po,,mr,,marathi,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,57,336,57,336,he.po,,he,,hebrew,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/kn.po,54,306,303,0,0,3,30,57,336,kn.po,,kn,,kannada,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,57,336,57,336,et.po,,et,,estonian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/de.po,56,329,343,0,0,1,7,57,336,de.po,,de,,german,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ru.po,56,329,302,0,0,1,7,57,336,ru.po,,ru,,russian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/hi.po,49,267,327,0,0,8,69,57,336,hi.po,,hi,,hindi,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/bn_in.po,54,306,348,0,0,3,30,57,336,bn_in.po,,bn,in,bangla,,india

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/zh_cn.po,56,329,118,0,0,1,7,57,336,zh_cn.po,,zh,cn,chinese,,china

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ta.po,49,267,246,0,0,8,69,57,336,ta.po,,ta,,tamil,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/ca.po,56,329,443,0,0,1,7,57,336,ca.po,,ca,,catalan,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/sq.po,56,329,400,0,0,1,7,57,336,sq.po,,sq,,albanian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/gu.po,49,267,300,0,0,8,69,57,336,gu.po,,gu,,gujarati,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/pt.po,56,329,398,0,0,1,7,57,336,pt.po,,pt,,portuguese,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/mk.po,47,259,305,0,0,10,77,57,336,mk.po,,mk,,macedonian,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,57,336,57,336,si.po,,si,,sinhala,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,57,336,57,336,nn.po,,nn,,norwegian nynorsk,,

- passwd-0.80-5.fc30.src.rpm.stats.csv,po/uk.po,56,329,351,0,0,1,7,57,336,uk.po,,uk,,ukrainian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/hu.po,12,40,37,0,0,0,0,12,40,hu.po,,hu,,hungarian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/de.po,12,40,39,0,0,0,0,12,40,de.po,,de,,german,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/id.po,10,35,34,0,0,0,0,10,35,id.po,,id,,indonesian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/sr@latin.po,12,40,46,0,0,0,0,12,40,sr@latin.po,latin,sr,,serbian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/cs.po,12,40,44,0,0,0,0,12,40,cs.po,,cs,,czech,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/sl.po,12,40,49,0,0,0,0,12,40,sl.po,,sl,,slovenian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/pt.po,12,40,45,0,0,0,0,12,40,pt.po,,pt,,portuguese,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/tr.po,12,40,40,0,0,0,0,12,40,tr.po,,tr,,turkish,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/bs.po,12,40,43,0,0,0,0,12,40,bs.po,,bs,,bosnian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/el.po,12,40,41,0,0,0,0,12,40,el.po,,el,,greek,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/pt_br.po,12,40,44,0,0,0,0,12,40,pt_br.po,,pt,br,portuguese,,brazil

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/sr.po,12,40,46,0,0,0,0,12,40,sr.po,,sr,,serbian,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/da.po,12,40,40,0,0,0,0,12,40,da.po,,da,,danish,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/es.po,12,40,48,0,0,0,0,12,40,es.po,,es,,spanish,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/pl.po,12,40,55,0,0,0,0,12,40,pl.po,,pl,,polish,,

- phodav-2.2-4.fc30.src.rpm.stats.csv,po/sv.po,12,40,43,0,0,0,0,12,40,sv.po,,sv,,swedish,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ru.po,53,315,297,1,6,0,0,54,321,ru.po,,ru,,russian,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/pl.po,51,307,319,3,14,0,0,54,321,pl.po,,pl,,polish,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/cs.po,53,315,304,1,6,0,0,54,321,cs.po,,cs,,czech,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/vi.po,53,315,437,1,6,0,0,54,321,vi.po,,vi,,vietnamese,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/de.po,49,203,205,4,111,1,7,54,321,de.po,,de,,german,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/pt_br.po,53,315,362,1,6,0,0,54,321,pt_br.po,,pt,br,portuguese,,brazil

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/eu.po,52,311,306,2,10,0,0,54,321,eu.po,,eu,,basque,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ro.po,53,315,363,1,6,0,0,54,321,ro.po,,ro,,romanian,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/sv.po,22,83,84,8,40,24,198,54,321,sv.po,,sv,,swedish,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/nl.po,53,315,336,1,6,0,0,54,321,nl.po,,nl,,dutch,,

- pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ja.po,40,169,58,7,124,7,28,54,321,ja.po,,ja,,japanese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/es.po,27,229,236,0,0,1,7,28,236,es.po,,es,,spanish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/cs.po,1,1,1,0,0,27,235,28,236,cs.po,,cs,,czech,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ja.po,28,236,117,0,0,0,0,28,236,ja.po,,ja,,japanese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nl.po,28,236,240,0,0,0,0,28,236,nl.po,,nl,,dutch,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_tw.po,5,30,7,0,0,23,206,28,236,zh_tw.po,,zh,tw,chinese,,taiwan

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sv.po,28,236,211,0,0,0,0,28,236,sv.po,,sv,,swedish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/uk.po,28,236,227,0,0,0,0,28,236,uk.po,,uk,,ukrainian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn_in.po,564,3618,3652,0,0,134,879,698,4497,bn_in.po,,bn,in,bangla,,india

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zu.po,10,10,11,0,0,688,4487,698,4497,zu.po,,zu,,zulu,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/as.po,564,3618,3545,0,0,134,879,698,4497,as.po,,as,,assamese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ko.po,556,3554,2985,0,0,142,943,698,4497,ko.po,,ko,,korean,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/da.po,268,1289,1154,0,0,430,3208,698,4497,da.po,,da,,danish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/kn.po,565,3619,2964,0,0,133,878,698,4497,kn.po,,kn,,kannada,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ia.po,18,19,20,0,0,680,4478,698,4497,ia.po,,ia,,interlingua,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4491,698,4497,fil.po,,fil,,filipino,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_hk.po,4,4,4,0,0,694,4493,698,4497,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fi.po,271,1282,1095,0,0,427,3215,698,4497,fi.po,,fi,,finnish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bal.po,7,7,7,0,0,691,4490,698,4497,bal.po,,bal,,baluchi,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ar.po,219,1149,1144,0,0,479,3348,698,4497,ar.po,,ar,,arabic,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sr.po,224,1155,1250,0,0,474,3342,698,4497,sr.po,,sr,,serbian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sk.po,157,775,702,0,0,541,3722,698,4497,sk.po,,sk,,slovak,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mai.po,184,932,1042,0,0,514,3565,698,4497,mai.po,,mai,,maithili,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/is.po,25,25,27,0,0,673,4472,698,4497,is.po,,is,,icelandic,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/el.po,55,109,111,0,0,643,4388,698,4497,el.po,,el,,greek,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hr.po,171,813,814,0,0,527,3684,698,4497,hr.po,,hr,,croatian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bg.po,244,1250,1448,0,0,454,3247,698,4497,bg.po,,bg,,bulgarian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/eo.po,4,4,4,0,0,694,4493,698,4497,eo.po,,eo,,esperanto,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hu.po,405,2084,1961,0,0,293,2413,698,4497,hu.po,,hu,,hungarian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_cn.po,579,3713,1314,0,0,119,784,698,4497,zh_cn.po,,zh,cn,chinese,,china

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tg.po,20,20,24,0,0,678,4477,698,4497,tg.po,,tg,,tajik,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pt_br.po,579,3713,4471,0,0,119,784,698,4497,pt_br.po,,pt,br,portuguese,,brazil

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mn.po,8,8,8,0,0,690,4489,698,4497,mn.po,,mn,,mongolian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ga.po,8,8,9,0,0,690,4489,698,4497,ga.po,,ga,,irish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/or.po,564,3618,3813,0,0,134,879,698,4497,or.po,,or,,odia,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/de_ch.po,7,7,7,0,0,691,4490,698,4497,de_ch.po,,de,ch,german,,switzerland

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/vi.po,20,21,35,0,0,678,4476,698,4497,vi.po,,vi,,vietnamese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/be.po,19,19,19,0,0,679,4478,698,4497,be.po,,be,,belarusian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sl.po,18,18,18,0,0,680,4479,698,4497,sl.po,,sl,,slovenian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/my.po,7,7,7,0,0,691,4490,698,4497,my.po,,my,,burmese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lt.po,22,22,24,0,0,676,4475,698,4497,lt.po,,lt,,lithuanian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/af.po,10,10,11,0,0,688,4487,698,4497,af.po,,af,,afrikaans,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/en_gb.po,225,1158,1158,0,0,473,3339,698,4497,en_gb.po,,en,gb,english,,united kingdom

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sr@latin.po,220,1151,1245,0,0,478,3346,698,4497,sr@latin.po,latin,sr,,serbian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/brx.po,1,1,2,0,0,697,4496,698,4497,brx.po,,brx,,bodo,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ta.po,564,3618,2946,0,0,134,879,698,4497,ta.po,,ta,,tamil,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ilo.po,8,8,10,0,0,690,4489,698,4497,ilo.po,,ilo,,iloko,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ms.po,80,432,420,0,0,618,4065,698,4497,ms.po,,ms,,malay,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lv.po,21,21,22,0,0,677,4476,698,4497,lv.po,,lv,,latvian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pa.po,564,3618,4051,0,0,134,879,698,4497,pa.po,,pa,,punjabi,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/gl.po,23,24,26,0,0,675,4473,698,4497,gl.po,,gl,,galician,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ru.po,578,3706,3104,0,0,120,791,698,4497,ru.po,,ru,,russian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/gu.po,564,3618,3833,0,0,134,879,698,4497,gu.po,,gu,,gujarati,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bs.po,138,754,757,0,0,560,3743,698,4497,bs.po,,bs,,bosnian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/kk.po,20,20,22,0,0,678,4477,698,4497,kk.po,,kk,,kazakh,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn.po,29,29,33,0,0,669,4468,698,4497,bn.po,,bn,,bangla,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pl.po,627,4005,3706,0,0,71,492,698,4497,pl.po,,pl,,polish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tr.po,41,52,55,0,0,657,4445,698,4497,tr.po,,tr,,turkish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fa.po,23,23,28,0,0,675,4474,698,4497,fa.po,,fa,,persian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ca.po,576,3679,4536,0,0,122,818,698,4497,ca.po,,ca,,catalan,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/id.po,32,33,34,0,0,666,4464,698,4497,id.po,,id,,indonesian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sq.po,30,30,35,0,0,668,4467,698,4497,sq.po,,sq,,albanian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/he.po,28,28,30,0,0,670,4469,698,4497,he.po,,he,,hebrew,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ur.po,12,12,16,0,0,686,4485,698,4497,ur.po,,ur,,urdu,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ne.po,8,8,11,0,0,690,4489,698,4497,ne.po,,ne,,nepali,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ast.po,9,9,9,0,0,689,4488,698,4497,ast.po,,ast,,asturian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/th.po,21,21,21,0,0,677,4476,698,4497,th.po,,th,,thai,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/am.po,9,9,11,0,0,689,4488,698,4497,am.po,,am,,amharic,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hi.po,564,3618,4038,0,0,134,879,698,4497,hi.po,,hi,,hindi,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nds.po,28,29,28,0,0,670,4468,698,4497,nds.po,,nds,,low german,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/eu.po,39,48,50,0,0,659,4449,698,4497,eu.po,,eu,,basque,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fr.po,627,4005,4749,0,0,71,492,698,4497,fr.po,,fr,,french,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/br.po,10,10,12,0,0,688,4487,698,4497,br.po,,br,,breton,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/et.po,31,31,32,0,0,667,4466,698,4497,et.po,,et,,estonian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/si.po,19,19,24,0,0,679,4478,698,4497,si.po,,si,,sinhala,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ml.po,564,3618,2805,0,0,134,879,698,4497,ml.po,,ml,,malayalam,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ky.po,1,1,1,0,0,697,4496,698,4497,ky.po,,ky,,kyrgyz,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/te.po,564,3618,2852,0,0,134,879,698,4497,te.po,,te,,telugu,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ka.po,24,24,24,0,0,674,4473,698,4497,ka.po,,ka,,georgian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mr.po,564,3618,3319,0,0,134,879,698,4497,mr.po,,mr,,marathi,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nb.po,44,69,73,0,0,654,4428,698,4497,nb.po,,nb,,norwegian bokmål,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nn.po,23,23,26,0,0,675,4474,698,4497,nn.po,,nn,,norwegian nynorsk,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/km.po,9,9,9,0,0,689,4488,698,4497,km.po,,km,,khmer,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pt.po,227,1159,1489,0,0,471,3338,698,4497,pt.po,,pt,,portuguese,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fur.po,18,18,20,0,0,680,4479,698,4497,fur.po,,fur,,friulian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ro.po,25,25,25,0,0,673,4472,698,4497,ro.po,,ro,,romanian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/de.po,579,3713,3407,0,0,119,784,698,4497,de.po,,de,,german,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/cy.po,14,14,15,0,0,684,4483,698,4497,cy.po,,cy,,welsh,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nso.po,9,9,10,0,0,689,4488,698,4497,nso.po,,nso,,northern sotho,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mk.po,128,744,912,0,0,570,3753,698,4497,mk.po,,mk,,macedonian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/it.po,577,3704,3949,0,0,121,793,698,4497,it.po,,it,,italian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,1078,7678,1078,7678,xh.po,,xh,,xhosa,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,1078,7678,1078,7678,wo.po,,wo,,wolof,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/vi_vn.po,0,0,0,0,0,1078,7678,1078,7678,vi_vn.po,,vi,vn,vietnamese,,vietnam

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,1078,7678,1078,7678,tl.po,,tl,,tagalog,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/si_lk.po,0,0,0,0,0,1078,7678,1078,7678,si_lk.po,,si,lk,sinhala,,sri lanka

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,1078,7678,1078,7678,mg.po,,mg,,malagasy,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lv_lv.po,0,0,0,0,0,1078,7678,1078,7678,lv_lv.po,,lv,lv,latvian,,latvia

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lt_lt.po,0,0,0,0,0,1078,7678,1078,7678,lt_lt.po,,lt,lt,lithuanian,,lithuania

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,1078,7678,1078,7678,lo.po,,lo,,lao,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,1078,7678,1078,7678,la.po,,la,,latin,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,1078,7678,1078,7678,ku.po,,ku,,kurdish,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,1078,7678,1078,7678,ks.po,,ks,,kashmiri,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,1078,7678,1078,7678,hy.po,,hy,,armenian,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/es_mx.po,0,0,0,0,0,1078,7678,1078,7678,es_mx.po,,es,mx,spanish,,mexico

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,1078,7678,1078,7678,dz.po,,dz,,dzongkha,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,1078,7678,1078,7678,bo.po,,bo,,tibetan,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn_bd.po,0,0,0,0,0,1078,7678,1078,7678,bn_bd.po,,bn,bd,bangla,,bangladesh

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,1078,7678,1078,7678,az.po,,az,,azerbaijani,,

- policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,1078,7678,1078,7678,aln.po,,aln,,gheg albanian,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/id.po,26,228,214,0,0,0,0,26,228,id.po,,id,,indonesian,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/da.po,2,20,22,4,41,20,167,26,228,da.po,,da,,danish,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/uk.po,26,228,238,0,0,0,0,26,228,uk.po,,uk,,ukrainian,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/sv.po,26,228,215,0,0,0,0,26,228,sv.po,,sv,,swedish,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/pt_br.po,26,228,257,0,0,0,0,26,228,pt_br.po,,pt,br,portuguese,,brazil

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/de.po,26,228,215,0,0,0,0,26,228,de.po,,de,,german,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/sk.po,26,228,245,0,0,0,0,26,228,sk.po,,sk,,slovak,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/hr.po,26,228,210,0,0,0,0,26,228,hr.po,,hr,,croatian,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/pl.po,26,228,228,0,0,0,0,26,228,pl.po,,pl,,polish,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/cs.po,25,141,129,1,87,0,0,26,228,cs.po,,cs,,czech,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/zh_cn.po,25,227,102,0,0,1,1,26,228,zh_cn.po,,zh,cn,chinese,,china

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/tr.po,26,228,222,0,0,0,0,26,228,tr.po,,tr,,turkish,,

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/zh_tw.po,26,228,94,0,0,0,0,26,228,zh_tw.po,,zh,tw,chinese,,taiwan

- polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/hu.po,26,228,213,0,0,0,0,26,228,hu.po,,hu,,hungarian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/pl.po,29,78,76,0,0,2,6,31,84,pl.po,,pl,,polish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/zh_cn.po,29,78,40,0,0,2,6,31,84,zh_cn.po,,zh,cn,chinese,,china

- popt-1.16-17.fc30.src.rpm.stats.csv,po/nb.po,24,61,58,2,8,5,15,31,84,nb.po,,nb,,norwegian bokmål,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/ro.po,11,31,32,3,16,17,37,31,84,ro.po,,ro,,romanian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/fi.po,29,78,76,0,0,2,6,31,84,fi.po,,fi,,finnish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/ko.po,24,61,61,2,8,5,15,31,84,ko.po,,ko,,korean,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/de.po,29,78,75,0,0,2,6,31,84,de.po,,de,,german,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/da.po,29,78,75,0,0,2,6,31,84,da.po,,da,,danish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/wa.po,2,8,15,1,5,28,71,31,84,wa.po,,wa,,walloon,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/ga.po,29,78,91,0,0,2,6,31,84,ga.po,,ga,,irish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/hu.po,26,68,69,3,10,2,6,31,84,hu.po,,hu,,hungarian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/sv.po,29,78,75,0,0,2,6,31,84,sv.po,,sv,,swedish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/ja.po,26,68,26,3,10,2,6,31,84,ja.po,,ja,,japanese,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/sl.po,2,8,10,1,5,28,71,31,84,sl.po,,sl,,slovenian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/sk.po,2,8,8,1,5,28,71,31,84,sk.po,,sk,,slovak,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/ru.po,29,78,80,0,0,2,6,31,84,ru.po,,ru,,russian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/lv.po,29,78,75,0,0,2,6,31,84,lv.po,,lv,,latvian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/es.po,21,48,54,2,8,8,28,31,84,es.po,,es,,spanish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/fr.po,24,61,73,2,8,5,15,31,84,fr.po,,fr,,french,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/th.po,29,78,38,0,0,2,6,31,84,th.po,,th,,thai,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/vi.po,29,78,140,0,0,2,6,31,84,vi.po,,vi,,vietnamese,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/is.po,24,61,68,2,8,5,15,31,84,is.po,,is,,icelandic,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/nl.po,29,78,88,0,0,2,6,31,84,nl.po,,nl,,dutch,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/it.po,29,78,90,0,0,2,6,31,84,it.po,,it,,italian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/id.po,29,78,82,0,0,2,6,31,84,id.po,,id,,indonesian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/cs.po,29,78,79,0,0,2,6,31,84,cs.po,,cs,,czech,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/zh_tw.po,24,61,26,2,8,5,15,31,84,zh_tw.po,,zh,tw,chinese,,taiwan

- popt-1.16-17.fc30.src.rpm.stats.csv,po/tr.po,21,48,52,3,13,7,23,31,84,tr.po,,tr,,turkish,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/uk.po,2,8,8,1,5,28,71,31,84,uk.po,,uk,,ukrainian,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/eo.po,29,78,89,0,0,2,6,31,84,eo.po,,eo,,esperanto,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/gl.po,21,48,56,3,13,7,23,31,84,gl.po,,gl,,galician,,

- popt-1.16-17.fc30.src.rpm.stats.csv,po/pt.po,24,61,69,2,8,5,15,31,84,pt.po,,pt,,portuguese,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/fr.po,593,5211,5721,0,0,0,0,593,5211,fr.po,,fr,,french,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/zh_cn.po,34,41,37,0,0,559,5170,593,5211,zh_cn.po,,zh,cn,chinese,,china

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/de.po,583,4927,5018,1,60,9,224,593,5211,de.po,,de,,german,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/pl.po,593,5211,4699,0,0,0,0,593,5211,pl.po,,pl,,polish,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/sv.po,593,5211,4807,0,0,0,0,593,5211,sv.po,,sv,,swedish,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/uk.po,593,5211,5270,0,0,0,0,593,5211,uk.po,,uk,,ukrainian,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/pt_br.po,593,5211,5656,0,0,0,0,593,5211,pt_br.po,,pt,br,portuguese,,brazil

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/fr.po,795,4574,5399,3,19,0,0,798,4593,fr.po,,fr,,french,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/zh_cn.po,63,158,105,347,1194,388,3241,798,4593,zh_cn.po,,zh,cn,chinese,,china

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/de.po,690,3410,3371,9,61,99,1122,798,4593,de.po,,de,,german,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/pl.po,795,4574,4588,3,19,0,0,798,4593,pl.po,,pl,,polish,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/sv.po,795,4574,4385,3,19,0,0,798,4593,sv.po,,sv,,swedish,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/uk.po,795,4574,4883,3,19,0,0,798,4593,uk.po,,uk,,ukrainian,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/vi.po,754,4366,6158,21,158,23,69,798,4593,vi.po,,vi,,vietnamese,,

- procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/pt_br.po,795,4574,5145,3,19,0,0,798,4593,pt_br.po,,pt,br,portuguese,,brazil

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/fr.po,80,646,747,5,346,0,0,85,992,fr.po,,fr,,french,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/cs.po,75,497,498,10,495,0,0,85,992,cs.po,,cs,,czech,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/eo.po,80,646,678,5,346,0,0,85,992,eo.po,,eo,,esperanto,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ro.po,11,81,91,18,200,56,711,85,992,ro.po,,ro,,romanian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/fi.po,80,646,586,5,346,0,0,85,992,fi.po,,fi,,finnish,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/zh_cn.po,75,497,271,10,495,0,0,85,992,zh_cn.po,,zh,cn,chinese,,china

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ru.po,80,646,664,5,346,0,0,85,992,ru.po,,ru,,russian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ca.po,11,81,92,23,517,51,394,85,992,ca.po,,ca,,catalan,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/eu.po,68,452,457,16,533,1,7,85,992,eu.po,,eu,,basque,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/it.po,75,497,544,10,495,0,0,85,992,it.po,,it,,italian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/de.po,80,646,655,5,346,0,0,85,992,de.po,,de,,german,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pl.po,80,646,672,5,346,0,0,85,992,pl.po,,pl,,polish,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pt.po,2,10,11,14,91,69,891,85,992,pt.po,,pt,,portuguese,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/id.po,68,452,484,16,533,1,7,85,992,id.po,,id,,indonesian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/sv.po,80,646,656,5,346,0,0,85,992,sv.po,,sv,,swedish,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/zh_tw.po,75,497,243,10,495,0,0,85,992,zh_tw.po,,zh,tw,chinese,,taiwan

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ja.po,34,203,87,21,512,30,277,85,992,ja.po,,ja,,japanese,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/hu.po,80,646,651,5,346,0,0,85,992,hu.po,,hu,,hungarian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/uk.po,80,646,716,5,346,0,0,85,992,uk.po,,uk,,ukrainian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/vi.po,80,646,975,5,346,0,0,85,992,vi.po,,vi,,vietnamese,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pt_br.po,80,646,738,5,346,0,0,85,992,pt_br.po,,pt,br,portuguese,,brazil

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/bg.po,34,203,270,21,512,30,277,85,992,bg.po,,bg,,bulgarian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/nl.po,80,646,678,5,346,0,0,85,992,nl.po,,nl,,dutch,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/nb.po,34,203,212,21,512,30,277,85,992,nb.po,,nb,,norwegian bokmål,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/el.po,80,646,703,5,346,0,0,85,992,el.po,,el,,greek,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/sr.po,80,646,678,5,346,0,0,85,992,sr.po,,sr,,serbian,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/da.po,80,646,648,5,346,0,0,85,992,da.po,,da,,danish,,

- psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/hr.po,80,646,659,5,346,0,0,85,992,hr.po,,hr,,croatian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/fi.po,409,2013,1649,44,952,43,339,496,3304,fi.po,,fi,,finnish,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/es.po,409,2013,2386,44,952,43,339,496,3304,es.po,,es,,spanish,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/id.po,522,3403,3284,14,181,0,0,536,3584,id.po,,id,,indonesian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/el.po,551,3584,3652,0,0,0,0,551,3584,el.po,,el,,greek,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,529,3529,1460,0,0,0,0,529,3529,zh_cn.po,,zh,cn,chinese,,china

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/cs.po,464,2840,2701,6,148,26,316,496,3304,cs.po,,cs,,czech,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hi.po,407,2011,2239,43,951,46,342,496,3304,hi.po,,hi,,hindi,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/lt.po,538,3588,3303,0,0,0,0,538,3588,lt.po,,lt,,lithuanian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/uk.po,536,3584,3655,0,0,0,0,536,3584,uk.po,,uk,,ukrainian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/de_ch.po,369,1754,1566,57,906,70,644,496,3304,de_ch.po,,de,ch,german,,switzerland

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ta.po,407,2011,1835,43,951,46,342,496,3304,ta.po,,ta,,tamil,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/mr.po,407,2011,2002,43,951,46,342,496,3304,mr.po,,mr,,marathi,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ja.po,496,3304,1617,0,0,0,0,496,3304,ja.po,,ja,,japanese,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/nn.po,531,3552,3298,0,0,0,0,531,3552,nn.po,,nn,,norwegian nynorsk,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sv.po,536,3579,3262,0,0,0,0,536,3579,sv.po,,sv,,swedish,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,534,3573,1526,0,0,0,0,534,3573,zh_tw.po,,zh,tw,chinese,,taiwan

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pl.po,536,3584,3501,0,0,0,0,536,3584,pl.po,,pl,,polish,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/bn_in.po,407,2011,2154,43,951,46,342,496,3304,bn_in.po,,bn,in,bangla,,india

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/fr.po,521,3450,4057,0,0,0,0,521,3450,fr.po,,fr,,french,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/te.po,407,2011,1809,43,951,46,342,496,3304,te.po,,te,,telugu,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/de.po,526,3513,3264,0,0,4,11,530,3524,de.po,,de,,german,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sk.po,367,1253,1199,0,0,163,2286,530,3539,sk.po,,sk,,slovak,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pt.po,374,1932,2171,55,981,67,391,496,3304,pt.po,,pt,,portuguese,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hu.po,530,3524,3484,0,0,0,0,530,3524,hu.po,,hu,,hungarian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/be.po,529,3516,3289,1,8,0,0,530,3524,be.po,,be,,belarusian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/gu.po,407,2011,2207,43,951,46,342,496,3304,gu.po,,gu,,gujarati,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/oc.po,474,2206,2681,0,0,57,1337,531,3543,oc.po,,oc,,occitan,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/gl.po,498,3326,4000,0,0,3,22,501,3348,gl.po,,gl,,galician,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ru.po,551,3584,3652,0,0,0,0,551,3584,ru.po,,ru,,russian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pa.po,407,2011,2223,43,951,46,342,496,3304,pa.po,,pa,,punjabi,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sr@latin.po,407,2011,1980,43,951,46,342,496,3304,sr@latin.po,latin,sr,,serbian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/or.po,407,2011,2102,43,951,46,342,496,3304,or.po,,or,,odia,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/kn.po,407,2011,1869,43,951,46,342,496,3304,kn.po,,kn,,kannada,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ko.po,525,3475,3035,0,0,0,0,525,3475,ko.po,,ko,,korean,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,530,3524,3989,0,0,0,0,530,3524,pt_br.po,,pt,br,portuguese,,brazil

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hr.po,530,3550,3249,0,0,0,0,530,3550,hr.po,,hr,,croatian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/it.po,531,3552,3918,0,0,0,0,531,3552,it.po,,it,,italian,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/he.po,84,190,195,15,48,397,3066,496,3304,he.po,,he,,hebrew,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/tr.po,531,3552,3252,0,0,0,0,531,3552,tr.po,,tr,,turkish,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/nl.po,407,2011,1932,43,951,46,342,496,3304,nl.po,,nl,,dutch,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/as.po,406,2010,2145,44,952,46,342,496,3304,as.po,,as,,assamese,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ca.po,377,1937,2379,59,985,60,382,496,3304,ca.po,,ca,,catalan,,

- pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sr.po,407,2011,1980,43,951,46,342,496,3304,sr.po,,sr,,serbian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,179,1605,179,1605,zu.po,,zu,,zulu,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_tw.po,36,337,114,0,0,143,1268,179,1605,zh_tw.po,,zh,tw,chinese,,taiwan

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_tw.mo,36,337,114,0,0,0,0,36,337,zh_tw.mo,,zh,tw,chinese,,taiwan

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,179,1605,179,1605,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_cn.po,179,1605,686,0,0,0,0,179,1605,zh_cn.po,,zh,cn,chinese,,china

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_cn.mo,179,1605,686,0,0,0,0,179,1605,zh_cn.mo,,zh,cn,chinese,,china

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,179,1605,179,1605,yo.po,,yo,,yoruba,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,179,1605,179,1605,vi.po,,vi,,vietnamese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,179,1605,179,1605,ur.po,,ur,,urdu,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/uk.po,179,1605,1457,0,0,0,0,179,1605,uk.po,,uk,,ukrainian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/uk.mo,179,1605,1457,0,0,0,0,179,1605,uk.mo,,uk,,ukrainian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,179,1605,179,1605,tw.po,,tw,,twi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tr.po,26,268,216,0,0,153,1337,179,1605,tr.po,,tr,,turkish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tr.mo,26,268,216,0,0,0,0,26,268,tr.mo,,tr,,turkish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/th.po,24,259,106,0,0,155,1346,179,1605,th.po,,th,,thai,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/th.mo,24,259,106,0,0,0,0,24,259,th.mo,,th,,thai,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,179,1605,179,1605,tg.po,,tg,,tajik,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/te.po,23,250,201,0,0,156,1355,179,1605,te.po,,te,,telugu,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/te.mo,23,250,201,0,0,0,0,23,250,te.mo,,te,,telugu,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ta.po,14,171,120,0,0,165,1434,179,1605,ta.po,,ta,,tamil,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ta.mo,14,171,120,0,0,0,0,14,171,ta.mo,,ta,,tamil,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sv.po,179,1605,1432,0,0,0,0,179,1605,sv.po,,sv,,swedish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sv.mo,179,1605,1432,0,0,0,0,179,1605,sv.mo,,sv,,swedish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr@latin.po,14,171,151,0,0,165,1434,179,1605,sr@latin.po,latin,sr,,serbian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr@latin.mo,14,171,151,0,0,0,0,14,171,sr@latin.mo,latin,sr,,serbian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr.po,116,1065,985,0,0,63,540,179,1605,sr.po,,sr,,serbian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr.mo,116,1065,985,0,0,0,0,116,1065,sr.mo,,sr,,serbian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,179,1605,179,1605,sq.po,,sq,,albanian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sl.po,13,166,134,0,0,166,1439,179,1605,sl.po,,sl,,slovenian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sl.mo,13,166,134,0,0,0,0,13,166,sl.mo,,sl,,slovenian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sk.po,171,1527,1378,0,0,8,78,179,1605,sk.po,,sk,,slovak,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sk.mo,171,1527,1378,0,0,0,0,171,1527,sk.mo,,sk,,slovak,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,179,1605,179,1605,si.po,,si,,sinhala,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ru.po,170,1521,1285,0,0,9,84,179,1605,ru.po,,ru,,russian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ru.mo,170,1521,1285,0,0,0,0,170,1521,ru.mo,,ru,,russian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,179,1605,179,1605,ro.po,,ro,,romanian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt_br.po,145,1303,1391,0,0,34,302,179,1605,pt_br.po,,pt,br,portuguese,,brazil

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt_br.mo,145,1303,1391,0,0,0,0,145,1303,pt_br.mo,,pt,br,portuguese,,brazil

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt.po,38,359,386,0,0,141,1246,179,1605,pt.po,,pt,,portuguese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt.mo,38,359,386,0,0,0,0,38,359,pt.mo,,pt,,portuguese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pl.po,179,1605,1499,0,0,0,0,179,1605,pl.po,,pl,,polish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pl.mo,179,1605,1499,0,0,0,0,179,1605,pl.mo,,pl,,polish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pa.po,24,257,295,0,0,155,1348,179,1605,pa.po,,pa,,punjabi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pa.mo,24,257,295,0,0,0,0,24,257,pa.mo,,pa,,punjabi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/or.po,24,257,236,0,0,155,1348,179,1605,or.po,,or,,odia,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/or.mo,24,257,236,0,0,0,0,24,257,or.mo,,or,,odia,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,179,1605,179,1605,nso.po,,nso,,northern sotho,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,179,1605,179,1605,nn.po,,nn,,norwegian nynorsk,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nl.po,179,1605,1633,0,0,0,0,179,1605,nl.po,,nl,,dutch,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nl.mo,179,1605,1633,0,0,0,0,179,1605,nl.mo,,nl,,dutch,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,179,1605,179,1605,ne.po,,ne,,nepali,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nds.po,4,34,33,0,0,175,1571,179,1605,nds.po,,nds,,low german,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nds.mo,4,34,33,0,0,0,0,4,34,nds.mo,,nds,,low german,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nb.po,14,171,155,0,0,165,1434,179,1605,nb.po,,nb,,norwegian bokmål,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nb.mo,14,171,155,0,0,0,0,14,171,nb.mo,,nb,,norwegian bokmål,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ms.po,13,166,153,0,0,166,1439,179,1605,ms.po,,ms,,malay,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ms.mo,13,166,153,0,0,0,0,13,166,ms.mo,,ms,,malay,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mr.po,14,171,159,0,0,165,1434,179,1605,mr.po,,mr,,marathi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mr.mo,14,171,159,0,0,0,0,14,171,mr.mo,,mr,,marathi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,179,1605,179,1605,mn.po,,mn,,mongolian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ml.po,14,171,126,0,0,165,1434,179,1605,ml.po,,ml,,malayalam,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ml.mo,14,171,126,0,0,0,0,14,171,ml.mo,,ml,,malayalam,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mk.po,13,166,170,0,0,166,1439,179,1605,mk.po,,mk,,macedonian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mk.mo,13,166,170,0,0,0,0,13,166,mk.mo,,mk,,macedonian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mai.po,13,166,165,0,0,166,1439,179,1605,mai.po,,mai,,maithili,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mai.mo,13,166,165,0,0,0,0,13,166,mai.mo,,mai,,maithili,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,179,1605,179,1605,lv.po,,lv,,latvian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,179,1605,179,1605,ky.po,,ky,,kyrgyz,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,179,1605,179,1605,kw_gb.po,,kw,gb,cornish,,united kingdom

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,179,1605,179,1605,kw@uccor.po,uccor,kw,,cornish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,179,1605,179,1605,kw@kkcor.po,kkcor,kw,,cornish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,179,1605,179,1605,kw.po,,kw,,cornish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ko.po,26,268,218,0,0,153,1337,179,1605,ko.po,,ko,,korean,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ko.mo,26,268,218,0,0,0,0,26,268,ko.mo,,ko,,korean,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kn.po,26,268,226,0,0,153,1337,179,1605,kn.po,,kn,,kannada,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kn.mo,26,268,226,0,0,0,0,26,268,kn.mo,,kn,,kannada,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,179,1605,179,1605,km.po,,km,,khmer,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,179,1605,179,1605,kk.po,,kk,,kazakh,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,179,1605,179,1605,ka.po,,ka,,georgian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ja.po,179,1605,666,0,0,0,0,179,1605,ja.po,,ja,,japanese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ja.mo,179,1605,666,0,0,0,0,179,1605,ja.mo,,ja,,japanese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/it.po,41,352,387,0,0,138,1253,179,1605,it.po,,it,,italian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/it.mo,41,352,387,0,0,0,0,41,352,it.mo,,it,,italian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/is.po,14,171,164,0,0,165,1434,179,1605,is.po,,is,,icelandic,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/is.mo,14,171,164,0,0,0,0,14,171,is.mo,,is,,icelandic,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,179,1605,179,1605,ilo.po,,ilo,,iloko,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/id.po,15,177,168,0,0,164,1428,179,1605,id.po,,id,,indonesian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/id.mo,15,177,168,0,0,0,0,15,177,id.mo,,id,,indonesian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ia.po,26,268,292,0,0,153,1337,179,1605,ia.po,,ia,,interlingua,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ia.mo,26,268,292,0,0,0,0,26,268,ia.mo,,ia,,interlingua,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hu.po,30,308,274,0,0,149,1297,179,1605,hu.po,,hu,,hungarian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hu.mo,30,308,274,0,0,0,0,30,308,hu.mo,,hu,,hungarian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hr.po,14,171,157,0,0,165,1434,179,1605,hr.po,,hr,,croatian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hr.mo,14,171,157,0,0,0,0,14,171,hr.mo,,hr,,croatian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hi.po,26,268,293,0,0,153,1337,179,1605,hi.po,,hi,,hindi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hi.mo,26,268,293,0,0,0,0,26,268,hi.mo,,hi,,hindi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/he.po,14,171,131,0,0,165,1434,179,1605,he.po,,he,,hebrew,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/he.mo,14,171,131,0,0,0,0,14,171,he.mo,,he,,hebrew,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gu.po,26,268,273,0,0,153,1337,179,1605,gu.po,,gu,,gujarati,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gu.mo,26,268,273,0,0,0,0,26,268,gu.mo,,gu,,gujarati,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gl.po,1,3,3,0,0,178,1602,179,1605,gl.po,,gl,,galician,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gl.mo,1,3,3,0,0,0,0,1,3,gl.mo,,gl,,galician,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fr.po,179,1605,1756,0,0,0,0,179,1605,fr.po,,fr,,french,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fr.mo,179,1605,1756,0,0,0,0,179,1605,fr.mo,,fr,,french,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fi.po,26,268,192,0,0,153,1337,179,1605,fi.po,,fi,,finnish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fi.mo,26,268,192,0,0,0,0,26,268,fi.mo,,fi,,finnish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fa.po,24,257,264,0,0,155,1348,179,1605,fa.po,,fa,,persian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fa.mo,24,257,264,0,0,0,0,24,257,fa.mo,,fa,,persian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eu.po,1,3,3,0,0,178,1602,179,1605,eu.po,,eu,,basque,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eu.mo,1,3,3,0,0,0,0,1,3,eu.mo,,eu,,basque,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,179,1605,179,1605,et.po,,et,,estonian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/es.po,179,1605,1747,0,0,0,0,179,1605,es.po,,es,,spanish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/es.mo,179,1605,1747,0,0,0,0,179,1605,es.mo,,es,,spanish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,179,1605,179,1605,eo.po,,eo,,esperanto,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/en_gb.po,24,257,257,0,0,155,1348,179,1605,en_gb.po,,en,gb,english,,united kingdom

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/en_gb.mo,24,257,257,0,0,0,0,24,257,en_gb.mo,,en,gb,english,,united kingdom

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/el.po,14,171,179,0,0,165,1434,179,1605,el.po,,el,,greek,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/el.mo,14,171,179,0,0,0,0,14,171,el.mo,,el,,greek,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de_ch.po,14,171,179,0,0,165,1434,179,1605,de_ch.po,,de,ch,german,,switzerland

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de_ch.mo,14,171,179,0,0,0,0,14,171,de_ch.mo,,de,ch,german,,switzerland

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de.po,145,1303,1259,0,0,34,302,179,1605,de.po,,de,,german,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de.mo,145,1303,1259,0,0,0,0,145,1303,de.mo,,de,,german,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/da.po,30,308,278,0,0,149,1297,179,1605,da.po,,da,,danish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/da.mo,30,308,278,0,0,0,0,30,308,da.mo,,da,,danish,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,179,1605,179,1605,cy.po,,cy,,welsh,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cs.po,170,1521,1316,0,0,9,84,179,1605,cs.po,,cs,,czech,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cs.mo,170,1521,1316,0,0,0,0,170,1521,cs.mo,,cs,,czech,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ca.po,173,1547,1762,0,0,6,58,179,1605,ca.po,,ca,,catalan,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ca.mo,173,1547,1762,0,0,0,0,173,1547,ca.mo,,ca,,catalan,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bs.po,17,212,192,0,0,162,1393,179,1605,bs.po,,bs,,bosnian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bs.mo,17,212,192,0,0,0,0,17,212,bs.mo,,bs,,bosnian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,179,1605,179,1605,brx.po,,brx,,bodo,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,179,1605,179,1605,br.po,,br,,breton,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,179,1605,179,1605,bo.po,,bo,,tibetan,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn_in.po,26,268,268,0,0,153,1337,179,1605,bn_in.po,,bn,in,bangla,,india

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn_in.mo,26,268,268,0,0,0,0,26,268,bn_in.mo,,bn,in,bangla,,india

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn.po,26,268,268,0,0,153,1337,179,1605,bn.po,,bn,,bangla,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn.mo,26,268,268,0,0,0,0,26,268,bn.mo,,bn,,bangla,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bg.po,29,297,284,0,0,150,1308,179,1605,bg.po,,bg,,bulgarian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bg.mo,29,297,284,0,0,0,0,29,297,bg.mo,,bg,,bulgarian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,179,1605,179,1605,be.po,,be,,belarusian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,179,1605,179,1605,bal.po,,bal,,baluchi,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ast.po,14,171,187,0,0,165,1434,179,1605,ast.po,,ast,,asturian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ast.mo,14,171,187,0,0,0,0,14,171,ast.mo,,ast,,asturian,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/as.po,30,308,290,0,0,149,1297,179,1605,as.po,,as,,assamese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/as.mo,30,308,290,0,0,0,0,30,308,as.mo,,as,,assamese,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ar.po,24,257,228,0,0,155,1348,179,1605,ar.po,,ar,,arabic,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ar.mo,24,257,228,0,0,0,0,24,257,ar.mo,,ar,,arabic,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,179,1605,179,1605,anp.po,,anp,,angika,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,179,1605,179,1605,am.po,,am,,amharic,,

- pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,179,1605,179,1605,af.po,,af,,afrikaans,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_tw.po,75,524,250,0,0,0,0,75,524,zh_tw.po,,zh,tw,chinese,,taiwan

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_tw.mo,75,524,250,0,0,0,0,75,524,zh_tw.mo,,zh,tw,chinese,,taiwan

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_cn.po,75,524,260,0,0,0,0,75,524,zh_cn.po,,zh,cn,chinese,,china

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_cn.mo,75,524,260,0,0,0,0,75,524,zh_cn.mo,,zh,cn,chinese,,china

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ur.po,3,37,37,0,0,72,487,75,524,ur.po,,ur,,urdu,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ur.mo,3,37,37,0,0,0,0,3,37,ur.mo,,ur,,urdu,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/uk.po,75,524,524,0,0,0,0,75,524,uk.po,,uk,,ukrainian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/uk.mo,75,524,524,0,0,0,0,75,524,uk.mo,,uk,,ukrainian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tr.po,10,62,49,0,0,65,462,75,524,tr.po,,tr,,turkish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tr.mo,10,62,49,0,0,0,0,10,62,tr.mo,,tr,,turkish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/th.po,7,52,16,0,0,68,472,75,524,th.po,,th,,thai,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/th.mo,7,52,16,0,0,0,0,7,52,th.mo,,th,,thai,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tg.po,3,12,15,0,0,72,512,75,524,tg.po,,tg,,tajik,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tg.mo,3,12,15,0,0,0,0,3,12,tg.mo,,tg,,tajik,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/te.po,56,326,290,0,0,19,198,75,524,te.po,,te,,telugu,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/te.mo,56,326,290,0,0,0,0,56,326,te.mo,,te,,telugu,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ta.po,43,290,254,0,0,32,234,75,524,ta.po,,ta,,tamil,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ta.mo,43,290,254,0,0,0,0,43,290,ta.mo,,ta,,tamil,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sv.po,75,524,525,0,0,0,0,75,524,sv.po,,sv,,swedish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sv.mo,75,524,525,0,0,0,0,75,524,sv.mo,,sv,,swedish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr@latin.po,21,188,187,0,0,54,336,75,524,sr@latin.po,latin,sr,,serbian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr@latin.mo,21,188,187,0,0,0,0,21,188,sr@latin.mo,latin,sr,,serbian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr.po,67,456,461,0,0,8,68,75,524,sr.po,,sr,,serbian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr.mo,67,456,461,0,0,0,0,67,456,sr.mo,,sr,,serbian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sq.po,5,43,37,0,0,70,481,75,524,sq.po,,sq,,albanian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sq.mo,5,43,37,0,0,0,0,5,43,sq.mo,,sq,,albanian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sl.po,3,37,29,0,0,72,487,75,524,sl.po,,sl,,slovenian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sl.mo,3,37,29,0,0,0,0,3,37,sl.mo,,sl,,slovenian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sk.po,72,518,519,0,0,3,6,75,524,sk.po,,sk,,slovak,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sk.mo,72,518,519,0,0,0,0,72,518,sk.mo,,sk,,slovak,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/si.po,24,206,204,0,0,51,318,75,524,si.po,,si,,sinhala,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/si.mo,24,206,204,0,0,0,0,24,206,si.mo,,si,,sinhala,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ru.po,75,524,486,0,0,0,0,75,524,ru.po,,ru,,russian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ru.mo,75,524,486,0,0,0,0,75,524,ru.mo,,ru,,russian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ro.po,3,37,33,0,0,72,487,75,524,ro.po,,ro,,romanian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ro.mo,3,37,33,0,0,0,0,3,37,ro.mo,,ro,,romanian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt_br.po,75,524,589,0,0,0,0,75,524,pt_br.po,,pt,br,portuguese,,brazil

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt_br.mo,75,524,589,0,0,0,0,75,524,pt_br.mo,,pt,br,portuguese,,brazil

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt.po,24,206,232,0,0,51,318,75,524,pt.po,,pt,,portuguese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt.mo,24,206,232,0,0,0,0,24,206,pt.mo,,pt,,portuguese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pl.po,75,524,530,0,0,0,0,75,524,pl.po,,pl,,polish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pl.mo,75,524,530,0,0,0,0,75,524,pl.mo,,pl,,polish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pa.po,43,290,355,0,0,32,234,75,524,pa.po,,pa,,punjabi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pa.mo,43,290,355,0,0,0,0,43,290,pa.mo,,pa,,punjabi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/or.po,43,290,322,0,0,32,234,75,524,or.po,,or,,odia,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/or.mo,43,290,322,0,0,0,0,43,290,or.mo,,or,,odia,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nso.po,3,37,42,0,0,72,487,75,524,nso.po,,nso,,northern sotho,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nso.mo,3,37,42,0,0,0,0,3,37,nso.mo,,nso,,northern sotho,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nl.po,75,524,552,0,0,0,0,75,524,nl.po,,nl,,dutch,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nl.mo,75,524,552,0,0,0,0,75,524,nl.mo,,nl,,dutch,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ne.po,3,37,31,0,0,72,487,75,524,ne.po,,ne,,nepali,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ne.mo,3,37,31,0,0,0,0,3,37,ne.mo,,ne,,nepali,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nb.po,13,85,78,0,0,62,439,75,524,nb.po,,nb,,norwegian bokmål,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nb.mo,13,85,78,0,0,0,0,13,85,nb.mo,,nb,,norwegian bokmål,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ms.po,3,37,28,0,0,72,487,75,524,ms.po,,ms,,malay,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ms.mo,3,37,28,0,0,0,0,3,37,ms.mo,,ms,,malay,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mr.po,56,326,343,0,0,19,198,75,524,mr.po,,mr,,marathi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mr.mo,56,326,343,0,0,0,0,56,326,mr.mo,,mr,,marathi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ml.po,43,290,225,0,0,32,234,75,524,ml.po,,ml,,malayalam,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ml.mo,43,290,225,0,0,0,0,43,290,ml.mo,,ml,,malayalam,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mk.po,3,37,28,0,0,72,487,75,524,mk.po,,mk,,macedonian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mk.mo,3,37,28,0,0,0,0,3,37,mk.mo,,mk,,macedonian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mai.po,8,63,67,0,0,67,461,75,524,mai.po,,mai,,maithili,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mai.mo,8,63,67,0,0,0,0,8,63,mai.mo,,mai,,maithili,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/lv.po,9,56,51,0,0,66,468,75,524,lv.po,,lv,,latvian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/lv.mo,9,56,51,0,0,0,0,9,56,lv.mo,,lv,,latvian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ko.po,75,524,454,0,0,0,0,75,524,ko.po,,ko,,korean,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ko.mo,75,524,454,0,0,0,0,75,524,ko.mo,,ko,,korean,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kn.po,56,326,297,0,0,19,198,75,524,kn.po,,kn,,kannada,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kn.mo,56,326,297,0,0,0,0,56,326,kn.mo,,kn,,kannada,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kk.po,43,290,269,0,0,32,234,75,524,kk.po,,kk,,kazakh,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kk.mo,43,290,269,0,0,0,0,43,290,kk.mo,,kk,,kazakh,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ka.po,11,24,24,0,0,64,500,75,524,ka.po,,ka,,georgian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ka.mo,11,24,24,0,0,0,0,11,24,ka.mo,,ka,,georgian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ja.po,75,524,258,0,0,0,0,75,524,ja.po,,ja,,japanese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ja.mo,75,524,258,0,0,0,0,75,524,ja.mo,,ja,,japanese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/it.po,75,524,545,0,0,0,0,75,524,it.po,,it,,italian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/it.mo,75,524,545,0,0,0,0,75,524,it.mo,,it,,italian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/is.po,5,43,36,0,0,70,481,75,524,is.po,,is,,icelandic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/is.mo,5,43,36,0,0,0,0,5,43,is.mo,,is,,icelandic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ilo.po,3,37,41,0,0,72,487,75,524,ilo.po,,ilo,,iloko,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ilo.mo,3,37,41,0,0,0,0,3,37,ilo.mo,,ilo,,iloko,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/id.po,24,206,196,0,0,51,318,75,524,id.po,,id,,indonesian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/id.mo,24,206,196,0,0,0,0,24,206,id.mo,,id,,indonesian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ia.po,36,277,310,0,0,39,247,75,524,ia.po,,ia,,interlingua,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ia.mo,36,277,310,0,0,0,0,36,277,ia.mo,,ia,,interlingua,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hu.po,75,524,531,0,0,0,0,75,524,hu.po,,hu,,hungarian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hu.mo,75,524,531,0,0,0,0,75,524,hu.mo,,hu,,hungarian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hr.po,3,37,22,0,0,72,487,75,524,hr.po,,hr,,croatian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hr.mo,3,37,22,0,0,0,0,3,37,hr.mo,,hr,,croatian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hi.po,24,206,239,0,0,51,318,75,524,hi.po,,hi,,hindi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hi.mo,24,206,239,0,0,0,0,24,206,hi.mo,,hi,,hindi,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/he.po,5,23,20,0,0,70,501,75,524,he.po,,he,,hebrew,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/he.mo,5,23,20,0,0,0,0,5,23,he.mo,,he,,hebrew,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/gu.po,56,326,358,0,0,19,198,75,524,gu.po,,gu,,gujarati,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/gu.mo,56,326,358,0,0,0,0,56,326,gu.mo,,gu,,gujarati,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fr.po,75,524,618,0,0,0,0,75,524,fr.po,,fr,,french,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fr.mo,75,524,618,0,0,0,0,75,524,fr.mo,,fr,,french,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fi.po,24,206,167,0,0,51,318,75,524,fi.po,,fi,,finnish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fi.mo,24,206,167,0,0,0,0,24,206,fi.mo,,fi,,finnish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fa.po,24,206,231,0,0,51,318,75,524,fa.po,,fa,,persian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fa.mo,24,206,231,0,0,0,0,24,206,fa.mo,,fa,,persian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/eu.po,2,8,8,0,0,73,516,75,524,eu.po,,eu,,basque,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/eu.mo,2,8,8,0,0,0,0,2,8,eu.mo,,eu,,basque,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/et.po,8,52,51,0,0,67,472,75,524,et.po,,et,,estonian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/et.mo,8,52,51,0,0,0,0,8,52,et.mo,,et,,estonian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/es.po,75,524,637,0,0,0,0,75,524,es.po,,es,,spanish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/es.mo,75,524,637,0,0,0,0,75,524,es.mo,,es,,spanish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/en_gb.po,24,206,206,0,0,51,318,75,524,en_gb.po,,en,gb,english,,united kingdom

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/en_gb.mo,24,206,206,0,0,0,0,24,206,en_gb.mo,,en,gb,english,,united kingdom

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/el.po,6,47,51,0,0,69,477,75,524,el.po,,el,,greek,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/el.mo,6,47,51,0,0,0,0,6,47,el.mo,,el,,greek,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de_ch.po,7,52,41,0,0,68,472,75,524,de_ch.po,,de,ch,german,,switzerland

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de_ch.mo,7,52,41,0,0,0,0,7,52,de_ch.mo,,de,ch,german,,switzerland

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de.po,75,524,514,0,0,0,0,75,524,de.po,,de,,german,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de.mo,75,524,514,0,0,0,0,75,524,de.mo,,de,,german,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/da.po,75,524,493,0,0,0,0,75,524,da.po,,da,,danish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/da.mo,75,524,493,0,0,0,0,75,524,da.mo,,da,,danish,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cy.po,3,37,32,0,0,72,487,75,524,cy.po,,cy,,welsh,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cy.mo,3,37,32,0,0,0,0,3,37,cy.mo,,cy,,welsh,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cs.po,75,524,498,0,0,0,0,75,524,cs.po,,cs,,czech,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cs.mo,75,524,498,0,0,0,0,75,524,cs.mo,,cs,,czech,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ca.po,75,524,651,0,0,0,0,75,524,ca.po,,ca,,catalan,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ca.mo,75,524,651,0,0,0,0,75,524,ca.mo,,ca,,catalan,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bs.po,3,37,22,0,0,72,487,75,524,bs.po,,bs,,bosnian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bs.mo,3,37,22,0,0,0,0,3,37,bs.mo,,bs,,bosnian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn_in.po,62,355,401,0,0,13,169,75,524,bn_in.po,,bn,in,bangla,,india

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn_in.mo,62,355,401,0,0,0,0,62,355,bn_in.mo,,bn,in,bangla,,india

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn.po,24,206,225,0,0,51,318,75,524,bn.po,,bn,,bangla,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn.mo,24,206,225,0,0,0,0,24,206,bn.mo,,bn,,bangla,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bg.po,62,357,407,0,0,13,167,75,524,bg.po,,bg,,bulgarian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bg.mo,62,357,407,0,0,0,0,62,357,bg.mo,,bg,,bulgarian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ast.po,23,202,209,0,0,52,322,75,524,ast.po,,ast,,asturian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ast.mo,23,202,209,0,0,0,0,23,202,ast.mo,,ast,,asturian,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/as.po,62,355,382,0,0,13,169,75,524,as.po,,as,,assamese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/as.mo,62,355,382,0,0,0,0,62,355,as.mo,,as,,assamese,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ar.po,5,41,34,0,0,70,483,75,524,ar.po,,ar,,arabic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ar.mo,5,41,34,0,0,0,0,5,41,ar.mo,,ar,,arabic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/am.po,3,37,26,0,0,72,487,75,524,am.po,,am,,amharic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/am.mo,3,37,26,0,0,0,0,3,37,am.mo,,am,,amharic,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/af.po,3,37,36,0,0,72,487,75,524,af.po,,af,,afrikaans,,

- python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/af.mo,3,37,36,0,0,0,0,3,37,af.mo,,af,,afrikaans,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,23,109,23,109,kw.po,,kw,,cornish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,23,109,23,109,anp.po,,anp,,angika,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,23,109,23,109,kw@kkcor.po,kkcor,kw,,cornish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,23,109,23,109,kw_gb.po,,kw,gb,cornish,,united kingdom

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,23,109,23,109,yo.po,,yo,,yoruba,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,23,109,23,109,tw.po,,tw,,twi,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,23,109,23,109,kw@uccor.po,uccor,kw,,cornish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,23,109,23,109,ky.po,,ky,,kyrgyz,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,23,109,23,109,sl.po,,sl,,slovenian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,23,109,23,109,ku.po,,ku,,kurdish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,23,109,23,109,si.po,,si,,sinhala,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,23,109,23,109,ks.po,,ks,,kashmiri,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/km.po,23,109,44,0,0,0,0,23,109,km.po,,km,,khmer,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sv.po,23,109,103,0,0,0,0,23,109,sv.po,,sv,,swedish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ko.po,1,1,1,0,0,22,108,23,109,ko.po,,ko,,korean,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sq.po,23,109,120,0,0,0,0,23,109,sq.po,,sq,,albanian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sr.po,23,109,107,0,0,0,0,23,109,sr.po,,sr,,serbian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,23,109,23,109,kk.po,,kk,,kazakh,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,23,109,23,109,ka.po,,ka,,georgian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fi.po,19,96,65,0,0,4,13,23,109,fi.po,,fi,,finnish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,23,109,23,109,mai.po,,mai,,maithili,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,23,109,23,109,fa.po,,fa,,persian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fr.po,23,109,106,0,0,0,0,23,109,fr.po,,fr,,french,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,23,109,23,109,ne.po,,ne,,nepali,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,23,109,23,109,nb.po,,nb,,norwegian bokmål,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,23,109,23,109,no.po,,no,,norwegian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,23,109,23,109,nn.po,,nn,,norwegian nynorsk,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nl.po,23,109,118,0,0,0,0,23,109,nl.po,,nl,,dutch,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sk.po,23,109,94,0,0,0,0,23,109,sk.po,,sk,,slovak,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bn_in.po,1,1,2,0,0,22,108,23,109,bn_in.po,,bn,in,bangla,,india

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/id.po,23,109,99,0,0,0,0,23,109,id.po,,id,,indonesian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,23,109,23,109,az.po,,az,,azerbaijani,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ia.po,20,83,83,0,0,3,26,23,109,ia.po,,ia,,interlingua,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,23,109,23,109,zu.po,,zu,,zulu,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ar.po,20,83,72,0,0,3,26,23,109,ar.po,,ar,,arabic,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/as.po,1,1,2,0,0,22,108,23,109,as.po,,as,,assamese,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kn.po,1,1,2,0,0,22,108,23,109,kn.po,,kn,,kannada,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/it.po,15,64,61,8,45,0,0,23,109,it.po,,it,,italian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,23,109,23,109,am.po,,am,,amharic,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,23,109,23,109,is.po,,is,,icelandic,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,23,109,23,109,vi.po,,vi,,vietnamese,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,23,109,23,109,af.po,,af,,afrikaans,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,23,109,23,109,my.po,,my,,burmese,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mr.po,1,1,3,0,0,22,108,23,109,mr.po,,mr,,marathi,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,23,109,23,109,ms.po,,ms,,malay,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,23,109,23,109,en_gb.po,,en,gb,english,,united kingdom

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,23,109,23,109,ur.po,,ur,,urdu,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,23,109,23,109,mk.po,,mk,,macedonian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,23,109,23,109,mn.po,,mn,,mongolian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ml.po,1,1,2,0,0,22,108,23,109,ml.po,,ml,,malayalam,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,23,109,23,109,uz.po,,uz,,uzbek,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,23,109,23,109,mg.po,,mg,,malagasy,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,23,109,23,109,he.po,,he,,hebrew,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hi.po,1,1,2,0,0,22,108,23,109,hi.po,,hi,,hindi,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hu.po,23,109,89,0,0,0,0,23,109,hu.po,,hu,,hungarian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_tw.po,23,109,30,0,0,0,0,23,109,zh_tw.po,,zh,tw,chinese,,taiwan

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,23,109,23,109,hr.po,,hr,,croatian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,23,109,23,109,hy.po,,hy,,armenian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pl.po,23,109,85,0,0,0,0,23,109,pl.po,,pl,,polish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pa.po,1,1,1,0,0,22,108,23,109,pa.po,,pa,,punjabi,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,23,109,23,109,tl.po,,tl,,tagalog,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pt.po,1,1,1,0,0,22,108,23,109,pt.po,,pt,,portuguese,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,23,109,23,109,de_ch.po,,de,ch,german,,switzerland

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/cs.po,23,109,85,0,0,0,0,23,109,cs.po,,cs,,czech,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,23,109,23,109,cy.po,,cy,,welsh,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ca.po,23,109,111,0,0,0,0,23,109,ca.po,,ca,,catalan,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,23,109,23,109,nso.po,,nso,,northern sotho,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,23,109,23,109,xh.po,,xh,,xhosa,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/or.po,1,1,3,0,0,22,108,23,109,or.po,,or,,odia,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,22,108,23,109,nds.po,,nds,,low german,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,,ach,,acoli,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,23,109,23,109,ilo.po,,ilo,,iloko,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ja.po,20,83,28,0,0,3,26,23,109,ja.po,,ja,,japanese,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bs.po,1,1,1,0,0,22,108,23,109,bs.po,,bs,,bosnian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,23,109,23,109,br.po,,br,,breton,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,1,1,0,0,22,108,23,109,sr@latin.po,latin,sr,,serbian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,23,109,23,109,bo.po,,bo,,tibetan,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bn.po,2,2,3,0,0,21,107,23,109,bn.po,,bn,,bangla,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,23,109,23,109,wo.po,,wo,,wolof,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ast.po,1,1,1,0,0,22,108,23,109,ast.po,,ast,,asturian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/uk.po,23,109,108,0,0,0,0,23,109,uk.po,,uk,,ukrainian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bg.po,8,23,25,0,0,15,86,23,109,bg.po,,bg,,bulgarian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,23,109,23,109,be.po,,be,,belarusian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,23,109,23,109,ru_ru.po,,ru,ru,russian,,russia

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,23,109,23,109,ro.po,,ro,,romanian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ru.po,23,109,84,0,0,0,0,23,109,ru.po,,ru,,russian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/es.po,23,109,106,0,0,0,0,23,109,es.po,,es,,spanish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,23,109,23,109,et.po,,et,,estonian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/eu.po,7,13,13,0,0,16,96,23,109,eu.po,,eu,,basque,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,23,109,23,109,en_us.po,,en,us,english,,united states

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,23,109,23,109,eo.po,,eo,,esperanto,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/el.po,1,1,1,0,0,22,108,23,109,el.po,,el,,greek,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,23,109,23,109,bal.po,,bal,,baluchi,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_cn.po,23,109,39,0,0,0,0,23,109,zh_cn.po,,zh,cn,chinese,,china

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,23,109,23,109,dz.po,,dz,,dzongkha,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/da.po,23,109,103,0,0,0,0,23,109,da.po,,da,,danish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/de.po,23,109,99,0,0,0,0,23,109,de.po,,de,,german,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pt_br.po,23,109,104,0,0,0,0,23,109,pt_br.po,,pt,br,portuguese,,brazil

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,23,109,23,109,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ta.po,1,1,2,0,0,22,108,23,109,ta.po,,ta,,tamil,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/te.po,1,1,2,0,0,22,108,23,109,te.po,,te,,telugu,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,23,109,23,109,tg.po,,tg,,tajik,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,23,109,23,109,th.po,,th,,thai,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,23,109,23,109,lt.po,,lt,,lithuanian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lv.po,1,1,1,0,0,22,108,23,109,lv.po,,lv,,latvian,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tr.po,23,109,91,0,0,0,0,23,109,tr.po,,tr,,turkish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,23,109,23,109,brx.po,,brx,,bodo,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,23,109,23,109,lo.po,,lo,,lao,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,23,109,23,109,la.po,,la,,latin,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,23,109,23,109,gl.po,,gl,,galician,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,23,109,23,109,ga.po,,ga,,irish,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/gu.po,1,1,3,0,0,22,108,23,109,gu.po,,gu,,gujarati,,

- python-meh-0.47-2.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,23,109,23,109,aln.po,,aln,,gheg albanian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,16,42,16,42,as.po,,as,,assamese,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,16,42,16,42,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,16,42,16,42,kn.po,,kn,,kannada,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,16,42,16,42,it.po,,it,,italian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,16,42,16,42,am.po,,am,,amharic,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,16,42,16,42,is.po,,is,,icelandic,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,16,42,16,42,vi.po,,vi,,vietnamese,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,16,42,16,42,af.po,,af,,afrikaans,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,16,42,16,42,mn.po,,mn,,mongolian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,16,42,16,42,eo.po,,eo,,esperanto,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,16,42,16,42,el.po,,el,,greek,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,16,42,16,42,my.po,,my,,burmese,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,16,42,16,42,ilo.po,,ilo,,iloko,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,16,42,16,42,bal.po,,bal,,baluchi,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,16,42,16,42,kw_gb.po,,kw,gb,cornish,,united kingdom

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,16,42,16,42,mr.po,,mr,,marathi,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/uk.po,16,42,42,0,0,0,0,16,42,uk.po,,uk,,ukrainian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,6,16,6,0,0,10,26,16,42,zh_cn.po,,zh,cn,chinese,,china

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,16,42,16,42,ur.po,,ur,,urdu,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,16,42,16,42,mk.po,,mk,,macedonian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,16,42,16,42,ml.po,,ml,,malayalam,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,16,42,16,42,he.po,,he,,hebrew,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,6,16,13,0,0,10,26,16,42,pt_br.po,,pt,br,portuguese,,brazil

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,16,42,16,42,hi.po,,hi,,hindi,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,16,42,16,42,hu.po,,hu,,hungarian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,16,42,16,42,de.po,,de,,german,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,16,42,16,42,bn_in.po,,bn,in,bangla,,india

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,16,42,16,42,hr.po,,hr,,croatian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,16,42,16,42,yo.po,,yo,,yoruba,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,16,42,16,42,ta.po,,ta,,tamil,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pl.po,16,42,39,0,0,0,0,16,42,pl.po,,pl,,polish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,16,42,16,42,ia.po,,ia,,interlingua,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,16,42,16,42,te.po,,te,,telugu,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,16,42,16,42,tg.po,,tg,,tajik,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,16,42,16,42,th.po,,th,,thai,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,16,42,16,42,pa.po,,pa,,punjabi,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,16,42,16,42,lt.po,,lt,,lithuanian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,16,42,16,42,lv.po,,lv,,latvian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,16,42,16,42,ja.po,,ja,,japanese,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,16,42,16,42,de_ch.po,,de,ch,german,,switzerland

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,16,42,16,42,tr.po,,tr,,turkish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,16,42,16,42,nso.po,,nso,,northern sotho,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,16,42,16,42,tw.po,,tw,,twi,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,16,42,16,42,pt.po,,pt,,portuguese,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,15,35,35,0,0,1,7,16,42,en_gb.po,,en,gb,english,,united kingdom

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,16,42,16,42,gl.po,,gl,,galician,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/cs.po,16,42,41,0,0,0,0,16,42,cs.po,,cs,,czech,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,16,42,16,42,ga.po,,ga,,irish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,16,42,16,42,cy.po,,cy,,welsh,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,16,42,16,42,kw@uccor.po,uccor,kw,,cornish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ca.po,16,42,42,0,0,0,0,16,42,ca.po,,ca,,catalan,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,16,42,16,42,brx.po,,brx,,bodo,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,16,42,16,42,zh_tw.po,,zh,tw,chinese,,taiwan

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,16,42,16,42,gu.po,,gu,,gujarati,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,16,42,16,42,or.po,,or,,odia,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,16,42,16,42,ky.po,,ky,,kyrgyz,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,16,42,16,42,sl.po,,sl,,slovenian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,16,42,16,42,kw.po,,kw,,cornish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,16,42,16,42,si.po,,si,,sinhala,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sk.po,16,42,39,0,0,0,0,16,42,sk.po,,sk,,slovak,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,16,42,16,42,km.po,,km,,khmer,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sv.po,6,16,17,0,0,10,26,16,42,sv.po,,sv,,swedish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,16,42,16,42,ko.po,,ko,,korean,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,16,42,16,42,sq.po,,sq,,albanian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,16,42,16,42,sr.po,,sr,,serbian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,16,42,16,42,kk.po,,kk,,kazakh,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,16,42,16,42,ka.po,,ka,,georgian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,16,42,16,42,nds.po,,nds,,low german,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/da.po,16,42,45,0,0,0,0,16,42,da.po,,da,,danish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,16,42,16,42,fi.po,,fi,,finnish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,16,42,16,42,mai.po,,mai,,maithili,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,16,42,16,42,bs.po,,bs,,bosnian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,16,42,16,42,br.po,,br,,breton,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,16,42,16,42,fa.po,,fa,,persian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,16,42,16,42,sr@latin.po,latin,sr,,serbian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,16,42,16,42,bo.po,,bo,,tibetan,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,16,42,16,42,bn.po,,bn,,bangla,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,16,42,16,42,ast.po,,ast,,asturian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,16,42,16,42,ms.po,,ms,,malay,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,16,42,16,42,bg.po,,bg,,bulgarian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,0,0,16,42,16,42,fr.po,,fr,,french,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,16,42,16,42,be.po,,be,,belarusian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,16,42,16,42,ro.po,,ro,,romanian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,16,42,16,42,anp.po,,anp,,angika,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,16,42,16,42,ne.po,,ne,,nepali,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,16,42,16,42,nb.po,,nb,,norwegian bokmål,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,16,42,16,42,nn.po,,nn,,norwegian nynorsk,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,16,42,16,42,nl.po,,nl,,dutch,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,16,42,16,42,ru.po,,ru,,russian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/es.po,16,42,40,0,0,0,0,16,42,es.po,,es,,spanish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,16,42,16,42,id.po,,id,,indonesian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,16,42,16,42,et.po,,et,,estonian,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,16,42,16,42,eu.po,,eu,,basque,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,16,42,16,42,zu.po,,zu,,zulu,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,16,42,16,42,kw@kkcor.po,kkcor,kw,,cornish,,

- python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,16,42,16,42,ar.po,,ar,,arabic,,

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/zh_cn.po,18,33,20,0,0,1,2,19,35,zh_cn.po,,zh,cn,chinese,,china

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/de_de.po,18,33,29,0,0,1,2,19,35,de_de.po,,de,de,german,,germany

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/tr.po,11,22,21,2,4,6,9,19,35,tr.po,,tr,,turkish,,

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/bg.po,18,33,34,0,0,1,2,19,35,bg.po,,bg,,bulgarian,,

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/fr_fr.po,18,33,39,0,0,1,2,19,35,fr_fr.po,,fr,fr,french,,france

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/it.po,18,33,38,0,0,1,2,19,35,it.po,,it,,italian,,

- qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/hu.po,11,22,21,2,4,6,9,19,35,hu.po,,hu,,hungarian,,

- quota-4.04-12.fc30.src.rpm.stats.csv,po/cs.po,484,3706,3856,48,875,29,124,561,4705,cs.po,,cs,,czech,,

- quota-4.04-12.fc30.src.rpm.stats.csv,po/pl.po,484,3706,3939,48,875,29,124,561,4705,pl.po,,pl,,polish,,

- quota-4.04-12.fc30.src.rpm.stats.csv,po/fr.po,233,1545,1955,213,1512,115,1648,561,4705,fr.po,,fr,,french,,

- quota-4.04-12.fc30.src.rpm.stats.csv,po/de.po,434,3354,3372,90,1169,37,182,561,4705,de.po,,de,,german,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,127,789,127,789,pa.po,,pa,,punjabi,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,127,789,127,789,lt.po,,lt,,lithuanian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,127,789,127,789,ia.po,,ia,,interlingua,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/gl.po,125,778,999,0,0,2,11,127,789,gl.po,,gl,,galician,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,127,789,127,789,ka.po,,ka,,georgian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,127,789,127,789,he.po,,he,,hebrew,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,127,789,127,789,nn.po,,nn,,norwegian nynorsk,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,127,789,127,789,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,127,789,127,789,ga.po,,ga,,irish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ko.po,127,789,706,0,0,0,0,127,789,ko.po,,ko,,korean,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ru.po,127,789,795,0,0,0,0,127,789,ru.po,,ru,,russian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,127,789,127,789,eu.po,,eu,,basque,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,127,789,127,789,fo.po,,fo,,faroese,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,127,789,127,789,pt.po,,pt,,portuguese,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/el.po,125,778,926,0,0,2,11,127,789,el.po,,el,,greek,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,127,789,127,789,sr@latin.po,latin,sr,,serbian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/en_gb.po,125,778,778,0,0,2,11,127,789,en_gb.po,,en,gb,english,,united kingdom

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/es_cl.po,0,0,0,0,0,125,778,125,778,es_cl.po,,es,cl,spanish,,chile

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/id.po,125,778,817,0,0,2,11,127,789,id.po,,id,,indonesian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,127,789,127,789,as.po,,as,,assamese,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,127,789,127,789,or.po,,or,,odia,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,127,789,127,789,wa.po,,wa,,walloon,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,127,789,127,789,it.po,,it,,italian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,127,789,127,789,lv.po,,lv,,latvian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,127,789,127,789,ta.po,,ta,,tamil,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fr.po,18,110,116,0,0,109,679,127,789,fr.po,,fr,,french,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,127,789,127,789,te.po,,te,,telugu,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,127,789,127,789,az.po,,az,,azerbaijani,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,127,789,127,789,nb.po,,nb,,norwegian bokmål,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,127,789,127,789,kn.po,,kn,,kannada,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,127,789,127,789,hi.po,,hi,,hindi,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,127,789,127,789,th.po,,th,,thai,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_cn.po,88,511,122,0,0,39,278,127,789,zh_cn.po,,zh,cn,chinese,,china

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,127,789,127,789,ar.po,,ar,,arabic,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,127,789,127,789,fa.po,,fa,,persian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/da.po,115,712,723,0,0,12,77,127,789,da.po,,da,,danish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sl.po,125,778,775,0,0,2,11,127,789,sl.po,,sl,,slovenian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,127,789,127,789,nl.po,,nl,,dutch,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,127,789,127,789,bg.po,,bg,,bulgarian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sv.po,125,778,769,0,0,2,11,127,789,sv.po,,sv,,swedish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,127,789,127,789,bn_in.po,,bn,in,bangla,,india

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,127,789,127,789,ml.po,,ml,,malayalam,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,127,789,127,789,kk.po,,kk,,kazakh,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/cs.po,0,0,0,0,0,127,789,127,789,cs.po,,cs,,czech,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,127,789,127,789,mr.po,,mr,,marathi,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,127,789,127,789,sq.po,,sq,,albanian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/tr.po,125,778,710,0,0,2,11,127,789,tr.po,,tr,,turkish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,127,789,127,789,et.po,,et,,estonian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/oc.po,0,0,0,0,0,127,789,127,789,oc.po,,oc,,occitan,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hu.po,20,129,128,0,0,107,660,127,789,hu.po,,hu,,hungarian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,127,789,127,789,zh_tw.po,,zh,tw,chinese,,taiwan

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pl.po,127,789,802,0,0,0,0,127,789,pl.po,,pl,,polish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,127,789,127,789,fi.po,,fi,,finnish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,127,789,127,789,ms.po,,ms,,malay,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/uk.po,127,789,879,0,0,0,0,127,789,uk.po,,uk,,ukrainian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ca.po,0,0,0,0,0,127,789,127,789,ca.po,,ca,,catalan,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,127,789,127,789,hr.po,,hr,,croatian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/de.po,116,683,731,0,0,11,106,127,789,de.po,,de,,german,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,127,789,127,789,eo.po,,eo,,esperanto,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,127,789,127,789,vi.po,,vi,,vietnamese,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,127,789,127,789,gu.po,,gu,,gujarati,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,127,789,127,789,cy.po,,cy,,welsh,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,127,789,127,789,sk.po,,sk,,slovak,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pt_br.po,127,789,971,0,0,0,0,127,789,pt_br.po,,pt,br,portuguese,,brazil

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,127,789,127,789,ca@valencia.po,valencia,ca,,catalan,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/es.po,125,778,1028,0,0,2,11,127,789,es.po,,es,,spanish,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,127,789,127,789,ro.po,,ro,,romanian,,

- realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ja.po,17,60,22,0,0,110,729,127,789,ja.po,,ja,,japanese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/is.po,86,261,233,0,0,0,0,86,261,is.po,,is,,icelandic,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/en_gb.po,86,261,261,0,0,0,0,86,261,en_gb.po,,en,gb,english,,united kingdom

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/et.po,81,253,212,0,0,0,0,81,253,et.po,,et,,estonian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ar.po,81,253,249,0,0,0,0,81,253,ar.po,,ar,,arabic,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sk.po,86,261,256,0,0,0,0,86,261,sk.po,,sk,,slovak,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/mr.po,86,261,260,0,0,0,0,86,261,mr.po,,mr,,marathi,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hi.po,86,261,292,0,0,0,0,86,261,hi.po,,hi,,hindi,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/cs.po,86,261,259,0,0,0,0,86,261,cs.po,,cs,,czech,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bn_in.po,86,261,290,0,0,0,0,86,261,bn_in.po,,bn,in,bangla,,india

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/te.po,86,261,250,0,0,0,0,86,261,te.po,,te,,telugu,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lt.po,73,221,213,2,6,11,34,86,261,lt.po,,lt,,lithuanian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/de.po,86,261,211,0,0,0,0,86,261,de.po,,de,,german,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sq.po,2,5,4,0,0,84,256,86,261,sq.po,,sq,,albanian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/vi.po,72,218,335,3,9,11,34,86,261,vi.po,,vi,,vietnamese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sr.po,86,261,270,0,0,0,0,86,261,sr.po,,sr,,serbian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ur.po,71,216,397,4,11,11,34,86,261,ur.po,,ur,,urdu,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/gl.po,52,132,157,1,1,33,128,86,261,gl.po,,gl,,galician,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ilo.po,43,106,164,4,6,39,149,86,261,ilo.po,,ilo,,iloko,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ml.po,86,261,245,0,0,0,0,86,261,ml.po,,ml,,malayalam,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lv.po,80,252,225,0,0,1,1,81,253,lv.po,,lv,,latvian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hy.po,73,221,198,2,6,11,34,86,261,hy.po,,hy,,armenian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/id.po,81,253,246,0,0,0,0,81,253,id.po,,id,,indonesian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/tr.po,78,246,238,3,5,5,10,86,261,tr.po,,tr,,turkish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nb.po,86,261,221,0,0,0,0,86,261,nb.po,,nb,,norwegian bokmål,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/or.po,86,261,300,0,0,0,0,86,261,or.po,,or,,odia,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/th.po,86,261,126,0,0,0,0,86,261,th.po,,th,,thai,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/mk.po,86,261,286,0,0,0,0,86,261,mk.po,,mk,,macedonian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sl.po,76,240,247,5,11,5,10,86,261,sl.po,,sl,,slovenian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bg.po,86,261,293,0,0,0,0,86,261,bg.po,,bg,,bulgarian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nl.po,86,261,228,0,0,0,0,86,261,nl.po,,nl,,dutch,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/he.po,86,261,257,0,0,0,0,86,261,he.po,,he,,hebrew,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,86,261,86,261,ku.po,,ku,,kurdish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,86,261,86,261,lo.po,,lo,,lao,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pl.po,86,261,259,0,0,0,0,86,261,pl.po,,pl,,polish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fa.po,81,253,277,0,0,0,0,81,253,fa.po,,fa,,persian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zh_tw.po,86,261,125,0,0,0,0,86,261,zh_tw.po,,zh,tw,chinese,,taiwan

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ru.po,86,261,269,0,0,0,0,86,261,ru.po,,ru,,russian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pt_br.po,86,261,312,0,0,0,0,86,261,pt_br.po,,pt,br,portuguese,,brazil

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hu.po,86,261,231,0,0,0,0,86,261,hu.po,,hu,,hungarian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,86,261,86,261,my.po,,my,,burmese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ta.po,86,261,250,0,0,0,0,86,261,ta.po,,ta,,tamil,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/el.po,86,261,271,0,0,0,0,86,261,el.po,,el,,greek,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/gu.po,86,261,275,0,0,0,0,86,261,gu.po,,gu,,gujarati,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pt.po,86,261,315,0,0,0,0,86,261,pt.po,,pt,,portuguese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ms.po,86,261,249,0,0,0,0,86,261,ms.po,,ms,,malay,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/da.po,86,261,224,0,0,0,0,86,261,da.po,,da,,danish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sv.po,86,261,225,0,0,0,0,86,261,sv.po,,sv,,swedish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sr@latin.po,86,261,270,0,0,0,0,86,261,sr@latin.po,latin,sr,,serbian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ko.po,86,261,247,0,0,0,0,86,261,ko.po,,ko,,korean,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/kn.po,86,261,258,0,0,0,0,86,261,kn.po,,kn,,kannada,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/as.po,86,261,304,0,0,0,0,86,261,as.po,,as,,assamese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/am.po,73,221,240,2,6,11,34,86,261,am.po,,am,,amharic,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/uk.po,86,261,270,0,0,0,0,86,261,uk.po,,uk,,ukrainian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nso.po,73,221,363,2,6,11,34,86,261,nso.po,,nso,,northern sotho,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ka.po,69,205,191,4,11,13,45,86,261,ka.po,,ka,,georgian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zu.po,70,213,221,5,14,11,34,86,261,zu.po,,zu,,zulu,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/si.po,86,261,300,0,0,0,0,86,261,si.po,,si,,sinhala,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ja.po,86,261,110,0,0,0,0,86,261,ja.po,,ja,,japanese,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/be.po,71,216,211,4,11,11,34,86,261,be.po,,be,,belarusian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/cy.po,86,261,263,0,0,0,0,86,261,cy.po,,cy,,welsh,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ro.po,86,261,273,0,0,0,0,86,261,ro.po,,ro,,romanian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/af.po,73,221,184,2,6,11,34,86,261,af.po,,af,,afrikaans,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fi.po,86,261,190,0,0,0,0,86,261,fi.po,,fi,,finnish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/es.po,86,261,319,0,0,0,0,86,261,es.po,,es,,spanish,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pa.po,86,261,276,0,0,0,0,86,261,pa.po,,pa,,punjabi,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ca.po,86,261,311,0,0,0,0,86,261,ca.po,,ca,,catalan,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bn.po,76,240,280,5,11,5,10,86,261,bn.po,,bn,,bangla,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hr.po,86,261,265,0,0,0,0,86,261,hr.po,,hr,,croatian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zh_cn.po,86,261,129,0,0,0,0,86,261,zh_cn.po,,zh,cn,chinese,,china

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/it.po,86,261,296,0,0,0,0,86,261,it.po,,it,,italian,,

- redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fr.po,86,261,310,0,0,0,0,86,261,fr.po,,fr,,french,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ca/ca.po,57,249,302,0,0,492,7820,549,8069,ca.po,,ca,,catalan,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/el/el.po,541,8027,8780,0,0,0,0,541,8027,el.po,,el,,greek,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ja/ja.po,443,4994,1486,3,43,0,0,446,5037,ja.po,,ja,,japanese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,218,1680,1917,1,25,322,6322,541,8027,pt_br.po,,pt,br,portuguese,,brazil

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/uk/uk.po,446,5037,4364,0,0,0,0,446,5037,uk.po,,uk,,ukrainian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/cs/cs.po,495,7510,6514,0,0,0,0,495,7510,cs.po,,cs,,czech,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/fr/fr.po,441,5164,5813,0,0,100,2863,541,8027,fr.po,,fr,,french,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/oc/oc.po,123,221,254,0,0,313,4793,436,5014,oc.po,,oc,,occitan,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/de/de.po,495,7510,7221,0,0,0,0,495,7510,de.po,,de,,german,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ro/ro.po,460,5744,5851,2,124,79,2159,541,8027,ro.po,,ro,,romanian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ru/ru.po,436,5014,4281,0,0,0,0,436,5014,ru.po,,ru,,russian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/it/it.po,436,5014,4731,0,0,0,0,436,5014,it.po,,it,,italian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/pt/pt.po,433,4983,5401,0,0,13,52,446,5035,pt.po,,pt,,portuguese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/da/da.po,431,4971,4307,6,118,70,2822,507,7911,da.po,,da,,danish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/es/es.po,373,4601,5287,0,0,0,0,373,4601,es.po,,es,,spanish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/sv/sv.po,373,4601,4188,0,0,0,0,373,4601,sv.po,,sv,,swedish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/eu/eu.po,446,5035,3771,0,0,0,0,446,5035,eu.po,,eu,,basque,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/gl/gl.po,8,68,83,0,0,1,1,9,69,gl.po,,gl,,galician,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,436,5014,771,0,0,0,0,436,5014,zh_cn.po,,zh,cn,chinese,,china

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/sl/sl.po,429,4634,3998,2,236,15,165,446,5035,sl.po,,sl,,slovenian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ms.po,282,1021,931,0,0,0,0,282,1021,ms.po,,ms,,malay,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/is.po,312,1099,994,0,0,14,124,326,1223,is.po,,is,,icelandic,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ru.po,971,3734,3628,0,0,0,0,971,3734,ru.po,,ru,,russian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/si.po,924,3575,3591,0,0,1,11,925,3586,si.po,,si,,sinhala,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hu.po,969,3756,3448,0,0,0,0,969,3756,hu.po,,hu,,hungarian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,923,3940,4974,168,558,101,544,1192,5042,ca@valencia.po,valencia,ca,,catalan,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/tr.po,969,3756,3240,0,0,0,0,969,3756,tr.po,,tr,,turkish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sr.po,968,3746,3949,0,0,0,0,968,3746,sr.po,,sr,,serbian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/et.po,1183,5003,4116,11,24,15,81,1209,5108,et.po,,et,,estonian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/az.po,331,1233,1112,0,0,0,0,331,1233,az.po,,az,,azerbaijani,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ta.po,1070,4545,4013,0,0,0,0,1070,4545,ta.po,,ta,,tamil,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/it.po,968,3746,3967,0,0,0,0,968,3746,it.po,,it,,italian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/he.po,798,2988,2823,72,316,189,1202,1059,4506,he.po,,he,,hebrew,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pt.po,978,3763,4277,0,0,0,0,978,3763,pt.po,,pt,,portuguese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ca.po,968,3746,4593,0,0,0,0,968,3746,ca.po,,ca,,catalan,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ko.po,971,3734,3216,0,0,0,0,971,3734,ko.po,,ko,,korean,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/id.po,969,3756,3672,0,0,0,0,969,3756,id.po,,id,,indonesian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ar.po,898,3436,3577,1,2,17,94,916,3532,ar.po,,ar,,arabic,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/de.po,969,3756,3650,0,0,0,0,969,3756,de.po,,de,,german,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/be@latin.po,987,4372,4078,0,0,0,0,987,4372,be@latin.po,latin,be,,belarusian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/af.po,966,3821,3960,1,7,165,974,1132,4802,af.po,,af,,afrikaans,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nds.po,169,234,242,3,7,919,4404,1091,4645,nds.po,,nds,,low german,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pl.po,969,3756,3871,0,0,0,0,969,3756,pl.po,,pl,,polish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/as.po,1057,4505,3889,0,0,0,0,1057,4505,as.po,,as,,assamese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hr.po,969,3756,3699,0,0,0,0,969,3756,hr.po,,hr,,croatian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/kk.po,325,563,553,0,0,643,3156,968,3719,kk.po,,kk,,kazakh,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sl.po,917,3533,3655,0,0,0,0,917,3533,sl.po,,sl,,slovenian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/cy.po,328,1249,1334,1,4,0,0,329,1253,cy.po,,cy,,welsh,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/cs.po,969,3756,3798,0,0,0,0,969,3756,cs.po,,cs,,czech,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fur.po,270,652,788,0,0,699,3104,969,3756,fur.po,,fur,,friulian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sv.po,969,3756,3593,0,0,0,0,969,3756,sv.po,,sv,,swedish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mr.po,1061,4517,4603,0,0,0,0,1061,4517,mr.po,,mr,,marathi,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_tw.po,969,3756,1564,0,0,0,0,969,3756,zh_tw.po,,zh,tw,chinese,,taiwan

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/th.po,916,3532,1566,0,0,0,0,916,3532,th.po,,th,,thai,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/br.po,1047,4371,5029,47,218,37,208,1131,4797,br.po,,br,,breton,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/be.po,1033,4072,3896,0,0,0,0,1033,4072,be.po,,be,,belarusian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gd.po,979,3769,5461,0,0,0,0,979,3769,gd.po,,gd,,scottish gaelic,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ro.po,970,3751,4235,0,0,0,0,970,3751,ro.po,,ro,,romanian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/kn.po,1070,4545,4233,0,0,0,0,1070,4545,kn.po,,kn,,kannada,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/da.po,969,3756,3503,0,0,0,0,969,3756,da.po,,da,,danish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gl.po,968,3746,4530,0,0,0,0,968,3746,gl.po,,gl,,galician,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/en_ca.po,891,3889,3899,0,0,0,0,891,3889,en_ca.po,,en,ca,english,,canada

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ga.po,311,596,708,53,177,559,3234,923,4007,ga.po,,ga,,irish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mn.po,185,453,430,0,0,107,669,292,1122,mn.po,,mn,,mongolian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/es.po,969,3756,4521,0,0,0,0,969,3756,es.po,,es,,spanish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/uk.po,1032,4049,3887,0,0,0,0,1032,4049,uk.po,,uk,,ukrainian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/te.po,966,3505,3176,0,0,67,567,1033,4072,te.po,,te,,telugu,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bs.po,968,3719,3704,0,0,0,0,968,3719,bs.po,,bs,,bosnian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/lt.po,969,3756,3425,0,0,0,0,969,3756,lt.po,,lt,,lithuanian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/vi.po,969,3756,5014,0,0,0,0,969,3756,vi.po,,vi,,vietnamese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nl.po,968,3746,3823,0,0,0,0,968,3746,nl.po,,nl,,dutch,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pa.po,910,3393,3737,1,50,10,133,921,3576,pa.po,,pa,,punjabi,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/eu.po,1131,4797,4194,0,0,0,0,1131,4797,eu.po,,eu,,basque,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_hk.po,922,3569,1520,0,0,0,0,922,3569,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/or.po,336,705,839,8,17,726,3823,1070,4545,or.po,,or,,odia,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/am.po,94,136,175,0,0,133,713,227,849,am.po,,am,,amharic,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fa.po,767,2269,2462,0,0,266,1820,1033,4089,fa.po,,fa,,persian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nn.po,1169,4962,4808,0,0,0,0,1169,4962,nn.po,,nn,,norwegian nynorsk,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/dz.po,826,3813,1411,0,0,0,0,826,3813,dz.po,,dz,,dzongkha,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nb.po,968,3746,3695,0,0,0,0,968,3746,nb.po,,nb,,norwegian bokmål,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sr@latin.po,968,3746,3949,0,0,0,0,968,3746,sr@latin.po,latin,sr,,serbian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pt_br.po,969,3756,4476,0,0,0,0,969,3756,pt_br.po,,pt,br,portuguese,,brazil

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bg.po,1033,4089,4621,0,0,0,0,1033,4089,bg.po,,bg,,bulgarian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/rw.po,32,35,34,269,1394,91,189,392,1618,rw.po,,rw,,kinyarwanda,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fr.po,969,3756,4578,0,0,0,0,969,3756,fr.po,,fr,,french,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mk.po,952,4142,4598,0,0,0,0,952,4142,mk.po,,mk,,macedonian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sk.po,968,3746,3856,0,0,0,0,968,3746,sk.po,,sk,,slovak,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bn_in.po,790,2502,2992,0,0,280,2043,1070,4545,bn_in.po,,bn,in,bangla,,india

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_cn.po,979,3769,1784,0,0,0,0,979,3769,zh_cn.po,,zh,cn,chinese,,china

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ml.po,60,75,81,3,3,184,665,247,743,ml.po,,ml,,malayalam,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/eo.po,964,3697,3555,1,2,4,57,969,3756,eo.po,,eo,,esperanto,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hi.po,1070,4545,5515,0,0,0,0,1070,4545,hi.po,,hi,,hindi,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ja.po,917,3533,1157,0,0,0,0,917,3533,ja.po,,ja,,japanese,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ne.po,902,3936,3934,0,0,0,0,902,3936,ne.po,,ne,,nepali,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fi.po,951,3674,2989,4,16,13,56,968,3746,fi.po,,fi,,finnish,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/lv.po,969,3756,3480,0,0,0,0,969,3756,lv.po,,lv,,latvian,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/en_gb.po,1033,4072,4087,0,0,0,0,1033,4072,en_gb.po,,en,gb,english,,united kingdom

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ps.po,533,1298,1468,0,0,390,2721,923,4019,ps.po,,ps,,pashto,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/oc.po,970,3732,4429,1,2,1,16,972,3750,oc.po,,oc,,occitan,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gu.po,1057,4503,5122,8,15,4,19,1069,4537,gu.po,,gu,,gujarati,,

- rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/el.po,919,3596,3953,0,0,0,0,919,3596,el.po,,el,,greek,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/tr.po,408,1947,1730,14,60,442,2443,864,4450,tr.po,,tr,,turkish,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ko.po,360,1812,1793,13,58,491,2580,864,4450,ko.po,,ko,,korean,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sr.po,519,2618,2669,14,60,331,1772,864,4450,sr.po,,sr,,serbian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/id.po,69,451,439,0,0,795,3999,864,4450,id.po,,id,,indonesian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/fi.po,451,2196,1841,14,60,399,2194,864,4450,fi.po,,fi,,finnish,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sk.po,634,3195,3189,14,60,216,1195,864,4450,sk.po,,sk,,slovak,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/de.po,695,3484,3513,14,60,155,906,864,4450,de.po,,de,,german,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/is.po,75,338,339,6,30,783,4082,864,4450,is.po,,is,,icelandic,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/br.po,142,451,593,6,26,716,3973,864,4450,br.po,,br,,breton,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ms.po,40,131,136,3,17,821,4302,864,4450,ms.po,,ms,,malay,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sl.po,139,690,720,10,47,715,3713,864,4450,sl.po,,sl,,slovenian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sv.po,741,3798,3560,15,65,108,587,864,4450,sv.po,,sv,,swedish,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ja.po,654,3297,1662,14,60,196,1093,864,4450,ja.po,,ja,,japanese,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ar.po,99,268,283,2,3,763,4179,864,4450,ar.po,,ar,,arabic,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/el.po,16,74,90,0,0,848,4376,864,4450,el.po,,el,,greek,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sr@latin.po,519,2618,2669,14,60,331,1772,864,4450,sr@latin.po,latin,sr,,serbian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/te.po,23,72,69,1,4,840,4374,864,4450,te.po,,te,,telugu,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/cs.po,485,2429,2299,14,60,365,1961,864,4450,cs.po,,cs,,czech,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/uk.po,741,3798,4156,15,65,108,587,864,4450,uk.po,,uk,,ukrainian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/vi.po,741,3798,6038,15,65,108,587,864,4450,vi.po,,vi,,vietnamese,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pt_br.po,559,2776,3357,14,60,291,1614,864,4450,pt_br.po,,pt,br,portuguese,,brazil

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/zh_cn.po,706,3558,1590,14,60,144,832,864,4450,zh_cn.po,,zh,cn,chinese,,china

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/nl.po,63,162,155,2,3,799,4285,864,4450,nl.po,,nl,,dutch,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/fr.po,673,3378,4181,14,60,177,1012,864,4450,fr.po,,fr,,french,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/es.po,654,3297,4067,14,60,196,1093,864,4450,es.po,,es,,spanish,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pt.po,361,1815,2294,13,58,490,2577,864,4450,pt.po,,pt,,portuguese,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/eo.po,741,3798,3726,15,65,108,587,864,4450,eo.po,,eo,,esperanto,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/da.po,309,1563,1493,12,55,543,2832,864,4450,da.po,,da,,danish,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/nb.po,230,1130,1103,10,50,624,3270,864,4450,nb.po,,nb,,norwegian bokmål,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/it.po,703,3545,4054,14,60,147,845,864,4450,it.po,,it,,italian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ru.po,494,2430,2381,14,60,356,1960,864,4450,ru.po,,ru,,russian,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/zh_tw.po,519,2513,1064,14,60,331,1877,864,4450,zh_tw.po,,zh,tw,chinese,,taiwan

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ca.po,705,3531,4862,15,65,144,854,864,4450,ca.po,,ca,,catalan,,

- rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pl.po,741,3798,3928,15,65,108,587,864,4450,pl.po,,pl,,polish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ko.po,303,1624,1467,0,0,0,0,303,1624,ko.po,,ko,,korean,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/gu.po,84,377,378,0,0,30,179,114,556,gu.po,,gu,,gujarati,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hu.po,303,1624,1670,0,0,0,0,303,1624,hu.po,,hu,,hungarian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pl.po,303,1624,1843,0,0,0,0,303,1624,pl.po,,pl,,polish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,303,1624,587,0,0,0,0,303,1624,zh_tw.po,,zh,tw,chinese,,taiwan

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/el.po,303,1624,1809,0,0,0,0,303,1624,el.po,,el,,greek,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/gl.po,286,1558,2197,0,0,0,0,286,1558,gl.po,,gl,,galician,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sk.po,303,1624,1749,0,0,0,0,303,1624,sk.po,,sk,,slovak,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fur.po,303,1624,2261,0,0,0,0,303,1624,fur.po,,fur,,friulian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/kn.po,114,556,545,0,0,0,0,114,556,kn.po,,kn,,kannada,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ne.po,97,332,314,154,867,52,425,303,1624,ne.po,,ne,,nepali,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,303,1624,609,0,0,0,0,303,1624,zh_cn.po,,zh,cn,chinese,,china

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ar.po,71,302,298,39,216,46,250,156,768,ar.po,,ar,,arabic,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/nl.po,303,1624,1597,0,0,0,0,303,1624,nl.po,,nl,,dutch,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/en_gb.po,303,1624,1624,0,0,0,0,303,1624,en_gb.po,,en,gb,english,,united kingdom

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sr.po,303,1624,1828,0,0,0,0,303,1624,sr.po,,sr,,serbian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hi.po,142,669,819,0,0,0,0,142,669,hi.po,,hi,,hindi,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,303,1624,1918,0,0,0,0,303,1624,pt_br.po,,pt,br,portuguese,,brazil

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/cs.po,303,1624,1662,0,0,0,0,303,1624,cs.po,,cs,,czech,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/nb.po,296,1575,1691,2,16,5,33,303,1624,nb.po,,nb,,norwegian bokmål,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/he.po,206,971,975,10,66,13,103,229,1140,he.po,,he,,hebrew,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/af.po,74,250,275,1,6,55,336,130,592,af.po,,af,,afrikaans,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_hk.po,228,1129,402,0,0,0,0,228,1129,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fa.po,77,322,378,1,10,68,348,146,680,fa.po,,fa,,persian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/eu.po,303,1624,1714,0,0,0,0,303,1624,eu.po,,eu,,basque,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ru.po,303,1624,1634,0,0,0,0,303,1624,ru.po,,ru,,russian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/as.po,229,1140,1231,0,0,0,0,229,1140,as.po,,as,,assamese,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/lv.po,303,1624,1498,0,0,0,0,303,1624,lv.po,,lv,,latvian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/th.po,142,669,340,0,0,0,0,142,669,th.po,,th,,thai,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/lt.po,303,1624,1376,0,0,0,0,303,1624,lt.po,,lt,,lithuanian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/da.po,303,1624,1599,0,0,0,0,303,1624,da.po,,da,,danish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/oc.po,303,1624,2038,0,0,0,0,303,1624,oc.po,,oc,,occitan,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/de.po,303,1624,1752,0,0,0,0,303,1624,de.po,,de,,german,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/es.po,303,1624,2144,0,0,0,0,303,1624,es.po,,es,,spanish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fr.po,303,1624,2030,0,0,0,0,303,1624,fr.po,,fr,,french,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ro.po,114,556,685,0,0,0,0,114,556,ro.po,,ro,,romanian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sl.po,303,1624,1791,0,0,0,0,303,1624,sl.po,,sl,,slovenian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ca.po,303,1624,2239,0,0,0,0,303,1624,ca.po,,ca,,catalan,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pa.po,143,676,763,0,0,0,0,143,676,pa.po,,pa,,punjabi,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,303,1624,2237,0,0,0,0,303,1624,ca@valencia.po,valencia,ca,,catalan,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/eo.po,117,448,421,54,340,132,836,303,1624,eo.po,,eo,,esperanto,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ta.po,142,669,622,0,0,0,0,142,669,ta.po,,ta,,tamil,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/kk.po,49,115,112,0,0,254,1509,303,1624,kk.po,,kk,,kazakh,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/et.po,142,669,598,0,0,0,0,142,669,et.po,,et,,estonian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/vi.po,306,1635,2469,0,0,0,0,306,1635,vi.po,,vi,,vietnamese,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bs.po,242,1218,1232,0,0,0,0,242,1218,bs.po,,bs,,bosnian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bg.po,303,1624,1887,0,0,0,0,303,1624,bg.po,,bg,,bulgarian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ja.po,241,1221,452,0,0,2,4,243,1225,ja.po,,ja,,japanese,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bn_in.po,114,556,608,0,0,0,0,114,556,bn_in.po,,bn,in,bangla,,india

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sr@latin.po,303,1624,1828,0,0,0,0,303,1624,sr@latin.po,latin,sr,,serbian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/uk.po,290,1576,1574,0,0,0,0,290,1576,uk.po,,uk,,ukrainian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pt.po,307,1636,1905,0,0,0,0,307,1636,pt.po,,pt,,portuguese,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/te.po,118,577,523,0,0,0,0,118,577,te.po,,te,,telugu,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ug.po,143,676,667,0,0,0,0,143,676,ug.po,,ug,,uyghur,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hr.po,303,1624,1542,0,0,0,0,303,1624,hr.po,,hr,,croatian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/id.po,303,1624,1619,0,0,0,0,303,1624,id.po,,id,,indonesian,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ml.po,101,344,303,0,0,202,1280,303,1624,ml.po,,ml,,malayalam,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/tr.po,303,1624,1398,0,0,0,0,303,1624,tr.po,,tr,,turkish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sv.po,303,1624,1670,0,0,0,0,303,1624,sv.po,,sv,,swedish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/tg.po,20,75,79,0,0,199,987,219,1062,tg.po,,tg,,tajik,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fi.po,135,525,460,81,544,87,555,303,1624,fi.po,,fi,,finnish,,

- rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/it.po,303,1624,1856,0,0,0,0,303,1624,it.po,,it,,italian,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/net/de.po,178,726,658,0,0,1563,11281,1741,12007,de.po,,de,,german,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/zh_tw.po,31,187,41,18,67,79,270,128,524,zh_tw.po,,zh,tw,chinese,,taiwan

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/zh_cn.po,31,187,40,18,67,79,270,128,524,zh_cn.po,,zh,cn,chinese,,china

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/tr.po,128,524,482,0,0,0,0,128,524,tr.po,,tr,,turkish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/sv.po,31,187,182,18,67,79,270,128,524,sv.po,,sv,,swedish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ru.po,31,187,185,18,67,79,270,128,524,ru.po,,ru,,russian,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/pt_br.po,31,187,221,18,67,79,270,128,524,pt_br.po,,pt,br,portuguese,,brazil

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/pl.po,31,187,189,18,67,79,270,128,524,pl.po,,pl,,polish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/nl.po,31,187,185,18,67,79,270,128,524,nl.po,,nl,,dutch,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/nb.po,34,212,191,18,67,76,245,128,524,nb.po,,nb,,norwegian bokmål,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ko.po,31,187,148,18,67,79,270,128,524,ko.po,,ko,,korean,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ja.po,128,524,168,0,0,0,0,128,524,ja.po,,ja,,japanese,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/it.po,31,187,205,18,67,79,270,128,524,it.po,,it,,italian,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/hu.po,31,187,168,18,67,79,270,128,524,hu.po,,hu,,hungarian,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/fr.po,128,524,679,0,0,0,0,128,524,fr.po,,fr,,french,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/fi.po,34,212,172,18,67,76,245,128,524,fi.po,,fi,,finnish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/es.po,31,187,265,18,67,79,270,128,524,es.po,,es,,spanish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/de.po,34,214,204,19,70,75,240,128,524,de.po,,de,,german,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/da.po,34,212,196,18,67,76,245,128,524,da.po,,da,,danish,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/cs.po,31,187,174,18,67,79,270,128,524,cs.po,,cs,,czech,,

- samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ar.po,31,187,221,18,67,79,270,128,524,ar.po,,ar,,arabic,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/nl.po,1175,5623,5862,5,19,0,0,1180,5642,nl.po,,nl,,dutch,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/de.po,901,4386,4208,100,282,179,974,1180,5642,de.po,,de,,german,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en@boldquot.po,1180,5642,5642,0,0,0,0,1180,5642,en@boldquot.po,boldquot,en,,english,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/uk.po,1180,5642,5563,0,0,0,0,1180,5642,uk.po,,uk,,ukrainian,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/es.po,862,4257,5337,117,296,201,1089,1180,5642,es.po,,es,,spanish,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/bg.po,624,3240,3316,214,561,342,1841,1180,5642,bg.po,,bg,,bulgarian,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/eo.po,795,3969,4553,149,397,236,1276,1180,5642,eo.po,,eo,,esperanto,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en_gb.po,821,4118,4069,137,363,222,1161,1180,5642,en_gb.po,,en,gb,english,,united kingdom

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/pt.po,261,872,1005,163,521,756,4249,1180,5642,pt.po,,pt,,portuguese,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/fi.po,626,3244,2230,210,558,344,1840,1180,5642,fi.po,,fi,,finnish,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/ru.po,591,2772,2627,195,530,394,2340,1180,5642,ru.po,,ru,,russian,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/nb.po,202,611,565,189,511,789,4520,1180,5642,nb.po,,nb,,norwegian bokmål,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/fr.po,894,4340,5110,102,274,184,1028,1180,5642,fr.po,,fr,,french,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/da.po,679,3501,3192,195,528,306,1613,1180,5642,da.po,,da,,danish,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/hu.po,187,344,339,131,323,862,4975,1180,5642,hu.po,,hu,,hungarian,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/sv.po,1016,4798,4171,71,253,93,591,1180,5642,sv.po,,sv,,swedish,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/gl.po,862,4257,5242,117,296,201,1089,1180,5642,gl.po,,gl,,galician,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en@quot.po,1180,5642,5642,0,0,0,0,1180,5642,en@quot.po,quot,en,,english,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/cs.po,589,3113,2868,225,589,366,1940,1180,5642,cs.po,,cs,,czech,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/ja.po,674,2560,698,114,279,392,2803,1180,5642,ja.po,,ja,,japanese,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/it.po,784,3924,4694,158,425,238,1293,1180,5642,it.po,,it,,italian,,

- sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/pl.po,893,4325,4058,103,289,184,1028,1180,5642,pl.po,,pl,,polish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/da.po,126,683,670,10,98,1,7,137,788,da.po,,da,,danish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ru.po,126,683,711,10,98,1,7,137,788,ru.po,,ru,,russian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/fr.po,137,788,942,0,0,0,0,137,788,fr.po,,fr,,french,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/sk.po,137,788,824,0,0,0,0,137,788,sk.po,,sk,,slovak,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/pt_br.po,137,788,937,0,0,0,0,137,788,pt_br.po,,pt,br,portuguese,,brazil

- sed-4.5-3.fc30.src.rpm.stats.csv,po/eu.po,17,66,72,5,30,115,692,137,788,eu.po,,eu,,basque,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/uk.po,137,788,847,0,0,0,0,137,788,uk.po,,uk,,ukrainian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ca.po,77,443,569,12,94,48,251,137,788,ca.po,,ca,,catalan,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/id.po,77,443,462,12,94,48,251,137,788,id.po,,id,,indonesian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/it.po,75,421,468,10,71,52,296,137,788,it.po,,it,,italian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/af.po,32,133,128,36,168,69,487,137,788,af.po,,af,,afrikaans,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/sr.po,126,683,709,10,98,1,7,137,788,sr.po,,sr,,serbian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/nl.po,137,788,822,0,0,0,0,137,788,nl.po,,nl,,dutch,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/hr.po,137,788,834,0,0,0,0,137,788,hr.po,,hr,,croatian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/vi.po,137,788,1177,0,0,0,0,137,788,vi.po,,vi,,vietnamese,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/pt.po,75,421,478,10,71,52,296,137,788,pt.po,,pt,,portuguese,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/he.po,10,58,60,29,120,98,610,137,788,he.po,,he,,hebrew,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/hu.po,126,683,659,10,98,1,7,137,788,hu.po,,hu,,hungarian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/nb.po,137,788,742,0,0,0,0,137,788,nb.po,,nb,,norwegian bokmål,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/sv.po,137,788,775,0,0,0,0,137,788,sv.po,,sv,,swedish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/zh_tw.po,77,443,167,12,94,48,251,137,788,zh_tw.po,,zh,tw,chinese,,taiwan

- sed-4.5-3.fc30.src.rpm.stats.csv,po/zh_cn.po,115,581,253,14,152,8,55,137,788,zh_cn.po,,zh,cn,chinese,,china

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ast.po,75,421,523,10,71,52,296,137,788,ast.po,,ast,,asturian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ro.po,69,385,430,13,85,55,318,137,788,ro.po,,ro,,romanian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/et.po,126,683,591,10,98,1,7,137,788,et.po,,et,,estonian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ga.po,137,788,928,0,0,0,0,137,788,ga.po,,ga,,irish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/sl.po,77,443,443,12,94,48,251,137,788,sl.po,,sl,,slovenian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/fi.po,126,683,601,10,98,1,7,137,788,fi.po,,fi,,finnish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/el.po,77,443,489,14,99,46,246,137,788,el.po,,el,,greek,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/pl.po,77,443,471,12,94,48,251,137,788,pl.po,,pl,,polish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/cs.po,137,788,779,0,0,0,0,137,788,cs.po,,cs,,czech,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/de.po,114,611,639,8,84,15,93,137,788,de.po,,de,,german,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/es.po,137,788,934,0,0,0,0,137,788,es.po,,es,,spanish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ja.po,102,564,312,18,159,17,65,137,788,ja.po,,ja,,japanese,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/eo.po,126,683,674,10,98,1,7,137,788,eo.po,,eo,,esperanto,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/bg.po,137,788,930,0,0,0,0,137,788,bg.po,,bg,,bulgarian,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/ko.po,10,58,64,29,120,98,610,137,788,ko.po,,ko,,korean,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/tr.po,77,443,398,12,94,48,251,137,788,tr.po,,tr,,turkish,,

- sed-4.5-3.fc30.src.rpm.stats.csv,po/gl.po,84,471,585,11,89,42,228,137,788,gl.po,,gl,,galician,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/de.po,1165,15441,15138,63,1024,18,323,1246,16788,de.po,,de,,german,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/da.po,284,2133,1878,38,299,924,14356,1246,16788,da.po,,da,,danish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/zh_cn.po,992,10751,2893,77,1427,177,4610,1246,16788,zh_cn.po,,zh,cn,chinese,,china

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/pl.po,305,1956,1735,223,1506,718,13326,1246,16788,pl.po,,pl,,polish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/it.po,1131,15246,15351,68,1166,47,376,1246,16788,it.po,,it,,italian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/ru.po,1132,15289,13173,67,1123,47,376,1246,16788,ru.po,,ru,,russian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/fr.po,1134,15368,17304,65,1044,47,376,1246,16788,fr.po,,fr,,french,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/sv.po,413,2261,2021,271,2232,562,12295,1246,16788,sv.po,,sv,,swedish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ro.po,210,1033,1131,183,1243,206,1817,599,4093,ro.po,,ro,,romanian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/fi.po,210,1033,898,185,1253,204,1807,599,4093,fi.po,,fi,,finnish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nn.po,147,711,723,220,1358,232,2024,599,4093,nn.po,,nn,,norwegian nynorsk,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/de.po,554,3657,3684,33,333,12,103,599,4093,de.po,,de,,german,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/cs.po,576,3819,3604,17,216,6,58,599,4093,cs.po,,cs,,czech,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sk.po,386,2403,2424,99,755,114,935,599,4093,sk.po,,sk,,slovak,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/eu.po,419,2689,2480,94,729,86,675,599,4093,eu.po,,eu,,basque,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/gl.po,210,1033,1310,185,1253,204,1807,599,4093,gl.po,,gl,,galician,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pt.po,552,3644,4268,35,346,12,103,599,4093,pt.po,,pt,,portuguese,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nl.po,582,3890,4176,13,167,4,36,599,4093,nl.po,,nl,,dutch,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pt_br.po,496,3263,3583,55,486,48,344,599,4093,pt_br.po,,pt,br,portuguese,,brazil

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ca.po,552,3644,4509,36,353,11,96,599,4093,ca.po,,ca,,catalan,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/da.po,552,3644,3450,35,346,12,103,599,4093,da.po,,da,,danish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ja.po,554,3657,2046,33,333,12,103,599,4093,ja.po,,ja,,japanese,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/uk.po,210,1033,1046,185,1253,204,1807,599,4093,uk.po,,uk,,ukrainian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/bs.po,36,127,126,107,649,456,3317,599,4093,bs.po,,bs,,bosnian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/tl.po,209,1015,1265,186,1271,204,1807,599,4093,tl.po,,tl,,tagalog,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/es.po,495,3246,4010,56,491,48,356,599,4093,es.po,,es,,spanish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,115,598,484,3495,599,4093,fr.po,,fr,,french,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/el.po,548,3615,3973,38,365,13,113,599,4093,el.po,,el,,greek,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/tr.po,229,1172,1094,202,1527,168,1394,599,4093,tr.po,,tr,,turkish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/he.po,50,197,208,179,1078,370,2818,599,4093,he.po,,he,,hebrew,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ru.po,583,3895,3992,12,162,4,36,599,4093,ru.po,,ru,,russian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/it.po,229,1172,1375,194,1487,176,1434,599,4093,it.po,,it,,italian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nb.po,583,3895,3926,12,162,4,36,599,4093,nb.po,,nb,,norwegian bokmål,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/km.po,184,918,680,209,1358,206,1817,599,4093,km.po,,km,,khmer,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pl.po,210,1033,1117,185,1253,204,1807,599,4093,pl.po,,pl,,polish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ko.po,301,1719,1630,134,1055,164,1319,599,4093,ko.po,,ko,,korean,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/vi.po,583,3895,5510,12,162,4,36,599,4093,vi.po,,vi,,vietnamese,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sq.po,7,28,31,83,495,509,3570,599,4093,sq.po,,sq,,albanian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ne.po,210,1033,1119,183,1243,206,1817,599,4093,ne.po,,ne,,nepali,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/dz.po,209,1031,530,184,1245,206,1817,599,4093,dz.po,,dz,,dzongkha,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/kk.po,583,3895,3787,12,162,4,36,599,4093,kk.po,,kk,,kazakh,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/id.po,182,887,941,208,1370,209,1836,599,4093,id.po,,id,,indonesian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/hu.po,210,1033,958,185,1253,204,1807,599,4093,hu.po,,hu,,hungarian,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/zh_tw.po,160,786,322,213,1323,226,1984,599,4093,zh_tw.po,,zh,tw,chinese,,taiwan

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sv.po,482,3139,3081,52,461,65,493,599,4093,sv.po,,sv,,swedish,,

- shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/zh_cn.po,546,3609,1581,38,371,15,113,599,4093,zh_cn.po,,zh,cn,chinese,,china

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pt_br.po,770,1986,2474,0,0,0,0,770,1986,pt_br.po,,pt,br,portuguese,,brazil

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ja.po,654,1659,1453,0,0,116,327,770,1986,ja.po,,ja,,japanese,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/af.po,677,1708,980,0,0,93,278,770,1986,af.po,,af,,afrikaans,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/da.po,727,1864,1058,0,0,43,122,770,1986,da.po,,da,,danish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nl.po,637,1616,1017,0,0,133,370,770,1986,nl.po,,nl,,dutch,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/he.po,720,1845,2222,0,0,50,141,770,1986,he.po,,he,,hebrew,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,0,0,654,1669,654,1669,rw.po,,rw,,kinyarwanda,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sq.po,547,1352,1516,0,0,223,634,770,1986,sq.po,,sq,,albanian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/tr.po,740,1905,2001,0,0,30,81,770,1986,tr.po,,tr,,turkish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,770,1986,770,1986,mr.po,,mr,,marathi,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_cn.po,770,1986,1681,0,0,0,0,770,1986,zh_cn.po,,zh,cn,chinese,,china

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/de.po,770,1986,976,0,0,0,0,770,1986,de.po,,de,,german,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,770,1986,770,1986,be.po,,be,,belarusian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/it.po,770,1986,2118,0,0,0,0,770,1986,it.po,,it,,italian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,770,1986,770,1986,bn_in.po,,bn,in,bangla,,india

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,770,1986,770,1986,te.po,,te,,telugu,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/vi.po,567,1405,2121,0,0,203,581,770,1986,vi.po,,vi,,vietnamese,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/cs.po,770,1986,2168,0,0,0,0,770,1986,cs.po,,cs,,czech,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,770,1986,770,1986,ky.po,,ky,,kyrgyz,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ka.po,210,530,539,0,0,560,1456,770,1986,ka.po,,ka,,georgian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ast.po,214,524,668,0,0,556,1462,770,1986,ast.po,,ast,,asturian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/kk.po,770,1986,2055,0,0,0,0,770,1986,kk.po,,kk,,kazakh,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/eo.po,426,975,672,0,0,344,1011,770,1986,eo.po,,eo,,esperanto,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hr.po,770,1986,2136,0,0,0,0,770,1986,hr.po,,hr,,croatian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/cy.po,148,351,365,0,0,622,1635,770,1986,cy.po,,cy,,welsh,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/bg.po,637,1616,2353,0,0,133,370,770,1986,bg.po,,bg,,bulgarian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ms.po,262,629,629,0,0,508,1357,770,1986,ms.po,,ms,,malay,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,770,1986,770,1986,hi.po,,hi,,hindi,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/oc.po,701,1781,1980,0,0,69,205,770,1986,oc.po,,oc,,occitan,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sr.po,740,1905,2053,0,0,30,81,770,1986,sr.po,,sr,,serbian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/az.po,135,325,363,0,0,635,1661,770,1986,az.po,,az,,azerbaijani,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pt.po,701,1790,2074,0,0,69,196,770,1986,pt.po,,pt,,portuguese,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ko.po,760,1960,2041,0,0,10,26,770,1986,ko.po,,ko,,korean,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ro.po,608,1533,1669,0,0,162,453,770,1986,ro.po,,ro,,romanian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pl.po,770,1986,2209,0,0,0,0,770,1986,pl.po,,pl,,polish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,770,1986,770,1986,th.po,,th,,thai,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ga.po,770,1986,2027,0,0,0,0,770,1986,ga.po,,ga,,irish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/be@latin.po,561,1387,1435,0,0,0,0,561,1387,be@latin.po,latin,be,,belarusian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,770,1986,770,1986,ta.po,,ta,,tamil,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_tw.po,770,1986,1730,0,0,0,0,770,1986,zh_tw.po,,zh,tw,chinese,,taiwan

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/lv.po,654,1659,1647,0,0,116,327,770,1986,lv.po,,lv,,latvian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sk.po,769,1983,2107,0,0,1,3,770,1986,sk.po,,sk,,slovak,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,770,1986,770,1986,or.po,,or,,odia,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/eu.po,729,1869,1852,0,0,41,117,770,1986,eu.po,,eu,,basque,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ar.po,607,1531,1597,0,0,163,455,770,1986,ar.po,,ar,,arabic,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fur.po,0,0,0,0,0,770,1986,770,1986,fur.po,,fur,,friulian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/lt.po,606,1528,1650,0,0,164,458,770,1986,lt.po,,lt,,lithuanian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fi.po,723,1850,1122,0,0,47,136,770,1986,fi.po,,fi,,finnish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fo.po,594,1489,1374,0,0,176,497,770,1986,fo.po,,fo,,faroese,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ca.po,770,1986,2534,0,0,0,0,770,1986,ca.po,,ca,,catalan,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/en_gb.po,757,1951,1951,0,0,13,35,770,1986,en_gb.po,,en,gb,english,,united kingdom

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,770,1986,770,1986,fa.po,,fa,,persian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,770,1986,770,1986,ca@valencia.po,valencia,ca,,catalan,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/id.po,770,1986,2087,0,0,0,0,770,1986,id.po,,id,,indonesian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,770,1986,770,1986,kn.po,,kn,,kannada,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,770,1986,770,1986,ml.po,,ml,,malayalam,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,770,1986,770,1986,wa.po,,wa,,walloon,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,770,1986,770,1986,sr@latin.po,latin,sr,,serbian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/el.po,696,1776,1947,0,0,74,210,770,1986,el.po,,el,,greek,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,770,1986,770,1986,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sv.po,770,1986,1107,0,0,0,0,770,1986,sv.po,,sv,,swedish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/uk.po,770,1986,2133,0,0,0,0,770,1986,uk.po,,uk,,ukrainian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,770,1986,770,1986,et.po,,et,,estonian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nb.po,523,1288,807,0,0,247,698,770,1986,nb.po,,nb,,norwegian bokmål,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,770,1986,770,1986,gu.po,,gu,,gujarati,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/es.po,765,1974,2727,0,0,5,12,770,1986,es.po,,es,,spanish,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,770,1986,770,1986,pa.po,,pa,,punjabi,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,770,1986,770,1986,as.po,,as,,assamese,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/gl.po,674,1713,2329,0,0,96,273,770,1986,gl.po,,gl,,galician,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nn.po,547,1352,844,0,0,223,634,770,1986,nn.po,,nn,,norwegian nynorsk,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ia.po,701,1790,2116,0,0,69,196,770,1986,ia.po,,ia,,interlingua,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fr.po,770,1986,2193,0,0,0,0,770,1986,fr.po,,fr,,french,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hu.po,770,1986,1608,0,0,0,0,770,1986,hu.po,,hu,,hungarian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sl.po,677,1721,2161,0,0,93,265,770,1986,sl.po,,sl,,slovenian,,

- shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ru.po,760,1960,2041,0,0,10,26,770,1986,ru.po,,ru,,russian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,19,50,25,0,0,93,1306,112,1356,zh_tw.po,,zh,tw,chinese,,taiwan

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/uk/uk.po,24,128,145,0,0,88,1228,112,1356,uk.po,,uk,,ukrainian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sv/sv.po,111,1353,1198,0,0,0,0,111,1353,sv.po,,sv,,swedish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sr/sr.po,0,0,0,0,0,112,1356,112,1356,sr.po,,sr,,serbian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sl/sl.po,12,42,40,0,0,100,1314,112,1356,sl.po,,sl,,slovenian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sk/sk.po,67,335,308,0,0,45,1021,112,1356,sk.po,,sk,,slovak,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ru/ru.po,24,128,115,0,0,88,1228,112,1356,ru.po,,ru,,russian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ro/ro.po,111,1353,1327,0,0,0,0,111,1353,ro.po,,ro,,romanian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,111,1353,1455,0,0,0,0,111,1353,pt_br.po,,pt,br,portuguese,,brazil

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/pl/pl.po,111,1353,1080,0,0,0,0,111,1353,pl.po,,pl,,polish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/nl/nl.po,1,1,5,0,0,111,1355,112,1356,nl.po,,nl,,dutch,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/nb/nb.po,1,1,6,0,0,111,1355,112,1356,nb.po,,nb,,norwegian bokmål,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ku/ku.po,13,19,24,0,0,99,1337,112,1356,ku.po,,ku,,kurdish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ja/ja.po,13,45,25,0,0,99,1311,112,1356,ja.po,,ja,,japanese,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/it/it.po,28,83,106,0,0,84,1273,112,1356,it.po,,it,,italian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ia/ia.po,33,81,95,0,0,79,1275,112,1356,ia.po,,ia,,interlingua,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/hu/hu.po,111,1353,1127,0,0,0,0,111,1353,hu.po,,hu,,hungarian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/hr/hr.po,27,246,204,0,0,85,1110,112,1356,hr.po,,hr,,croatian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/gl/gl.po,111,1353,1309,0,0,0,0,111,1353,gl.po,,gl,,galician,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/fr/fr.po,111,1353,1527,0,0,0,0,111,1353,fr.po,,fr,,french,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/fi/fi.po,14,39,36,0,0,98,1317,112,1356,fi.po,,fi,,finnish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/eu/eu.po,24,128,108,0,0,88,1228,112,1356,eu.po,,eu,,basque,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/es/es.po,111,1353,1502,0,0,0,0,111,1353,es.po,,es,,spanish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,24,128,134,0,0,88,1228,112,1356,en_gb.po,,en,gb,english,,united kingdom

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/de/de.po,111,1353,1298,0,0,0,0,111,1353,de.po,,de,,german,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/da/da.po,111,1353,1238,0,0,0,0,111,1353,da.po,,da,,danish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/cs/cs.po,111,1353,1196,0,0,0,0,111,1353,cs.po,,cs,,czech,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ca/ca.po,111,1353,1446,0,0,0,0,111,1353,ca.po,,ca,,catalan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/bg/bg.po,24,128,133,0,0,88,1228,112,1356,bg.po,,bg,,bulgarian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ar/ar.po,24,128,110,0,0,88,1228,112,1356,ar.po,,ar,,arabic,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,184,839,298,0,0,0,0,184,839,zh_tw.po,,zh,tw,chinese,,taiwan

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_hk.po,140,568,200,0,0,5,21,145,589,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,192,847,336,0,0,0,0,192,847,zh_cn.po,,zh,cn,chinese,,china

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/vi.po,95,366,505,0,0,50,223,145,589,vi.po,,vi,,vietnamese,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/uz.po,38,69,77,0,0,107,520,145,589,uz.po,,uz,,uzbek,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ur.po,11,11,26,0,0,134,578,145,589,ur.po,,ur,,urdu,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/uk.po,184,839,852,0,0,0,0,184,839,uk.po,,uk,,ukrainian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ug.po,126,435,414,0,0,19,154,145,589,ug.po,,ug,,uyghur,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/tr.po,184,839,779,0,0,0,0,184,839,tr.po,,tr,,turkish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/th.po,138,509,316,0,0,7,80,145,589,th.po,,th,,thai,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/te.po,89,349,301,0,0,56,240,145,589,te.po,,te,,telugu,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ta.po,18,31,48,0,0,127,558,145,589,ta.po,,ta,,tamil,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sv.po,184,839,826,0,0,0,0,184,839,sv.po,,sv,,swedish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,192,847,831,0,0,0,0,192,847,sr@latin.po,latin,sr,,serbian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sr.po,184,839,823,0,0,0,0,184,839,sr.po,,sr,,serbian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sq.po,136,506,616,0,0,9,83,145,589,sq.po,,sq,,albanian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sl.po,184,839,882,0,0,0,0,184,839,sl.po,,sl,,slovenian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sk.po,184,839,849,0,0,0,0,184,839,sk.po,,sk,,slovak,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/shn.po,4,4,8,0,0,141,585,145,589,shn.po,,shn,,shan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/se.po,22,29,33,0,0,123,560,145,589,se.po,,se,,northern sami,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sd.po,60,121,135,0,0,85,468,145,589,sd.po,,sd,,sindhi,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ru.po,184,839,769,0,0,0,0,184,839,ru.po,,ru,,russian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ro.po,184,839,947,0,0,0,0,184,839,ro.po,,ro,,romanian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,184,839,1077,0,0,0,0,184,839,pt_br.po,,pt,br,portuguese,,brazil

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pt.po,140,568,695,0,0,5,21,145,589,pt.po,,pt,,portuguese,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pl.po,184,839,833,0,0,0,0,184,839,pl.po,,pl,,polish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pa.po,191,799,931,0,0,1,48,192,847,pa.po,,pa,,punjabi,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/oc.po,192,847,990,0,0,0,0,192,847,oc.po,,oc,,occitan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/nl.po,184,839,956,0,0,0,0,184,839,nl.po,,nl,,dutch,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ne.po,119,359,350,52,327,21,161,192,847,ne.po,,ne,,nepali,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/nb.po,192,847,832,0,0,0,0,192,847,nb.po,,nb,,norwegian bokmål,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/my.po,91,362,307,0,0,54,227,145,589,my.po,,my,,burmese,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ms.po,140,568,559,0,0,5,21,145,589,ms.po,,ms,,malay,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ml.po,190,844,720,2,3,0,0,192,847,ml.po,,ml,,malayalam,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/lv.po,184,839,744,0,0,0,0,184,839,lv.po,,lv,,latvian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/lt.po,184,839,743,0,0,0,0,184,839,lt.po,,lt,,lithuanian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ky.po,20,36,38,0,0,125,553,145,589,ky.po,,ky,,kyrgyz,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ku.po,49,69,85,0,0,96,520,145,589,ku.po,,ku,,kurdish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ko.po,184,839,751,0,0,0,0,184,839,ko.po,,ko,,korean,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/km.po,121,406,214,0,0,24,183,145,589,km.po,,km,,khmer,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/kk.po,93,218,227,0,0,91,621,184,839,kk.po,,kk,,kazakh,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ja.po,184,839,370,0,0,0,0,184,839,ja.po,,ja,,japanese,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/it.po,184,839,890,0,0,0,0,184,839,it.po,,it,,italian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/is.po,192,847,898,0,0,0,0,192,847,is.po,,is,,icelandic,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/id.po,184,839,851,0,0,0,0,184,839,id.po,,id,,indonesian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hy.po,5,5,10,0,0,140,584,145,589,hy.po,,hy,,armenian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hu.po,184,839,761,0,0,0,0,184,839,hu.po,,hu,,hungarian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hr.po,183,838,760,0,0,0,0,183,838,hr.po,,hr,,croatian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/he.po,140,568,567,0,0,5,21,145,589,he.po,,he,,hebrew,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/gl.po,184,839,950,0,0,0,0,184,839,gl.po,,gl,,galician,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/gd.po,192,847,1120,0,0,0,0,192,847,gd.po,,gd,,scottish gaelic,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fur.po,184,839,948,0,0,0,0,184,839,fur.po,,fur,,friulian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fr.po,184,839,1124,0,0,0,0,184,839,fr.po,,fr,,french,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fi.po,184,839,661,0,0,0,0,184,839,fi.po,,fi,,finnish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fa.po,192,847,924,0,0,0,0,192,847,fa.po,,fa,,persian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/eu.po,192,847,758,0,0,0,0,192,847,eu.po,,eu,,basque,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/et.po,89,349,323,0,0,56,240,145,589,et.po,,et,,estonian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/es.po,184,839,1033,0,0,0,0,184,839,es.po,,es,,spanish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/eo.po,184,838,814,0,0,0,0,184,838,eo.po,,eo,,esperanto,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,192,847,888,0,0,0,0,192,847,en_gb.po,,en,gb,english,,united kingdom

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/el.po,184,839,972,0,0,0,0,184,839,el.po,,el,,greek,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/de.po,184,839,978,0,0,0,0,184,839,de.po,,de,,german,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/da.po,183,838,847,0,0,0,0,183,838,da.po,,da,,danish,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/cs.po,184,839,844,0,0,0,0,184,839,cs.po,,cs,,czech,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ce.po,0,0,0,0,0,145,589,145,589,ce.po,,ce,,chechen,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,192,847,972,0,0,0,0,192,847,ca@valencia.po,valencia,ca,,catalan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ca.po,192,847,972,0,0,0,0,192,847,ca.po,,ca,,catalan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/bo.po,87,325,208,0,0,58,264,145,589,bo.po,,bo,,tibetan,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/bg.po,106,383,455,0,0,39,206,145,589,bg.po,,bg,,bulgarian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/be.po,192,847,780,0,0,0,0,192,847,be.po,,be,,belarusian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/az.po,15,23,30,0,0,130,566,145,589,az.po,,az,,azerbaijani,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ast.po,120,404,471,0,0,25,185,145,589,ast.po,,ast,,asturian,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ar.po,184,786,745,2,17,6,44,192,847,ar.po,,ar,,arabic,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/am.po,138,509,512,0,0,7,80,145,589,am.po,,am,,amharic,,

- simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/af.po,183,837,887,0,0,0,0,183,837,af.po,,af,,afrikaans,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,30,122,30,122,zu.po,,zu,,zulu,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/zh_tw.po,11,54,14,7,33,12,35,30,122,zh_tw.po,,zh,tw,chinese,,taiwan

- sos-3.7-1.fc30.src.rpm.stats.csv,po/zh_cn.po,11,54,19,7,33,12,35,30,122,zh_cn.po,,zh,cn,chinese,,china

- sos-3.7-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,30,122,30,122,vi.po,,vi,,vietnamese,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,,ur,,urdu,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/uk.po,11,54,42,7,33,12,35,30,122,uk.po,,uk,,ukrainian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/tr.po,11,54,53,7,33,12,35,30,122,tr.po,,tr,,turkish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/th.po,11,54,21,6,29,13,39,30,122,th.po,,th,,thai,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/te.po,11,54,51,7,33,12,35,30,122,te.po,,te,,telugu,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ta.po,11,54,54,7,33,12,35,30,122,ta.po,,ta,,tamil,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sv.po,11,54,58,7,33,12,35,30,122,sv.po,,sv,,swedish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sr@latin.po,11,54,50,7,33,12,35,30,122,sr@latin.po,latin,sr,,serbian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sr.po,11,54,50,7,33,12,35,30,122,sr.po,,sr,,serbian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,30,122,30,122,sq.po,,sq,,albanian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,30,122,30,122,sl.po,,sl,,slovenian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/sk.po,11,54,56,7,33,12,35,30,122,sk.po,,sk,,slovak,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/si.po,11,54,58,6,29,13,39,30,122,si.po,,si,,sinhala,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ru.po,11,54,45,7,33,12,35,30,122,ru.po,,ru,,russian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,30,122,30,122,ro.po,,ro,,romanian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,54,60,7,33,12,35,30,122,pt_br.po,,pt,br,portuguese,,brazil

- sos-3.7-1.fc30.src.rpm.stats.csv,po/pt.po,11,54,61,7,33,12,35,30,122,pt.po,,pt,,portuguese,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/pl.po,30,122,109,0,0,0,0,30,122,pl.po,,pl,,polish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/pa.po,11,54,63,7,33,12,35,30,122,pa.po,,pa,,punjabi,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/or.po,11,54,58,7,33,12,35,30,122,or.po,,or,,odia,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,30,122,30,122,nso.po,,nso,,northern sotho,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,30,122,30,122,nn.po,,nn,,norwegian nynorsk,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/nl.po,11,54,63,7,33,12,35,30,122,nl.po,,nl,,dutch,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/nds.po,4,13,12,2,7,24,102,30,122,nds.po,,nds,,low german,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/nb.po,5,21,24,2,7,23,94,30,122,nb.po,,nb,,norwegian bokmål,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,30,122,30,122,my.po,,my,,burmese,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,30,122,30,122,ms.po,,ms,,malay,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/mr.po,11,54,58,7,33,12,35,30,122,mr.po,,mr,,marathi,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ml.po,11,54,48,7,33,12,35,30,122,ml.po,,ml,,malayalam,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,30,122,30,122,mk.po,,mk,,macedonian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,30,122,30,122,lv.po,,lv,,latvian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,30,122,30,122,lt.po,,lt,,lithuanian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,,lo,,lao,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,30,122,30,122,ku.po,,ku,,kurdish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ko.po,11,54,55,7,33,12,35,30,122,ko.po,,ko,,korean,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/kn.po,11,54,47,7,33,12,35,30,122,kn.po,,kn,,kannada,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,30,122,30,122,ka.po,,ka,,georgian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ja.po,11,54,19,7,33,12,35,30,122,ja.po,,ja,,japanese,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/it.po,11,54,67,7,33,12,35,30,122,it.po,,it,,italian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,30,122,30,122,is.po,,is,,icelandic,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,,ilo,,iloko,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/id.po,8,41,44,4,19,18,62,30,122,id.po,,id,,indonesian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,,hy,,armenian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/hu.po,11,54,46,7,33,12,35,30,122,hu.po,,hu,,hungarian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,30,122,30,122,hr.po,,hr,,croatian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/hi.po,11,54,66,7,33,12,35,30,122,hi.po,,hi,,hindi,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,30,122,30,122,he.po,,he,,hebrew,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/gu.po,11,54,68,7,33,12,35,30,122,gu.po,,gu,,gujarati,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,30,122,30,122,gl.po,,gl,,galician,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/fr.po,11,54,64,7,33,12,35,30,122,fr.po,,fr,,french,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/fi.po,11,54,54,7,33,12,35,30,122,fi.po,,fi,,finnish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,30,122,30,122,fa.po,,fa,,persian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,30,122,30,122,eu.po,,eu,,basque,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,30,122,30,122,et.po,,et,,estonian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/es.po,30,122,159,0,0,0,0,30,122,es.po,,es,,spanish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/en_gb.po,11,54,54,6,29,13,39,30,122,en_gb.po,,en,gb,english,,united kingdom

- sos-3.7-1.fc30.src.rpm.stats.csv,po/en.po,11,54,54,8,38,14,45,33,137,en.po,,en,,english,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/el.po,11,54,67,7,33,12,35,30,122,el.po,,el,,greek,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/de_ch.po,11,54,55,6,29,13,39,30,122,de_ch.po,,de,ch,german,,switzerland

- sos-3.7-1.fc30.src.rpm.stats.csv,po/de.po,11,54,55,7,33,12,35,30,122,de.po,,de,,german,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/da.po,11,54,57,7,33,12,35,30,122,da.po,,da,,danish,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,30,122,30,122,cy.po,,cy,,welsh,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/cs.po,11,54,50,7,33,12,35,30,122,cs.po,,cs,,czech,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ca.po,11,54,61,7,33,12,35,30,122,ca.po,,ca,,catalan,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/bs.po,11,54,53,7,33,12,35,30,122,bs.po,,bs,,bosnian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,54,65,7,33,12,35,30,122,bn_in.po,,bn,in,bangla,,india

- sos-3.7-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,30,122,30,122,bn.po,,bn,,bangla,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/bg.po,11,54,51,7,33,12,35,30,122,bg.po,,bg,,bulgarian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,30,122,30,122,be.po,,be,,belarusian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ast.po,11,54,60,6,29,13,39,30,122,ast.po,,ast,,asturian,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/as.po,11,54,64,6,29,13,39,30,122,as.po,,as,,assamese,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/ar.po,11,54,55,7,33,12,35,30,122,ar.po,,ar,,arabic,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,30,122,30,122,am.po,,am,,amharic,,

- sos-3.7-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,30,122,30,122,af.po,,af,,afrikaans,,

- speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/cs.po,47,285,279,5,24,109,1106,161,1415,cs.po,,cs,,czech,,

- speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/de.po,155,1370,1349,2,25,4,20,161,1415,de.po,,de,,german,,

- speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/hu.po,47,285,287,5,24,109,1106,161,1415,hu.po,,hu,,hungarian,,

- spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/de.po,64,292,241,7,29,3,34,74,355,de.po,,de,,german,,

- spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/it.po,62,275,289,7,29,5,51,74,355,it.po,,it,,italian,,

- spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/fr.po,5,2,5,12,32,57,321,74,355,fr.po,,fr,,french,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ca.po,443,2796,3618,1,9,188,1104,632,3909,ca.po,,ca,,catalan,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pl.po,626,3863,3683,2,15,4,31,632,3909,pl.po,,pl,,polish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ru.po,189,1172,1095,1,9,442,2728,632,3909,ru.po,,ru,,russian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/nl.po,387,2372,2522,1,9,244,1528,632,3909,nl.po,,nl,,dutch,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pt.po,170,971,1134,1,9,461,2929,632,3909,pt.po,,pt,,portuguese,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/nb.po,15,46,35,0,0,617,3863,632,3909,nb.po,,nb,,norwegian bokmål,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/de.po,401,2503,2349,1,9,230,1397,632,3909,de.po,,de,,german,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,107,582,153,1,9,524,3318,632,3909,zh_tw.po,,zh,tw,chinese,,taiwan

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,9,36,12,0,0,623,3873,632,3909,zh_cn.po,,zh,cn,chinese,,china

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/fr.po,443,2796,3408,1,9,188,1104,632,3909,fr.po,,fr,,french,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/it.po,180,1029,1127,1,9,451,2871,632,3909,it.po,,it,,italian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/sv.po,626,3863,3373,2,15,4,31,632,3909,sv.po,,sv,,swedish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/tr.po,5,15,16,0,0,627,3894,632,3909,tr.po,,tr,,turkish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/bg.po,128,704,774,1,9,503,3196,632,3909,bg.po,,bg,,bulgarian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/id.po,108,591,595,0,0,524,3318,632,3909,id.po,,id,,indonesian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/tg.po,10,23,20,0,0,622,3886,632,3909,tg.po,,tg,,tajik,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/uk.po,626,3863,3985,2,15,4,31,632,3909,uk.po,,uk,,ukrainian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,6,32,38,0,0,626,3877,632,3909,pt_br.po,,pt,br,portuguese,,brazil

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ja.po,387,2372,744,1,9,244,1528,632,3909,ja.po,,ja,,japanese,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/eu.po,65,218,196,0,0,567,3691,632,3909,eu.po,,eu,,basque,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/es.po,626,3863,4766,2,15,4,31,632,3909,es.po,,es,,spanish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/hu.po,71,317,290,0,0,561,3592,632,3909,hu.po,,hu,,hungarian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ca.po,1025,7898,8838,31,246,1400,25326,2456,33470,ca.po,,ca,,catalan,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ru.po,43,96,118,3,8,2410,33366,2456,33470,ru.po,,ru,,russian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/nl.po,56,431,426,9,15,2391,33024,2456,33470,nl.po,,nl,,dutch,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/fi.po,31,53,45,4,7,2421,33410,2456,33470,fi.po,,fi,,finnish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/pt.po,252,730,768,18,30,2186,32710,2456,33470,pt.po,,pt,,portuguese,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/cs.po,14,36,31,3,3,2439,33431,2456,33470,cs.po,,cs,,czech,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/de.po,1335,16404,15705,32,344,1089,16722,2456,33470,de.po,,de,,german,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/br.po,29,60,66,6,9,2421,33401,2456,33470,br.po,,br,,breton,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/zh_cn.po,17,48,31,3,3,2436,33419,2456,33470,zh_cn.po,,zh,cn,chinese,,china

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/fr.po,1359,15080,16738,32,285,1065,18105,2456,33470,fr.po,,fr,,french,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/sv.po,795,10769,9429,31,256,1630,22445,2456,33470,sv.po,,sv,,swedish,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/tg.po,36,64,63,2,6,2418,33400,2456,33470,tg.po,,tg,,tajik,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/uk.po,2346,31071,29971,44,595,66,1804,2456,33470,uk.po,,uk,,ukrainian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/pt_br.po,10,19,21,0,0,2446,33451,2456,33470,pt_br.po,,pt,br,portuguese,,brazil

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ja.po,1032,9142,3139,30,216,1394,24112,2456,33470,ja.po,,ja,,japanese,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/eu.po,0,0,0,0,0,2456,33470,2456,33470,eu.po,,eu,,basque,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/lv.po,60,115,110,6,12,2390,33343,2456,33470,lv.po,,lv,,latvian,,

- sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/es.po,1154,13326,14793,33,323,1269,19821,2456,33470,es.po,,es,,spanish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/zh_cn.po,424,3001,1100,0,0,0,0,424,3001,zh_cn.po,,zh,cn,chinese,,china

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/zh_cn.mo,424,3001,1100,0,0,0,0,424,3001,zh_cn.mo,,zh,cn,chinese,,china

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/vi.po,424,3001,4313,0,0,0,0,424,3001,vi.po,,vi,,vietnamese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/vi.mo,424,3001,4313,0,0,0,0,424,3001,vi.mo,,vi,,vietnamese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/uk.po,424,3001,3136,0,0,0,0,424,3001,uk.po,,uk,,ukrainian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/uk.mo,424,3001,3136,0,0,0,0,424,3001,uk.mo,,uk,,ukrainian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/tr.po,113,757,714,0,0,224,1477,337,2234,tr.po,,tr,,turkish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/tr.mo,113,757,714,0,0,0,0,113,757,tr.mo,,tr,,turkish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sv.po,424,3001,2722,0,0,0,0,424,3001,sv.po,,sv,,swedish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sv.mo,424,3001,2722,0,0,0,0,424,3001,sv.mo,,sv,,swedish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sr.po,396,2724,2794,0,0,0,0,396,2724,sr.po,,sr,,serbian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sr.mo,396,2724,2794,0,0,0,0,396,2724,sr.mo,,sr,,serbian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sl.po,337,2211,2196,0,0,0,0,337,2211,sl.po,,sl,,slovenian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sl.mo,337,2211,2196,0,0,0,0,337,2211,sl.mo,,sl,,slovenian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sk.po,39,251,254,0,0,315,2122,354,2373,sk.po,,sk,,slovak,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sk.mo,39,251,254,0,0,0,0,39,251,sk.mo,,sk,,slovak,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ru.po,79,483,461,0,0,274,1880,353,2363,ru.po,,ru,,russian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ru.mo,79,483,461,0,0,0,0,79,483,ru.mo,,ru,,russian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt_br.po,424,3001,3544,0,0,0,0,424,3001,pt_br.po,,pt,br,portuguese,,brazil

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt_br.mo,424,3001,3544,0,0,0,0,424,3001,pt_br.mo,,pt,br,portuguese,,brazil

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt.po,424,3001,3148,0,0,0,0,424,3001,pt.po,,pt,,portuguese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt.mo,424,3001,3148,0,0,0,0,424,3001,pt.mo,,pt,,portuguese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pl.po,424,3001,2984,0,0,0,0,424,3001,pl.po,,pl,,polish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pl.mo,424,3001,2984,0,0,0,0,424,3001,pl.mo,,pl,,polish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nl.po,358,2398,2331,14,95,28,259,400,2752,nl.po,,nl,,dutch,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nl.mo,358,2398,2331,0,0,0,0,358,2398,nl.mo,,nl,,dutch,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nb.po,424,3001,3007,0,0,0,0,424,3001,nb.po,,nb,,norwegian bokmål,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nb.mo,424,3001,3007,0,0,0,0,424,3001,nb.mo,,nb,,norwegian bokmål,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/lt.po,15,98,79,0,0,320,2040,335,2138,lt.po,,lt,,lithuanian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/lt.mo,15,98,79,0,0,0,0,15,98,lt.mo,,lt,,lithuanian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ko.po,392,2691,2332,0,0,0,0,392,2691,ko.po,,ko,,korean,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ko.mo,392,2691,2332,0,0,0,0,392,2691,ko.mo,,ko,,korean,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ja.po,424,3001,1334,0,0,0,0,424,3001,ja.po,,ja,,japanese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ja.mo,424,3001,1334,0,0,0,0,424,3001,ja.mo,,ja,,japanese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/it.po,424,3001,3187,0,0,0,0,424,3001,it.po,,it,,italian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/it.mo,424,3001,3187,0,0,0,0,424,3001,it.mo,,it,,italian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hu.po,202,1473,1421,0,0,200,1289,402,2762,hu.po,,hu,,hungarian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hu.mo,202,1473,1421,0,0,0,0,202,1473,hu.mo,,hu,,hungarian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hr.po,424,3001,3038,0,0,0,0,424,3001,hr.po,,hr,,croatian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hr.mo,424,3001,3038,0,0,0,0,424,3001,hr.mo,,hr,,croatian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fur.po,102,534,578,1,4,299,2224,402,2762,fur.po,,fur,,friulian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fur.mo,102,534,578,0,0,0,0,102,534,fur.mo,,fur,,friulian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fr.po,356,2392,3140,0,0,0,0,356,2392,fr.po,,fr,,french,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fr.mo,356,2392,3140,0,0,0,0,356,2392,fr.mo,,fr,,french,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fi.po,396,2724,2075,0,0,0,0,396,2724,fi.po,,fi,,finnish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fi.mo,396,2724,2075,0,0,0,0,396,2724,fi.mo,,fi,,finnish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eu.po,77,324,335,0,0,258,1810,335,2134,eu.po,,eu,,basque,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eu.mo,77,324,335,0,0,0,0,77,324,eu.mo,,eu,,basque,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eo.po,419,2960,2840,0,0,0,0,419,2960,eo.po,,eo,,esperanto,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eo.mo,419,2960,2840,0,0,0,0,419,2960,eo.mo,,eo,,esperanto,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/el.po,336,2248,2514,1,11,0,0,337,2259,el.po,,el,,greek,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/el.mo,336,2248,2514,0,0,0,0,336,2248,el.mo,,el,,greek,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/de.po,424,3001,3110,0,0,0,0,424,3001,de.po,,de,,german,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/de.mo,424,3001,3110,0,0,0,0,424,3001,de.mo,,de,,german,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/da.po,419,2960,2681,0,0,0,0,419,2960,da.po,,da,,danish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/da.mo,419,2960,2681,0,0,0,0,419,2960,da.mo,,da,,danish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/cs.po,424,3001,2827,0,0,0,0,424,3001,cs.po,,cs,,czech,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/cs.mo,424,3001,2827,0,0,0,0,424,3001,cs.mo,,cs,,czech,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ca.po,379,2589,3193,0,0,0,0,379,2589,ca.po,,ca,,catalan,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ca.mo,379,2589,3193,0,0,0,0,379,2589,ca.mo,,ca,,catalan,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_tw.po,178,1170,461,0,0,0,0,178,1170,zh_tw.po,,zh,tw,chinese,,taiwan

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_tw.mo,178,1170,461,0,0,0,0,178,1170,zh_tw.mo,,zh,tw,chinese,,taiwan

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_cn.po,182,1192,400,0,0,0,0,182,1192,zh_cn.po,,zh,cn,chinese,,china

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_cn.mo,182,1192,400,0,0,0,0,182,1192,zh_cn.mo,,zh,cn,chinese,,china

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/vi.po,182,1192,1772,0,0,0,0,182,1192,vi.po,,vi,,vietnamese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/vi.mo,182,1192,1772,0,0,0,0,182,1192,vi.mo,,vi,,vietnamese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/uk.po,182,1192,1250,0,0,0,0,182,1192,uk.po,,uk,,ukrainian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/uk.mo,182,1192,1250,0,0,0,0,182,1192,uk.mo,,uk,,ukrainian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/tr.po,182,1192,961,0,0,0,0,182,1192,tr.po,,tr,,turkish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/tr.mo,182,1192,961,0,0,0,0,182,1192,tr.mo,,tr,,turkish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sv.po,182,1192,1128,0,0,0,0,182,1192,sv.po,,sv,,swedish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sv.mo,182,1192,1128,0,0,0,0,182,1192,sv.mo,,sv,,swedish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sr.po,177,1165,1214,0,0,0,0,177,1165,sr.po,,sr,,serbian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sr.mo,177,1165,1214,0,0,0,0,177,1165,sr.mo,,sr,,serbian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sl.po,161,996,1015,0,0,0,0,161,996,sl.po,,sl,,slovenian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sl.mo,161,996,1015,0,0,0,0,161,996,sl.mo,,sl,,slovenian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sk.po,140,909,957,0,0,33,229,173,1138,sk.po,,sk,,slovak,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sk.mo,140,909,957,0,0,0,0,140,909,sk.mo,,sk,,slovak,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ru.po,173,1138,1114,0,0,0,0,173,1138,ru.po,,ru,,russian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ru.mo,173,1138,1114,0,0,0,0,173,1138,ru.mo,,ru,,russian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt_br.po,182,1192,1452,0,0,0,0,182,1192,pt_br.po,,pt,br,portuguese,,brazil

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt_br.mo,182,1192,1452,0,0,0,0,182,1192,pt_br.mo,,pt,br,portuguese,,brazil

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt.po,182,1192,1261,0,0,0,0,182,1192,pt.po,,pt,,portuguese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt.mo,182,1192,1261,0,0,0,0,182,1192,pt.mo,,pt,,portuguese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pl.po,182,1192,1241,0,0,0,0,182,1192,pl.po,,pl,,polish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pl.mo,182,1192,1241,0,0,0,0,182,1192,pl.mo,,pl,,polish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nn.po,32,154,161,142,991,1,4,175,1149,nn.po,,nn,,norwegian nynorsk,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nn.mo,32,154,161,0,0,0,0,32,154,nn.mo,,nn,,norwegian nynorsk,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nl.po,169,1110,1090,0,0,0,0,169,1110,nl.po,,nl,,dutch,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nl.mo,169,1110,1090,0,0,0,0,169,1110,nl.mo,,nl,,dutch,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nb.po,182,1192,1244,0,0,0,0,182,1192,nb.po,,nb,,norwegian bokmål,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nb.mo,182,1192,1244,0,0,0,0,182,1192,nb.mo,,nb,,norwegian bokmål,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ko.po,175,1152,998,0,0,0,0,175,1152,ko.po,,ko,,korean,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ko.mo,175,1152,998,0,0,0,0,175,1152,ko.mo,,ko,,korean,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ja.po,182,1192,500,0,0,0,0,182,1192,ja.po,,ja,,japanese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ja.mo,182,1192,500,0,0,0,0,182,1192,ja.mo,,ja,,japanese,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/it.po,182,1192,1324,0,0,0,0,182,1192,it.po,,it,,italian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/it.mo,182,1192,1324,0,0,0,0,182,1192,it.mo,,it,,italian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hu.po,177,1165,1064,0,0,0,0,177,1165,hu.po,,hu,,hungarian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hu.mo,177,1165,1064,0,0,0,0,177,1165,hu.mo,,hu,,hungarian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hr.po,182,1192,1191,0,0,0,0,182,1192,hr.po,,hr,,croatian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hr.mo,182,1192,1191,0,0,0,0,182,1192,hr.mo,,hr,,croatian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/gl.po,161,1043,1312,1,8,7,58,169,1109,gl.po,,gl,,galician,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/gl.mo,161,1043,1312,0,0,0,0,161,1043,gl.mo,,gl,,galician,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fur.po,170,1128,1317,0,0,5,24,175,1152,fur.po,,fur,,friulian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fur.mo,170,1128,1317,0,0,0,0,170,1128,fur.mo,,fur,,friulian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fr.po,182,1192,1443,0,0,0,0,182,1192,fr.po,,fr,,french,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fr.mo,182,1192,1443,0,0,0,0,182,1192,fr.mo,,fr,,french,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fi.po,177,1165,899,0,0,0,0,177,1165,fi.po,,fi,,finnish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fi.mo,177,1165,899,0,0,0,0,177,1165,fi.mo,,fi,,finnish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eu.po,71,383,378,0,0,76,488,147,871,eu.po,,eu,,basque,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eu.mo,71,383,378,0,0,0,0,71,383,eu.mo,,eu,,basque,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/es.po,177,1165,1427,0,0,0,0,177,1165,es.po,,es,,spanish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/es.mo,177,1165,1427,0,0,0,0,177,1165,es.mo,,es,,spanish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eo.po,178,1170,1116,0,0,0,0,178,1170,eo.po,,eo,,esperanto,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eo.mo,178,1170,1116,0,0,0,0,178,1170,eo.mo,,eo,,esperanto,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/de.po,175,1152,1169,0,0,0,0,175,1152,de.po,,de,,german,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/de.mo,175,1152,1169,0,0,0,0,175,1152,de.mo,,de,,german,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/da.po,178,1170,1101,0,0,0,0,178,1170,da.po,,da,,danish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/da.mo,178,1170,1101,0,0,0,0,178,1170,da.mo,,da,,danish,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/cs.po,182,1192,1122,0,0,0,0,182,1192,cs.po,,cs,,czech,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/cs.mo,182,1192,1122,0,0,0,0,182,1192,cs.mo,,cs,,czech,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ca.po,175,1149,1480,0,0,0,0,175,1149,ca.po,,ca,,catalan,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ca.mo,175,1149,1480,0,0,0,0,175,1149,ca.mo,,ca,,catalan,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ast.po,182,1192,1360,0,0,0,0,182,1192,ast.po,,ast,,asturian,,

- sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ast.mo,182,1192,1360,0,0,0,0,182,1192,ast.mo,,ast,,asturian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,11,24,13,0,0,0,0,11,24,zh_tw.po,,zh,tw,chinese,,taiwan

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,11,24,13,0,0,0,0,11,24,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,11,24,17,0,0,0,0,11,24,zh_cn.po,,zh,cn,chinese,,china

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,9,15,17,0,0,0,0,9,15,vi.po,,vi,,vietnamese,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,11,24,21,0,0,0,0,11,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,11,24,25,0,0,0,0,11,24,uk.po,,uk,,ukrainian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,11,24,19,0,0,0,0,11,24,ug.po,,ug,,uyghur,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,11,24,20,0,0,0,0,11,24,tr.po,,tr,,turkish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,11,24,14,0,0,0,0,11,24,th.po,,th,,thai,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,11,24,22,0,0,0,0,11,24,tg.po,,tg,,tajik,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,11,24,23,0,0,0,0,11,24,te.po,,te,,telugu,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,11,24,22,0,0,0,0,11,24,ta.po,,ta,,tamil,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,9,15,16,0,0,0,0,9,15,sv.po,,sv,,swedish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,11,24,29,0,0,0,0,11,24,sr@latin.po,latin,sr,,serbian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,11,24,29,0,0,0,0,11,24,sr.po,,sr,,serbian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,11,24,27,0,0,0,0,11,24,sl.po,,sl,,slovenian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,11,24,26,0,0,0,0,11,24,sk.po,,sk,,slovak,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,11,24,28,0,0,0,0,11,24,ru.po,,ru,,russian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,9,15,20,0,0,0,0,9,15,ro.po,,ro,,romanian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,24,29,0,0,0,0,11,24,pt_br.po,,pt,br,portuguese,,brazil

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,9,15,16,0,0,0,0,9,15,pl.po,,pl,,polish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,11,24,28,0,0,0,0,11,24,pa.po,,pa,,punjabi,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,11,24,25,0,0,0,0,11,24,or.po,,or,,odia,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,9,15,15,0,0,0,0,9,15,oc.po,,oc,,occitan,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,11,24,26,0,0,0,0,11,24,nl.po,,nl,,dutch,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,9,15,15,0,0,0,0,9,15,ne.po,,ne,,nepali,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,11,24,23,0,0,0,0,11,24,nb.po,,nb,,norwegian bokmål,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,11,24,25,0,0,0,0,11,24,mr.po,,mr,,marathi,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,11,24,22,0,0,0,0,11,24,ml.po,,ml,,malayalam,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,11,24,27,0,0,0,0,11,24,lv.po,,lv,,latvian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,11,24,25,0,0,0,0,11,24,lt.po,,lt,,lithuanian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,11,24,23,0,0,0,0,11,24,ko.po,,ko,,korean,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,11,24,23,0,0,0,0,11,24,kn.po,,kn,,kannada,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,11,24,22,0,0,0,0,11,24,kk.po,,kk,,kazakh,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,11,24,15,0,0,0,0,11,24,ja.po,,ja,,japanese,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,11,24,29,0,0,0,0,11,24,it.po,,it,,italian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,11,24,24,0,0,0,0,11,24,is.po,,is,,icelandic,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,11,24,21,0,0,0,0,11,24,id.po,,id,,indonesian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,11,24,22,0,0,0,0,11,24,hu.po,,hu,,hungarian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,9,15,17,0,0,0,0,9,15,hr.po,,hr,,croatian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,11,24,30,0,0,0,0,11,24,hi.po,,hi,,hindi,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,11,24,26,0,0,0,0,11,24,he.po,,he,,hebrew,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,11,24,28,0,0,0,0,11,24,gu.po,,gu,,gujarati,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,11,24,28,0,0,0,0,11,24,gl.po,,gl,,galician,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,9,15,21,0,0,0,0,9,15,gd.po,,gd,,scottish gaelic,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,11,24,28,0,0,0,0,11,24,fur.po,,fur,,friulian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,11,24,28,0,0,0,0,11,24,fr.po,,fr,,french,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,11,24,20,0,0,0,0,11,24,fi.po,,fi,,finnish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,11,24,29,0,0,0,0,11,24,fa.po,,fa,,persian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,11,24,23,0,0,0,0,11,24,eu.po,,eu,,basque,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,11,24,22,0,0,0,0,11,24,et.po,,et,,estonian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,11,24,28,0,0,0,0,11,24,es.po,,es,,spanish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,9,15,15,0,0,0,0,9,15,eo.po,,eo,,esperanto,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,11,24,24,0,0,0,0,11,24,en_gb.po,,en,gb,english,,united kingdom

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,11,24,27,0,0,0,0,11,24,el.po,,el,,greek,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,11,24,26,0,0,0,0,11,24,de.po,,de,,german,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,9,15,15,0,0,0,0,9,15,da.po,,da,,danish,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,11,24,28,0,0,0,0,11,24,cs.po,,cs,,czech,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,15,17,0,0,0,0,9,15,ca@valencia.po,valencia,ca,,catalan,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,11,24,31,0,0,0,0,11,24,ca.po,,ca,,catalan,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,11,24,26,0,0,0,0,11,24,bs.po,,bs,,bosnian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,24,24,0,0,0,0,11,24,bn_in.po,,bn,in,bangla,,india

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,11,24,27,0,0,0,0,11,24,bg.po,,bg,,bulgarian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,11,24,26,0,0,0,0,11,24,be.po,,be,,belarusian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,9,15,15,0,0,0,0,9,15,ast.po,,ast,,asturian,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,11,24,26,0,0,0,0,11,24,as.po,,as,,assamese,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,9,15,22,0,0,0,0,9,15,ar.po,,ar,,arabic,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,11,24,28,0,0,0,0,11,24,an.po,,an,,aragonese,,

- sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,9,15,16,0,0,0,0,9,15,af.po,,af,,afrikaans,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nl.po,888,3435,3358,4,8,7,7,899,3450,nl.po,,nl,,dutch,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bn.po,724,3023,3367,6,9,169,418,899,3450,bn.po,,bn,,bangla,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pa.po,729,3043,3301,6,9,164,398,899,3450,pa.po,,pa,,punjabi,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/cs.po,752,3147,2850,2,4,145,299,899,3450,cs.po,,cs,,czech,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/lv.po,727,3039,2675,6,9,166,402,899,3450,lv.po,,lv,,latvian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hi.po,727,3039,3517,6,9,166,402,899,3450,hi.po,,hi,,hindi,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pl.po,888,3435,3327,4,8,7,7,899,3450,pl.po,,pl,,polish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/et.po,729,3043,2498,6,9,164,398,899,3450,et.po,,et,,estonian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ru.po,744,3137,2857,2,4,153,309,899,3450,ru.po,,ru,,russian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sk.po,846,3328,3146,15,48,38,74,899,3450,sk.po,,sk,,slovak,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bs.po,122,515,469,2,3,775,2932,899,3450,bs.po,,bs,,bosnian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fi.po,752,3147,2439,2,4,145,299,899,3450,fi.po,,fi,,finnish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/uk.po,888,3435,3177,4,8,7,7,899,3450,uk.po,,uk,,ukrainian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sv.po,752,3147,2874,2,4,145,299,899,3450,sv.po,,sv,,swedish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/gu.po,730,3046,3366,7,11,162,393,899,3450,gu.po,,gu,,gujarati,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/mr.po,727,3039,3030,10,18,162,393,899,3450,mr.po,,mr,,marathi,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pt.po,744,3137,3526,2,4,153,309,899,3450,pt.po,,pt,,portuguese,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/es.po,752,3147,3627,2,4,145,299,899,3450,es.po,,es,,spanish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/cy.po,12,12,12,0,0,887,3438,899,3450,cy.po,,cy,,welsh,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/he.po,606,2135,2066,1,2,292,1313,899,3450,he.po,,he,,hebrew,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ro.po,582,2345,2563,6,10,311,1095,899,3450,ro.po,,ro,,romanian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/de.po,752,3147,3013,2,4,145,299,899,3450,de.po,,de,,german,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/el.po,743,3136,3396,3,5,153,309,899,3450,el.po,,el,,greek,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/th.po,557,2262,906,4,6,338,1182,899,3450,th.po,,th,,thai,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ta.po,727,3039,2646,6,9,166,402,899,3450,ta.po,,ta,,tamil,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/vi.po,302,1175,1711,7,13,590,2262,899,3450,vi.po,,vi,,vietnamese,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/or.po,730,3046,3219,6,9,163,395,899,3450,or.po,,or,,odia,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pt_br.po,752,3147,3625,2,4,145,299,899,3450,pt_br.po,,pt,br,portuguese,,brazil

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/as.po,730,3046,3181,6,9,163,395,899,3450,as.po,,as,,assamese,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nn.po,752,3147,2877,2,4,145,299,899,3450,nn.po,,nn,,norwegian nynorsk,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sl.po,727,3039,3027,6,9,166,402,899,3450,sl.po,,sl,,slovenian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ar.po,733,3049,2944,5,8,161,393,899,3450,ar.po,,ar,,arabic,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ko.po,727,3039,2696,6,9,166,402,899,3450,ko.po,,ko,,korean,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ja.po,729,3043,1215,6,9,164,398,899,3450,ja.po,,ja,,japanese,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nds.po,99,135,133,2,2,798,3313,899,3450,nds.po,,nds,,low german,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/tr.po,721,2534,2363,66,161,112,755,899,3450,tr.po,,tr,,turkish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/zh_cn.po,752,3147,1071,2,4,145,299,899,3450,zh_cn.po,,zh,cn,chinese,,china

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bg.po,730,3046,3238,6,9,163,395,899,3450,bg.po,,bg,,bulgarian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/it.po,734,3049,3373,10,82,155,319,899,3450,it.po,,it,,italian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sr.po,744,3137,3101,2,4,153,309,899,3450,sr.po,,sr,,serbian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fa.po,310,707,814,3,3,586,2740,899,3450,fa.po,,fa,,persian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ca.po,752,3147,3780,2,4,145,299,899,3450,ca.po,,ca,,catalan,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sr@latin.po,685,2739,2705,65,159,149,552,899,3450,sr@latin.po,latin,sr,,serbian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ms.po,65,92,91,1,1,833,3357,899,3450,ms.po,,ms,,malay,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/si.po,17,21,24,4,9,878,3420,899,3450,si.po,,si,,sinhala,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/br.po,667,2662,3310,4,6,228,782,899,3450,br.po,,br,,breton,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/lt.po,616,2463,2233,1,2,282,985,899,3450,lt.po,,lt,,lithuanian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nb.po,705,2499,2441,6,9,188,942,899,3450,nb.po,,nb,,norwegian bokmål,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fr.po,888,3435,4080,4,8,7,7,899,3450,fr.po,,fr,,french,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/is.po,146,429,408,3,7,750,3014,899,3450,is.po,,is,,icelandic,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/da.po,752,3147,2893,2,4,145,299,899,3450,da.po,,da,,danish,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hr.po,212,782,737,2,3,685,2665,899,3450,hr.po,,hr,,croatian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bn_in.po,727,3039,3388,6,9,166,402,899,3450,bn_in.po,,bn,in,bangla,,india

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/kn.po,729,3043,2758,6,9,164,398,899,3450,kn.po,,kn,,kannada,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/mai.po,48,110,119,1,1,850,3339,899,3450,mai.po,,mai,,maithili,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/te.po,730,3046,2621,6,9,163,395,899,3450,te.po,,te,,telugu,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/en_gb.po,729,3043,3046,6,9,164,398,899,3450,en_gb.po,,en,gb,english,,united kingdom

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ml.po,730,3046,2604,6,9,163,395,899,3450,ml.po,,ml,,malayalam,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/zh_tw.po,752,3147,1117,2,4,145,299,899,3450,zh_tw.po,,zh,tw,chinese,,taiwan

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/id.po,752,3147,3015,2,4,145,299,899,3450,id.po,,id,,indonesian,,

- system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hu.po,752,3147,2855,2,4,145,299,899,3450,hu.po,,hu,,hungarian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/zh_tw.po,113,968,154,0,0,0,0,113,968,zh_tw.po,,zh,tw,chinese,,taiwan

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/zh_cn.po,112,950,135,1,18,0,0,113,968,zh_cn.po,,zh,cn,chinese,,china

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/uk.po,125,1065,858,0,0,0,0,125,1065,uk.po,,uk,,ukrainian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/tr.po,133,1131,1022,0,0,0,0,133,1131,tr.po,,tr,,turkish,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sv.po,121,1041,1020,0,0,0,0,121,1041,sv.po,,sv,,swedish,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sr.po,127,1090,1250,0,0,0,0,127,1090,sr.po,,sr,,serbian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sk.po,46,371,353,0,0,69,614,115,985,sk.po,,sk,,slovak,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ru.po,133,1124,1144,0,0,0,0,133,1124,ru.po,,ru,,russian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ro.po,115,985,1054,0,0,0,0,115,985,ro.po,,ro,,romanian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/pt_br.po,133,1124,1209,0,0,0,0,133,1124,pt_br.po,,pt,br,portuguese,,brazil

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/pl.po,133,1131,996,0,0,0,0,133,1131,pl.po,,pl,,polish,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/lt.po,133,1131,1008,0,0,0,0,133,1131,lt.po,,lt,,lithuanian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ko.po,113,968,792,0,0,0,0,113,968,ko.po,,ko,,korean,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ja.po,133,1131,133,0,0,0,0,133,1131,ja.po,,ja,,japanese,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/it.po,133,1131,1157,0,0,0,0,133,1131,it.po,,it,,italian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/id.po,125,1065,953,0,0,0,0,125,1065,id.po,,id,,indonesian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/hu.po,115,985,786,0,0,0,0,115,985,hu.po,,hu,,hungarian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/hr.po,113,968,851,0,0,0,0,113,968,hr.po,,hr,,croatian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/gl.po,113,968,1032,0,0,0,0,113,968,gl.po,,gl,,galician,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/fr.po,133,1131,1256,0,0,0,0,133,1131,fr.po,,fr,,french,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/es.po,113,968,1123,0,0,0,0,113,968,es.po,,es,,spanish,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/el.po,68,603,650,30,272,15,93,113,968,el.po,,el,,greek,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/de.po,113,968,972,0,0,0,0,113,968,de.po,,de,,german,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/da.po,113,968,990,0,0,0,0,113,968,da.po,,da,,danish,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/cs.po,133,1131,1014,0,0,0,0,133,1131,cs.po,,cs,,czech,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ca.po,125,1065,1285,0,0,0,0,125,1065,ca.po,,ca,,catalan,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/bg.po,115,985,1112,0,0,0,0,115,985,bg.po,,bg,,bulgarian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/be@latin.po,115,985,787,0,0,0,0,115,985,be@latin.po,latin,be,,belarusian,,

- systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/be.po,115,985,787,0,0,0,0,115,985,be.po,,be,,belarusian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/da.po,589,3626,3546,1,19,3,11,593,3656,da.po,,da,,danish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/pt.po,589,3626,4003,1,19,3,11,593,3656,pt.po,,pt,,portuguese,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ja.po,589,3626,1645,1,19,3,11,593,3656,ja.po,,ja,,japanese,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/nl.po,589,3626,3790,1,19,3,11,593,3656,nl.po,,nl,,dutch,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ga.po,589,3626,4541,1,19,3,11,593,3656,ga.po,,ga,,irish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/fr.po,572,3484,4471,12,111,9,61,593,3656,fr.po,,fr,,french,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/et.po,572,3484,3053,12,111,9,61,593,3656,et.po,,et,,estonian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/pt_br.po,589,3626,4217,1,19,3,11,593,3656,pt_br.po,,pt,br,portuguese,,brazil

- tar-1.32-1.fc30.src.rpm.stats.csv,po/sl.po,557,3392,3664,18,133,18,131,593,3656,sl.po,,sl,,slovenian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ca.po,589,3626,4589,1,19,3,11,593,3656,ca.po,,ca,,catalan,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ko.po,572,3484,3106,12,111,9,61,593,3656,ko.po,,ko,,korean,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/fi.po,522,3079,2643,32,238,39,339,593,3656,fi.po,,fi,,finnish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/hu.po,589,3626,3746,1,19,3,11,593,3656,hu.po,,hu,,hungarian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/el.po,116,557,676,111,792,366,2307,593,3656,el.po,,el,,greek,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/eu.po,343,1774,1731,94,654,156,1228,593,3656,eu.po,,eu,,basque,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/uk.po,589,3626,3822,1,19,3,11,593,3656,uk.po,,uk,,ukrainian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/cs.po,589,3626,3716,1,19,3,11,593,3656,cs.po,,cs,,czech,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ro.po,248,1279,1387,151,1090,194,1287,593,3656,ro.po,,ro,,romanian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/sv.po,589,3626,3555,1,19,3,11,593,3656,sv.po,,sv,,swedish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ky.po,412,2400,2275,91,650,90,606,593,3656,ky.po,,ky,,kyrgyz,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/de.po,589,3626,3589,1,19,3,11,593,3656,de.po,,de,,german,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/bg.po,589,3626,4451,1,19,3,11,593,3656,bg.po,,bg,,bulgarian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ru.po,589,3626,3646,1,19,3,11,593,3656,ru.po,,ru,,russian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/it.po,589,3626,4169,1,19,3,11,593,3656,it.po,,it,,italian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/ms.po,112,545,547,110,742,371,2369,593,3656,ms.po,,ms,,malay,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/vi.po,589,3626,5437,1,19,3,11,593,3656,vi.po,,vi,,vietnamese,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/zh_tw.po,589,3626,1365,1,19,3,11,593,3656,zh_tw.po,,zh,tw,chinese,,taiwan

- tar-1.32-1.fc30.src.rpm.stats.csv,po/nb.po,589,3626,3612,1,19,3,11,593,3656,nb.po,,nb,,norwegian bokmål,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/eo.po,589,3626,3594,1,19,3,11,593,3656,eo.po,,eo,,esperanto,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/sk.po,117,567,620,111,792,365,2297,593,3656,sk.po,,sk,,slovak,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/id.po,557,3392,3502,18,133,18,131,593,3656,id.po,,id,,indonesian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/gl.po,117,567,723,122,855,354,2234,593,3656,gl.po,,gl,,galician,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/pl.po,589,3626,3802,1,19,3,11,593,3656,pl.po,,pl,,polish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/sr.po,572,3484,3633,12,111,9,61,593,3656,sr.po,,sr,,serbian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/hr.po,589,3626,3840,1,19,3,11,593,3656,hr.po,,hr,,croatian,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/es.po,589,3626,4645,1,19,3,11,593,3656,es.po,,es,,spanish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/tr.po,572,3484,3126,12,111,9,61,593,3656,tr.po,,tr,,turkish,,

- tar-1.32-1.fc30.src.rpm.stats.csv,po/zh_cn.po,589,3626,1334,1,19,3,11,593,3656,zh_cn.po,,zh,cn,chinese,,china

- texlive-base-20180414-35.fc30.src.rpm.stats.csv,texmf-dist/doc/support/latex-git-log/po/de.po,3,3,3,0,0,0,0,3,3,de.po,,de,,german,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/zh_cn.po,141,616,269,0,0,0,0,141,616,zh_cn.po,,zh,cn,chinese,,china

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/vi.po,157,697,1022,0,0,0,0,157,697,vi.po,,vi,,vietnamese,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/uk.po,157,697,745,0,0,0,0,157,697,uk.po,,uk,,ukrainian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/tr.po,141,616,563,0,0,0,0,141,616,tr.po,,tr,,turkish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sv.po,157,697,635,0,0,0,0,157,697,sv.po,,sv,,swedish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sr.po,141,616,644,0,0,0,0,141,616,sr.po,,sr,,serbian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sk.po,33,82,90,13,62,109,656,155,800,sk.po,,sk,,slovak,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/ru.po,157,697,681,0,0,0,0,157,697,ru.po,,ru,,russian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/pt_br.po,157,697,827,0,0,0,0,157,697,pt_br.po,,pt,br,portuguese,,brazil

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/pl.po,33,82,88,13,62,109,656,155,800,pl.po,,pl,,polish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/nl.po,141,616,608,0,0,0,0,141,616,nl.po,,nl,,dutch,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/it.po,70,210,238,14,62,71,528,155,800,it.po,,it,,italian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/id.po,141,616,639,0,0,0,0,141,616,id.po,,id,,indonesian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/hu.po,141,616,628,0,0,0,0,141,616,hu.po,,hu,,hungarian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fur.po,139,583,712,0,0,14,88,153,671,fur.po,,fur,,friulian,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fr.po,142,624,765,0,0,0,0,142,624,fr.po,,fr,,french,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fi.po,154,675,524,0,0,0,0,154,675,fi.po,,fi,,finnish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/es.po,141,616,703,0,0,0,0,141,616,es.po,,es,,spanish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/eo.po,141,616,648,0,0,0,0,141,616,eo.po,,eo,,esperanto,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/el.po,145,684,733,8,55,7,83,160,822,el.po,,el,,greek,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/de.po,153,671,654,0,0,0,0,153,671,de.po,,de,,german,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/da.po,142,624,583,0,0,0,0,142,624,da.po,,da,,danish,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/cs.po,157,697,702,0,0,0,0,157,697,cs.po,,cs,,czech,,

- tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/bg.po,141,616,738,0,0,0,0,141,616,bg.po,,bg,,bulgarian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,156,1952,412,1,38,33,604,190,2594,zh_tw.po,,zh,tw,chinese,,taiwan

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,156,1952,412,1,38,33,604,190,2594,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,265,4552,642,0,0,0,0,265,4552,zh_cn.po,,zh,cn,chinese,,china

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,265,4552,3870,0,0,0,0,265,4552,uk.po,,uk,,ukrainian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,20,38,39,0,0,245,4514,265,4552,te.po,,te,,telugu,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,157,1830,1696,0,0,0,0,157,1830,sv.po,,sv,,swedish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,9,26,26,0,0,256,4526,265,4552,sl.po,,sl,,slovenian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,265,4552,3628,0,0,0,0,265,4552,ru.po,,ru,,russian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,252,4680,4745,0,0,0,0,252,4680,ro.po,,ro,,romanian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,252,4680,5191,0,0,0,0,252,4680,pt_br.po,,pt,br,portuguese,,brazil

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,159,1850,1573,0,0,0,0,159,1850,pl.po,,pl,,polish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pa/pa.po,112,909,925,0,0,80,1468,192,2377,pa.po,,pa,,punjabi,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,47,122,142,0,0,143,2472,190,2594,oc.po,,oc,,occitan,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/nb/nb.po,193,3238,2513,44,1388,15,54,252,4680,nb.po,,nb,,norwegian bokmål,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,123,1153,464,68,1654,74,1745,265,4552,ja.po,,ja,,japanese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,235,3534,3430,30,1013,0,0,265,4547,it.po,,it,,italian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,252,4680,4206,0,0,0,0,252,4680,id.po,,id,,indonesian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,159,1850,1622,0,0,0,0,159,1850,hu.po,,hu,,hungarian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,183,2843,2470,0,0,69,1817,252,4660,hr.po,,hr,,croatian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,252,4680,5068,0,0,0,0,252,4680,gl.po,,gl,,galician,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,252,4680,5147,0,0,0,0,252,4680,fr.po,,fr,,french,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,202,3420,2117,38,1212,12,48,252,4680,fi.po,,fi,,finnish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,190,2594,1955,0,0,0,0,190,2594,eu.po,,eu,,basque,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,54,128,173,5,37,100,1685,159,1850,es.po,,es,,spanish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,263,4493,4500,0,0,0,0,263,4493,en_gb.po,,en,gb,english,,united kingdom

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,252,4660,5021,0,0,0,0,252,4660,el.po,,el,,greek,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,155,1802,1835,1,16,2,8,158,1826,de.po,,de,,german,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,252,4660,4003,0,0,0,0,252,4660,da.po,,da,,danish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,252,4680,3981,0,0,0,0,252,4680,cs.po,,cs,,czech,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,252,4659,5400,0,0,0,0,252,4659,ca.po,,ca,,catalan,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,0,0,0,0,0,265,4552,265,4552,bg.po,,bg,,bulgarian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,522,2066,1754,10,71,46,392,578,2529,zu.po,,zu,,zulu,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,390,1374,524,0,0,0,0,390,1374,zh_tw.po,,zh,tw,chinese,,taiwan

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,347,1241,466,5,64,0,0,352,1305,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,389,1327,514,0,0,0,0,389,1327,zh_cn.po,,zh,cn,chinese,,china

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,336,1466,1292,10,45,4,21,350,1532,xh.po,,xh,,xhosa,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,142,341,422,0,0,211,1211,353,1552,wa.po,,wa,,walloon,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,388,1383,1836,0,0,0,0,388,1383,vi.po,,vi,,vietnamese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,396,1398,1242,0,0,0,0,396,1398,uk.po,,uk,,ukrainian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,521,2040,1792,0,0,0,0,521,2040,ug.po,,ug,,uyghur,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,391,1403,1172,0,0,0,0,391,1403,tr.po,,tr,,turkish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,352,1305,514,0,0,0,0,352,1305,th.po,,th,,thai,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,302,716,731,0,0,50,589,352,1305,tg.po,,tg,,tajik,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,384,1446,1222,0,0,0,0,384,1446,te.po,,te,,telugu,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,384,1446,1258,0,0,0,0,384,1446,ta.po,,ta,,tamil,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,388,1383,1274,0,0,0,0,388,1383,sv.po,,sv,,swedish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,396,1398,1450,0,0,0,0,396,1398,sr@latin.po,latin,sr,,serbian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,388,1383,1431,0,0,0,0,388,1383,sr.po,,sr,,serbian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,501,2361,2581,0,0,0,0,501,2361,sq.po,,sq,,albanian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,388,1383,1387,0,0,0,0,388,1383,sl.po,,sl,,slovenian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,391,1335,1352,0,0,0,0,391,1335,sk.po,,sk,,slovak,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,323,1160,1172,0,0,55,678,378,1838,si.po,,si,,sinhala,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,28,33,35,246,1355,76,144,350,1532,rw.po,,rw,,kinyarwanda,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,391,1403,1281,0,0,0,0,391,1403,ru.po,,ru,,russian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,391,1403,1486,0,0,0,0,391,1403,ro.po,,ro,,romanian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,391,1403,1561,0,0,0,0,391,1403,pt_br.po,,pt,br,portuguese,,brazil

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,392,1390,1531,0,0,0,0,392,1390,pt.po,,pt,,portuguese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,391,1403,1342,0,0,0,0,391,1403,pl.po,,pl,,polish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,384,1449,1562,0,0,0,0,384,1449,pa.po,,pa,,punjabi,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,522,2043,2124,0,0,0,0,522,2043,or.po,,or,,odia,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,372,1243,1427,0,0,10,130,382,1373,oc.po,,oc,,occitan,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,579,2537,2390,0,0,2,22,581,2559,nn.po,,nn,,norwegian nynorsk,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,391,1403,1332,0,0,0,0,391,1403,nl.po,,nl,,dutch,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,300,706,697,54,303,35,318,389,1327,ne.po,,ne,,nepali,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,391,1335,1307,0,0,0,0,391,1335,nb.po,,nb,,norwegian bokmål,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,189,434,361,29,80,365,2053,583,2567,my.po,,my,,burmese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,226,685,619,141,430,225,1496,592,2611,ms.po,,ms,,malay,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,384,1446,1342,0,0,0,0,384,1446,mr.po,,mr,,marathi,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,391,1335,1092,0,0,0,0,391,1335,ml.po,,ml,,malayalam,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,561,2453,2562,0,0,0,0,561,2453,mk.po,,mk,,macedonian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,378,1764,1840,1,2,0,0,379,1766,mg.po,,mg,,malagasy,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,379,1486,1553,0,0,221,1328,600,2814,mai.po,,mai,,maithili,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,388,1383,1215,0,0,0,0,388,1383,lv.po,,lv,,latvian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,388,1383,1214,0,0,0,0,388,1383,lt.po,,lt,,lithuanian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,186,291,287,0,0,337,1759,523,2050,ky.po,,ky,,kyrgyz,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,122,259,268,0,0,239,1426,361,1685,ku.po,,ku,,kurdish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,388,1383,1118,0,0,0,0,388,1383,ko.po,,ko,,korean,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,384,1446,1268,0,0,0,0,384,1446,kn.po,,kn,,kannada,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,523,2050,929,0,0,0,0,523,2050,km.po,,km,,khmer,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,364,1145,969,0,0,26,229,390,1374,kk.po,,kk,,kazakh,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,417,1821,1421,0,0,0,0,417,1821,ka.po,,ka,,georgian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,377,1327,485,0,0,14,76,391,1403,ja.po,,ja,,japanese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,396,1398,1475,0,0,0,0,396,1398,it.po,,it,,italian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,391,1335,1313,0,0,0,0,391,1335,is.po,,is,,icelandic,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,391,1403,1276,0,0,0,0,391,1403,id.po,,id,,indonesian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,391,1403,1200,0,0,0,0,391,1403,hu.po,,hu,,hungarian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,389,1327,1275,0,0,0,0,389,1327,hr.po,,hr,,croatian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,384,1446,1652,0,0,0,0,384,1446,hi.po,,hi,,hindi,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,392,1390,1321,0,0,0,0,392,1390,he.po,,he,,hebrew,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gv.po,530,2169,2630,0,0,57,416,587,2585,gv.po,,gv,,manx,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,391,1389,1486,0,0,0,0,391,1389,gu.po,,gu,,gujarati,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,388,1383,1574,0,0,0,0,388,1383,gl.po,,gl,,galician,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,389,1327,1800,0,0,0,0,389,1327,gd.po,,gd,,scottish gaelic,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,303,698,769,13,69,121,938,437,1705,ga.po,,ga,,irish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,388,1383,1533,0,0,0,0,388,1383,fur.po,,fur,,friulian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,391,1403,1637,0,0,0,0,391,1403,fr.po,,fr,,french,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,391,1403,1077,0,0,0,0,391,1403,fi.po,,fi,,finnish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,389,1327,1416,0,0,0,0,389,1327,fa.po,,fa,,persian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,391,1403,1225,0,0,0,0,391,1403,eu.po,,eu,,basque,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,389,1327,1091,0,0,0,0,389,1327,et.po,,et,,estonian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,391,1403,1590,0,0,0,0,391,1403,es.po,,es,,spanish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,389,1327,1183,0,0,0,0,389,1327,eo.po,,eo,,esperanto,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,389,1327,1324,0,0,0,0,389,1327,en_gb.po,,en,gb,english,,united kingdom

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,561,2453,2456,0,0,0,0,561,2453,en_ca.po,,en,ca,english,,canada

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,456,1699,1699,131,891,0,0,587,2590,en@shaw.po,shaw,en,,english,shavian,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,390,1374,1432,0,0,0,0,390,1374,el.po,,el,,greek,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,425,1929,882,0,0,0,0,425,1929,dz.po,,dz,,dzongkha,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,388,1383,1302,0,0,0,0,388,1383,de.po,,de,,german,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,388,1383,1252,0,0,0,0,388,1383,da.po,,da,,danish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,300,1388,1457,82,287,96,605,478,2280,cy.po,,cy,,welsh,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,388,1383,1334,0,0,0,0,388,1383,cs.po,,cs,,czech,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,520,2035,1755,0,0,0,0,520,2035,crh.po,,crh,,crimean turkish,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,389,1327,1580,0,0,0,0,389,1327,ca@valencia.po,valencia,ca,,catalan,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,388,1364,1618,0,0,2,8,390,1372,ca.po,,ca,,catalan,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,385,1449,1405,0,0,0,0,385,1449,bs.po,,bs,,bosnian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,353,924,1062,13,63,237,1712,603,2699,br.po,,br,,breton,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,384,1446,1515,0,0,0,0,384,1446,bn_in.po,,bn,in,bangla,,india

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,592,2611,2766,0,0,0,0,592,2611,bn.po,,bn,,bangla,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,389,1327,1445,0,0,0,0,389,1327,bg.po,,bg,,bulgarian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,596,2707,2363,3,35,1,72,600,2814,be@latin.po,latin,be,,belarusian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,391,1335,1247,0,0,0,0,391,1335,be.po,,be,,belarusian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,345,1417,1215,0,0,0,0,345,1417,az.po,,az,,azerbaijani,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,560,2420,2717,0,0,1,21,561,2441,ast.po,,ast,,asturian,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,384,1446,1463,0,0,0,0,384,1446,as.po,,as,,assamese,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,501,1962,1912,0,0,0,0,501,1962,ar.po,,ar,,arabic,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,56,95,121,13,21,148,754,217,870,am.po,,am,,amharic,,

- totem-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,396,1350,1362,0,0,2,57,398,1407,af.po,,af,,afrikaans,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,8,29,11,0,0,0,0,8,29,zh_tw.po,,zh,tw,chinese,,taiwan

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_hk.po,8,29,11,0,0,0,0,8,29,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,8,29,12,0,0,0,0,8,29,zh_cn.po,,zh,cn,chinese,,china

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/xh.po,336,1466,1292,10,45,4,21,350,1532,xh.po,,xh,,xhosa,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/wa.po,142,341,422,0,0,211,1211,353,1552,wa.po,,wa,,walloon,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/vi.po,7,28,35,0,0,0,0,7,28,vi.po,,vi,,vietnamese,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,8,29,22,0,0,0,0,8,29,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/uk.po,8,29,23,0,0,0,0,8,29,uk.po,,uk,,ukrainian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ug.po,7,28,21,0,0,0,0,7,28,ug.po,,ug,,uyghur,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/tr.po,8,29,23,0,0,0,0,8,29,tr.po,,tr,,turkish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/th.po,7,28,10,0,0,0,0,7,28,th.po,,th,,thai,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/tg.po,8,29,27,0,0,0,0,8,29,tg.po,,tg,,tajik,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/te.po,7,28,23,0,0,0,0,7,28,te.po,,te,,telugu,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ta.po,7,28,23,0,0,0,0,7,28,ta.po,,ta,,tamil,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sv.po,8,29,23,0,0,0,0,8,29,sv.po,,sv,,swedish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sr@latin.po,8,29,28,0,0,0,0,8,29,sr@latin.po,latin,sr,,serbian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sr.po,8,29,28,0,0,0,0,8,29,sr.po,,sr,,serbian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sq.po,8,35,32,0,0,0,0,8,35,sq.po,,sq,,albanian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sl.po,8,29,25,0,0,0,0,8,29,sl.po,,sl,,slovenian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sk.po,8,29,25,0,0,0,0,8,29,sk.po,,sk,,slovak,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/si.po,323,1160,1172,0,0,55,678,378,1838,si.po,,si,,sinhala,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/rw.po,28,33,35,246,1355,76,144,350,1532,rw.po,,rw,,kinyarwanda,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ru.po,8,29,24,0,0,0,0,8,29,ru.po,,ru,,russian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ro.po,8,29,29,0,0,0,0,8,29,ro.po,,ro,,romanian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,8,29,32,0,0,0,0,8,29,pt_br.po,,pt,br,portuguese,,brazil

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pt.po,8,29,30,0,0,0,0,8,29,pt.po,,pt,,portuguese,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ps.po,7,28,40,0,0,0,0,7,28,ps.po,,ps,,pashto,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pl.po,8,29,27,0,0,0,0,8,29,pl.po,,pl,,polish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pa.po,8,29,33,0,0,0,0,8,29,pa.po,,pa,,punjabi,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/or.po,7,28,30,0,0,0,0,7,28,or.po,,or,,odia,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/oc.po,8,29,32,0,0,0,0,8,29,oc.po,,oc,,occitan,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nn.po,7,28,24,0,0,0,0,7,28,nn.po,,nn,,norwegian nynorsk,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nl.po,8,29,28,0,0,0,0,8,29,nl.po,,nl,,dutch,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ne.po,8,29,30,0,0,0,0,8,29,ne.po,,ne,,nepali,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nds.po,7,28,30,0,0,0,0,7,28,nds.po,,nds,,low german,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nb.po,8,29,27,0,0,0,0,8,29,nb.po,,nb,,norwegian bokmål,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ms.po,8,29,24,0,0,0,0,8,29,ms.po,,ms,,malay,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mr.po,7,28,27,0,0,0,0,7,28,mr.po,,mr,,marathi,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mn.po,7,28,25,0,0,0,0,7,28,mn.po,,mn,,mongolian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ml.po,8,29,24,0,0,0,0,8,29,ml.po,,ml,,malayalam,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mk.po,8,35,33,0,0,0,0,8,35,mk.po,,mk,,macedonian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mg.po,378,1764,1840,1,2,0,0,379,1766,mg.po,,mg,,malagasy,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mai.po,5,17,13,0,0,2,11,7,28,mai.po,,mai,,maithili,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/lv.po,8,29,22,0,0,0,0,8,29,lv.po,,lv,,latvian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/lt.po,8,29,21,0,0,0,0,8,29,lt.po,,lt,,lithuanian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ku.po,122,259,268,0,0,239,1426,361,1685,ku.po,,ku,,kurdish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ko.po,8,29,23,0,0,0,0,8,29,ko.po,,ko,,korean,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/kn.po,8,29,25,0,0,0,0,8,29,kn.po,,kn,,kannada,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/km.po,7,28,14,0,0,0,0,7,28,km.po,,km,,khmer,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/kk.po,8,29,23,0,0,0,0,8,29,kk.po,,kk,,kazakh,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ka.po,417,1821,1421,0,0,0,0,417,1821,ka.po,,ka,,georgian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ja.po,8,29,13,0,0,0,0,8,29,ja.po,,ja,,japanese,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/it.po,8,29,27,0,0,0,0,8,29,it.po,,it,,italian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/is.po,8,29,29,0,0,0,0,8,29,is.po,,is,,icelandic,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/id.po,8,29,26,0,0,0,0,8,29,id.po,,id,,indonesian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hu.po,8,29,25,0,0,0,0,8,29,hu.po,,hu,,hungarian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hr.po,8,29,23,0,0,0,0,8,29,hr.po,,hr,,croatian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hi.po,7,28,27,0,0,0,0,7,28,hi.po,,hi,,hindi,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/he.po,8,29,22,0,0,0,0,8,29,he.po,,he,,hebrew,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gu.po,7,28,26,0,0,0,0,7,28,gu.po,,gu,,gujarati,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gl.po,8,29,32,0,0,0,0,8,29,gl.po,,gl,,galician,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gd.po,8,29,30,0,0,0,0,8,29,gd.po,,gd,,scottish gaelic,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ga.po,7,28,29,0,0,0,0,7,28,ga.po,,ga,,irish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fur.po,8,29,28,0,0,0,0,8,29,fur.po,,fur,,friulian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fr.po,8,29,30,0,0,0,0,8,29,fr.po,,fr,,french,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fi.po,8,29,21,0,0,0,0,8,29,fi.po,,fi,,finnish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fa.po,8,29,28,0,0,0,0,8,29,fa.po,,fa,,persian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/eu.po,8,29,22,0,0,0,0,8,29,eu.po,,eu,,basque,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/et.po,8,29,20,0,0,0,0,8,29,et.po,,et,,estonian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/es.po,8,29,34,0,0,0,0,8,29,es.po,,es,,spanish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/eo.po,8,29,25,0,0,0,0,8,29,eo.po,,eo,,esperanto,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en_gb.po,8,29,29,0,0,0,0,8,29,en_gb.po,,en,gb,english,,united kingdom

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en_ca.po,372,1795,1810,0,0,0,0,372,1795,en_ca.po,,en,ca,english,,canada

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en@shaw.po,7,28,28,0,0,0,0,7,28,en@shaw.po,shaw,en,,english,shavian,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/el.po,8,29,26,0,0,0,0,8,29,el.po,,el,,greek,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/dz.po,425,1929,882,0,0,0,0,425,1929,dz.po,,dz,,dzongkha,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/de.po,8,29,27,0,0,0,0,8,29,de.po,,de,,german,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/da.po,8,29,26,0,0,0,0,8,29,da.po,,da,,danish,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/cy.po,7,28,33,0,0,0,0,7,28,cy.po,,cy,,welsh,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/cs.po,8,29,25,0,0,0,0,8,29,cs.po,,cs,,czech,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,8,29,34,0,0,0,0,8,29,ca@valencia.po,valencia,ca,,catalan,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ca.po,8,29,34,0,0,0,0,8,29,ca.po,,ca,,catalan,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bs.po,8,29,27,0,0,0,0,8,29,bs.po,,bs,,bosnian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/br.po,7,28,23,0,0,0,0,7,28,br.po,,br,,breton,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bn_in.po,7,28,28,0,0,0,0,7,28,bn_in.po,,bn,in,bangla,,india

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bn.po,7,28,28,0,0,0,0,7,28,bn.po,,bn,,bangla,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bg.po,8,29,24,0,0,0,0,8,29,bg.po,,bg,,bulgarian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/be@latin.po,7,28,21,0,0,0,0,7,28,be@latin.po,latin,be,,belarusian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/be.po,8,29,22,0,0,0,0,8,29,be.po,,be,,belarusian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/az.po,345,1417,1215,0,0,0,0,345,1417,az.po,,az,,azerbaijani,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ast.po,7,28,28,0,0,0,0,7,28,ast.po,,ast,,asturian,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/as.po,8,29,28,0,0,0,0,8,29,as.po,,as,,assamese,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ar.po,7,28,22,0,0,0,0,7,28,ar.po,,ar,,arabic,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/an.po,8,29,36,0,0,0,0,8,29,an.po,,an,,aragonese,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/am.po,56,95,121,13,21,148,754,217,870,am.po,,am,,amharic,,

- totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/af.po,8,29,27,0,0,0,0,8,29,af.po,,af,,afrikaans,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,369,2217,661,0,0,0,0,369,2217,zh_tw.po,,zh,tw,chinese,,taiwan

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,594,3613,1005,0,0,0,0,594,3613,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,369,2211,606,0,0,0,0,369,2211,zh_cn.po,,zh,cn,chinese,,china

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/vi.po,532,2903,4287,0,0,68,844,600,3747,vi.po,,vi,,vietnamese,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/uk.po,537,3291,3177,0,0,0,0,537,3291,uk.po,,uk,,ukrainian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/tr.po,369,2217,1860,0,0,0,0,369,2217,tr.po,,tr,,turkish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/th.po,291,1391,601,0,0,0,0,291,1391,th.po,,th,,thai,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/tg.po,74,99,91,0,0,449,2976,523,3075,tg.po,,tg,,tajik,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/te.po,135,291,275,0,0,401,2908,536,3199,te.po,,te,,telugu,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sv.po,369,2217,2096,0,0,0,0,369,2217,sv.po,,sv,,swedish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,370,2229,2280,0,0,0,0,370,2229,sr@latin.po,latin,sr,,serbian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sr.po,369,2217,2285,0,0,0,0,369,2217,sr.po,,sr,,serbian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sl.po,369,2217,2367,0,0,0,0,369,2217,sl.po,,sl,,slovenian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sk.po,369,2211,2236,0,0,0,0,369,2211,sk.po,,sk,,slovak,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ru.po,369,2217,2117,0,0,0,0,369,2217,ru.po,,ru,,russian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ro.po,369,2217,2607,0,0,0,0,369,2217,ro.po,,ro,,romanian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,369,2217,2578,0,0,0,0,369,2217,pt_br.po,,pt,br,portuguese,,brazil

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pt.po,595,3727,4053,0,0,0,0,595,3727,pt.po,,pt,,portuguese,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pl.po,369,2217,2193,0,0,0,0,369,2217,pl.po,,pl,,polish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pa.po,45,86,91,0,0,354,2002,399,2088,pa.po,,pa,,punjabi,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/oc.po,586,3634,4418,1,1,5,67,592,3702,oc.po,,oc,,occitan,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nl.po,369,2217,2193,0,0,0,0,369,2217,nl.po,,nl,,dutch,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ne.po,146,444,405,73,310,151,1475,370,2229,ne.po,,ne,,nepali,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nds.po,165,368,352,0,0,199,1379,364,1747,nds.po,,nds,,low german,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nb.po,284,1299,1257,0,0,85,912,369,2211,nb.po,,nb,,norwegian bokmål,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ml.po,104,283,224,12,72,254,1874,370,2229,ml.po,,ml,,malayalam,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/mk.po,151,666,759,23,87,23,105,197,858,mk.po,,mk,,macedonian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/lv.po,369,2217,1943,0,0,0,0,369,2217,lv.po,,lv,,latvian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/lt.po,369,2217,1875,0,0,0,0,369,2217,lt.po,,lt,,lithuanian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ko.po,369,2217,1809,0,0,0,0,369,2217,ko.po,,ko,,korean,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/kk.po,73,163,133,0,0,296,2054,369,2217,kk.po,,kk,,kazakh,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ja.po,518,3120,960,3,16,0,0,521,3136,ja.po,,ja,,japanese,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/it.po,369,2217,2333,0,0,0,0,369,2217,it.po,,it,,italian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/is.po,84,245,234,0,0,285,1966,369,2211,is.po,,is,,icelandic,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/id.po,369,2217,2180,0,0,0,0,369,2217,id.po,,id,,indonesian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/hu.po,369,2217,2086,0,0,0,0,369,2217,hu.po,,hu,,hungarian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/hr.po,369,2212,2103,0,0,0,0,369,2212,hr.po,,hr,,croatian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/he.po,54,112,111,24,87,449,2948,527,3147,he.po,,he,,hebrew,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/gl.po,369,2217,2617,0,0,0,0,369,2217,gl.po,,gl,,galician,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fur.po,369,2217,2706,0,0,0,0,369,2217,fur.po,,fur,,friulian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fr.po,369,2217,2687,0,0,0,0,369,2217,fr.po,,fr,,french,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fi.po,138,475,404,63,349,169,1405,370,2229,fi.po,,fi,,finnish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/eu.po,370,2229,2092,0,0,0,0,370,2229,eu.po,,eu,,basque,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/et.po,362,1959,1635,17,108,11,59,390,2126,et.po,,et,,estonian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/es.po,369,2217,2657,0,0,0,0,369,2217,es.po,,es,,spanish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/eo.po,118,378,346,3,19,248,1820,369,2217,eo.po,,eo,,esperanto,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,369,2211,2209,0,0,0,0,369,2211,en_gb.po,,en,gb,english,,united kingdom

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/el.po,369,2217,2408,0,0,0,0,369,2217,el.po,,el,,greek,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/dz.po,153,693,288,22,66,22,99,197,858,dz.po,,dz,,dzongkha,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/de.po,369,2217,2370,0,0,0,0,369,2217,de.po,,de,,german,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/da.po,369,2217,2150,0,0,0,0,369,2217,da.po,,da,,danish,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/cs.po,369,2217,2293,0,0,0,0,369,2217,cs.po,,cs,,czech,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,369,2211,2888,0,0,0,0,369,2211,ca@valencia.po,valencia,ca,,catalan,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ca.po,369,2217,2890,0,0,0,0,369,2217,ca.po,,ca,,catalan,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/bs.po,598,3762,3703,0,0,0,0,598,3762,bs.po,,bs,,bosnian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/bg.po,600,3774,4301,0,0,1,30,601,3804,bg.po,,bg,,bulgarian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,291,1388,1277,0,0,0,0,291,1388,be@latin.po,latin,be,,belarusian,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/as.po,150,561,591,0,0,444,3052,594,3613,as.po,,as,,assamese,,

- tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ar.po,172,729,754,60,253,164,1064,396,2046,ar.po,,ar,,arabic,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,112,801,233,0,0,0,0,112,801,zh_tw.po,,zh,tw,chinese,,taiwan

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,594,3613,1005,0,0,0,0,594,3613,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,600,3747,1001,0,0,0,0,600,3747,zh_cn.po,,zh,cn,chinese,,china

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/vi.po,532,2903,4287,0,0,68,844,600,3747,vi.po,,vi,,vietnamese,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/uk.po,537,3291,3177,0,0,0,0,537,3291,uk.po,,uk,,ukrainian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/tr.po,112,801,690,0,0,0,0,112,801,tr.po,,tr,,turkish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/th.po,291,1391,601,0,0,0,0,291,1391,th.po,,th,,thai,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/tg.po,74,99,91,0,0,449,2976,523,3075,tg.po,,tg,,tajik,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/te.po,135,291,275,0,0,401,2908,536,3199,te.po,,te,,telugu,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sv.po,112,801,751,0,0,0,0,112,801,sv.po,,sv,,swedish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,118,827,806,0,0,0,0,118,827,sr@latin.po,latin,sr,,serbian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sr.po,112,801,780,0,0,0,0,112,801,sr.po,,sr,,serbian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sl.po,112,801,768,0,0,0,0,112,801,sl.po,,sl,,slovenian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sk.po,118,828,826,0,0,0,0,118,828,sk.po,,sk,,slovak,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ru.po,112,801,745,0,0,0,0,112,801,ru.po,,ru,,russian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ro.po,112,801,882,0,0,0,0,112,801,ro.po,,ro,,romanian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,112,801,889,0,0,0,0,112,801,pt_br.po,,pt,br,portuguese,,brazil

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pt.po,595,3727,4053,0,0,0,0,595,3727,pt.po,,pt,,portuguese,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pl.po,112,801,799,0,0,0,0,112,801,pl.po,,pl,,polish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pa.po,45,86,91,0,0,354,2002,399,2088,pa.po,,pa,,punjabi,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/oc.po,586,3634,4418,1,1,5,67,592,3702,oc.po,,oc,,occitan,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nl.po,112,801,839,0,0,0,0,112,801,nl.po,,nl,,dutch,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ne.po,77,458,406,13,54,28,315,118,827,ne.po,,ne,,nepali,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nds.po,165,368,352,0,0,199,1379,364,1747,nds.po,,nds,,low german,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nb.po,90,446,424,0,0,28,381,118,827,nb.po,,nb,,norwegian bokmål,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ml.po,128,447,355,1,1,392,2691,521,3139,ml.po,,ml,,malayalam,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/mk.po,151,666,759,23,87,23,105,197,858,mk.po,,mk,,macedonian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/lv.po,112,801,714,0,0,0,0,112,801,lv.po,,lv,,latvian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/lt.po,112,801,667,0,0,0,0,112,801,lt.po,,lt,,lithuanian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ko.po,112,801,604,0,0,0,0,112,801,ko.po,,ko,,korean,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/kk.po,62,83,81,0,0,538,3664,600,3747,kk.po,,kk,,kazakh,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ja.po,518,3120,960,3,16,0,0,521,3136,ja.po,,ja,,japanese,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/it.po,112,801,853,0,0,0,0,112,801,it.po,,it,,italian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/id.po,112,801,739,0,0,0,0,112,801,id.po,,id,,indonesian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/hu.po,112,801,715,0,0,0,0,112,801,hu.po,,hu,,hungarian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/hr.po,118,828,835,0,0,0,0,118,828,hr.po,,hr,,croatian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/he.po,54,112,111,24,87,449,2948,527,3147,he.po,,he,,hebrew,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/gl.po,112,801,922,0,0,0,0,112,801,gl.po,,gl,,galician,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fur.po,112,801,980,0,0,0,0,112,801,fur.po,,fur,,friulian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fr.po,112,801,962,0,0,0,0,112,801,fr.po,,fr,,french,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fi.po,261,1014,837,96,512,245,2238,602,3764,fi.po,,fi,,finnish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/eu.po,118,827,724,0,0,0,0,118,827,eu.po,,eu,,basque,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/et.po,362,1959,1635,17,108,11,59,390,2126,et.po,,et,,estonian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/es.po,112,801,940,0,0,0,0,112,801,es.po,,es,,spanish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/eo.po,23,59,56,0,0,89,742,112,801,eo.po,,eo,,esperanto,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,118,827,828,0,0,0,0,118,827,en_gb.po,,en,gb,english,,united kingdom

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/el.po,118,828,885,0,0,0,0,118,828,el.po,,el,,greek,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/dz.po,153,693,288,22,66,22,99,197,858,dz.po,,dz,,dzongkha,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/de.po,112,801,784,0,0,0,0,112,801,de.po,,de,,german,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/da.po,112,801,806,0,0,0,0,112,801,da.po,,da,,danish,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/cs.po,112,801,835,0,0,0,0,112,801,cs.po,,cs,,czech,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,118,827,997,0,0,0,0,118,827,ca@valencia.po,valencia,ca,,catalan,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ca.po,118,827,998,0,0,0,0,118,827,ca.po,,ca,,catalan,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/bs.po,598,3762,3703,0,0,0,0,598,3762,bs.po,,bs,,bosnian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/bg.po,600,3774,4301,0,0,1,30,601,3804,bg.po,,bg,,bulgarian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,291,1388,1277,0,0,0,0,291,1388,be@latin.po,latin,be,,belarusian,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/as.po,150,561,591,0,0,444,3052,594,3613,as.po,,as,,assamese,,

- tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ar.po,172,729,754,60,253,164,1064,396,2046,ar.po,,ar,,arabic,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,396,1499,798,23,176,95,505,514,2180,zh_tw.po,,zh,tw,chinese,,taiwan

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,478,1929,478,1929,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,482,1973,930,0,0,32,207,514,2180,zh_cn.po,,zh,cn,chinese,,china

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,478,1929,478,1929,wa.po,,wa,,walloon,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,478,1929,478,1929,vi.po,,vi,,vietnamese,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/uk.po,495,2015,2251,0,0,19,165,514,2180,uk.po,,uk,,ukrainian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/tr.po,495,2015,2003,0,0,19,165,514,2180,tr.po,,tr,,turkish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,478,1929,478,1929,th.po,,th,,thai,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,478,1929,478,1929,te.po,,te,,telugu,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,478,1929,478,1929,ta.po,,ta,,tamil,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sv.po,495,2015,1945,0,0,19,165,514,2180,sv.po,,sv,,swedish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,478,1929,478,1929,sr@latin.po,latin,sr,,serbian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sr.po,406,1498,1572,28,207,80,475,514,2180,sr.po,,sr,,serbian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,478,1929,478,1929,sq.po,,sq,,albanian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sl.po,406,1498,1491,28,207,80,475,514,2180,sl.po,,sl,,slovenian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sk.po,495,2015,1889,0,0,19,165,514,2180,sk.po,,sk,,slovak,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ru.po,406,1498,1522,28,207,80,475,514,2180,ru.po,,ru,,russian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,478,1929,478,1929,ro.po,,ro,,romanian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,472,1905,2086,0,0,42,275,514,2180,pt_br.po,,pt,br,portuguese,,brazil

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,478,1929,478,1929,pt.po,,pt,,portuguese,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pl.po,495,2015,2143,0,0,19,165,514,2180,pl.po,,pl,,polish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pa.po,214,480,542,27,205,273,1495,514,2180,pa.po,,pa,,punjabi,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,478,1929,478,1929,or.po,,or,,odia,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/oc.po,0,0,0,0,0,478,1929,478,1929,oc.po,,oc,,occitan,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,478,1929,478,1929,nn.po,,nn,,norwegian nynorsk,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nl.po,495,2015,2171,0,0,19,165,514,2180,nl.po,,nl,,dutch,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,478,1929,478,1929,nb.po,,nb,,norwegian bokmål,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,478,1929,478,1929,ms.po,,ms,,malay,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,478,1929,478,1929,mr.po,,mr,,marathi,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,478,1929,478,1929,ml.po,,ml,,malayalam,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/lv.po,281,847,783,27,205,206,1128,514,2180,lv.po,,lv,,latvian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/lt.po,495,2015,1929,0,0,19,165,514,2180,lt.po,,lt,,lithuanian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ko.po,406,1517,1294,28,207,80,456,514,2180,ko.po,,ko,,korean,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,478,1929,478,1929,kn.po,,kn,,kannada,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/kk.po,472,1905,1687,0,0,42,275,514,2180,kk.po,,kk,,kazakh,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,478,1929,478,1929,ka.po,,ka,,georgian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ja.po,395,1459,728,28,207,91,514,514,2180,ja.po,,ja,,japanese,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/it.po,495,2015,2153,0,0,19,165,514,2180,it.po,,it,,italian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/id.po,495,2015,1920,0,0,19,165,514,2180,id.po,,id,,indonesian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ia.po,105,482,571,27,205,382,1493,514,2180,ia.po,,ia,,interlingua,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hu.po,495,2015,1664,0,0,19,165,514,2180,hu.po,,hu,,hungarian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hr.po,340,1202,1179,27,205,147,773,514,2180,hr.po,,hr,,croatian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,478,1929,478,1929,hi.po,,hi,,hindi,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,478,1929,478,1929,he.po,,he,,hebrew,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,478,1929,478,1929,gu.po,,gu,,gujarati,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/gl.po,406,1498,1638,28,207,80,475,514,2180,gl.po,,gl,,galician,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,478,1929,478,1929,ga.po,,ga,,irish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fur.po,90,594,756,0,0,424,1586,514,2180,fur.po,,fur,,friulian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fr.po,495,2015,2438,0,0,19,165,514,2180,fr.po,,fr,,french,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,478,1929,478,1929,fo.po,,fo,,faroese,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fi.po,315,1040,830,27,205,172,935,514,2180,fi.po,,fi,,finnish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,478,1929,478,1929,fa.po,,fa,,persian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/eu.po,219,439,432,26,203,269,1538,514,2180,eu.po,,eu,,basque,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,478,1929,478,1929,et.po,,et,,estonian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/es.po,495,2015,2310,0,0,19,165,514,2180,es.po,,es,,spanish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,478,1929,478,1929,eo.po,,eo,,esperanto,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,437,1674,1674,29,209,48,297,514,2180,en_gb.po,,en,gb,english,,united kingdom

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/el.po,407,1506,1445,28,207,79,467,514,2180,el.po,,el,,greek,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/de.po,472,1905,1883,0,0,42,275,514,2180,de.po,,de,,german,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/da.po,495,2015,1987,0,0,19,165,514,2180,da.po,,da,,danish,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,478,1929,478,1929,cy.po,,cy,,welsh,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/cs.po,495,2015,1960,0,0,19,165,514,2180,cs.po,,cs,,czech,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,478,1929,478,1929,ca@valencia.po,valencia,ca,,catalan,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ca.po,487,1994,2368,0,0,27,186,514,2180,ca.po,,ca,,catalan,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,478,1929,478,1929,bn_in.po,,bn,in,bangla,,india

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,478,1929,478,1929,bg.po,,bg,,bulgarian,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,478,1929,478,1929,az.po,,az,,azerbaijani,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,478,1929,478,1929,as.po,,as,,assamese,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,478,1929,478,1929,ar.po,,ar,,arabic,,

- udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/af.po,438,1679,1714,0,0,76,501,514,2180,af.po,,af,,afrikaans,,

- upower-0.99.10-1.fc30.src.rpm.stats.csv,po/pl.po,26,145,124,0,0,0,0,26,145,pl.po,,pl,,polish,,

- upower-0.99.10-1.fc30.src.rpm.stats.csv,po/sv.po,19,113,107,0,0,0,0,19,113,sv.po,,sv,,swedish,,

- upower-0.99.10-1.fc30.src.rpm.stats.csv,po/it.po,19,113,130,0,0,0,0,19,113,it.po,,it,,italian,,

- upower-0.99.10-1.fc30.src.rpm.stats.csv,po/fr.po,26,145,184,0,0,0,0,26,145,fr.po,,fr,,french,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/zh_tw.po,96,573,148,0,0,0,0,96,573,zh_tw.po,,zh,tw,chinese,,taiwan

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/gl.po,62,320,332,0,0,34,253,96,573,gl.po,,gl,,galician,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/de_ch.po,92,551,496,0,0,4,22,96,573,de_ch.po,,de,ch,german,,switzerland

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/tg.po,59,177,196,0,0,37,396,96,573,tg.po,,tg,,tajik,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/bs.po,94,564,545,0,0,2,9,96,573,bs.po,,bs,,bosnian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ast.po,92,551,563,0,0,4,22,96,573,ast.po,,ast,,asturian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/be.po,74,451,383,0,0,22,122,96,573,be.po,,be,,belarusian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/fi.po,96,573,419,0,0,0,0,96,573,fi.po,,fi,,finnish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/nl.po,96,573,567,0,0,0,0,96,573,nl.po,,nl,,dutch,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ko.po,95,570,489,0,0,1,3,96,573,ko.po,,ko,,korean,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/cs.po,96,573,514,0,0,0,0,96,573,cs.po,,cs,,czech,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ml.po,94,564,450,0,0,2,9,96,573,ml.po,,ml,,malayalam,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/as.po,95,570,558,0,0,1,3,96,573,as.po,,as,,assamese,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/tr.po,96,573,451,0,0,0,0,96,573,tr.po,,tr,,turkish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/nds.po,34,74,71,0,0,62,499,96,573,nds.po,,nds,,low german,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/sk.po,96,573,548,0,0,0,0,96,573,sk.po,,sk,,slovak,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/te.po,95,570,472,0,0,1,3,96,573,te.po,,te,,telugu,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/sr@latin.po,94,564,526,0,0,2,9,96,573,sr@latin.po,latin,sr,,serbian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ja.po,96,573,150,0,0,0,0,96,573,ja.po,,ja,,japanese,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/bn.po,95,570,596,0,0,1,3,96,573,bn.po,,bn,,bangla,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/sl.po,74,442,421,0,0,22,131,96,573,sl.po,,sl,,slovenian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/da.po,96,573,537,0,0,0,0,96,573,da.po,,da,,danish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/cy.po,83,521,510,0,0,13,52,96,573,cy.po,,cy,,welsh,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/bg.po,95,570,580,0,0,1,3,96,573,bg.po,,bg,,bulgarian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/fa.po,95,570,624,0,0,1,3,96,573,fa.po,,fa,,persian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/fr.po,96,573,658,0,0,0,0,96,573,fr.po,,fr,,french,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/or.po,94,564,662,0,0,2,9,96,573,or.po,,or,,odia,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/mai.po,92,551,654,0,0,4,22,96,573,mai.po,,mai,,maithili,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/is.po,95,570,575,0,0,1,3,96,573,is.po,,is,,icelandic,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/pa.po,96,573,690,0,0,0,0,96,573,pa.po,,pa,,punjabi,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/es.po,96,573,631,0,0,0,0,96,573,es.po,,es,,spanish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ms.po,91,542,500,0,0,5,31,96,573,ms.po,,ms,,malay,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/id.po,96,573,502,0,0,0,0,96,573,id.po,,id,,indonesian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/en_gb.po,86,524,527,0,0,10,49,96,573,en_gb.po,,en,gb,english,,united kingdom

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/pt_br.po,96,573,635,0,0,0,0,96,573,pt_br.po,,pt,br,portuguese,,brazil

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ka.po,29,60,57,0,0,67,513,96,573,ka.po,,ka,,georgian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/pl.po,96,573,513,0,0,0,0,96,573,pl.po,,pl,,polish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/sv.po,96,573,531,0,0,0,0,96,573,sv.po,,sv,,swedish,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/sr.po,96,573,536,0,0,0,0,96,573,sr.po,,sr,,serbian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/el.po,96,573,591,0,0,0,0,96,573,el.po,,el,,greek,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/nb.po,95,570,589,0,0,1,3,96,573,nb.po,,nb,,norwegian bokmål,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/it.po,96,573,591,0,0,0,0,96,573,it.po,,it,,italian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ar.po,95,570,554,0,0,1,3,96,573,ar.po,,ar,,arabic,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ro.po,95,570,573,0,0,1,3,96,573,ro.po,,ro,,romanian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/vi.po,60,252,350,0,0,36,321,96,573,vi.po,,vi,,vietnamese,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/hr.po,91,542,525,0,0,5,31,96,573,hr.po,,hr,,croatian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/hu.po,96,573,518,0,0,0,0,96,573,hu.po,,hu,,hungarian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/mr.po,94,564,538,0,0,2,9,96,573,mr.po,,mr,,marathi,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/he.po,95,570,536,0,0,1,3,96,573,he.po,,he,,hebrew,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/lv.po,95,570,485,0,0,1,3,96,573,lv.po,,lv,,latvian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/kn.po,95,570,486,0,0,1,3,96,573,kn.po,,kn,,kannada,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/et.po,95,570,452,0,0,1,3,96,573,et.po,,et,,estonian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/de.po,96,573,520,0,0,0,0,96,573,de.po,,de,,german,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ru.po,96,573,506,0,0,0,0,96,573,ru.po,,ru,,russian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/hi.po,94,564,680,0,0,2,9,96,573,hi.po,,hi,,hindi,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/bn_in.po,96,573,589,0,0,0,0,96,573,bn_in.po,,bn,in,bangla,,india

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/zh_cn.po,95,570,153,0,0,1,3,96,573,zh_cn.po,,zh,cn,chinese,,china

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ta.po,95,570,457,0,0,1,3,96,573,ta.po,,ta,,tamil,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/ca.po,96,573,654,0,0,0,0,96,573,ca.po,,ca,,catalan,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/gu.po,94,564,621,0,0,2,9,96,573,gu.po,,gu,,gujarati,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/pt.po,96,573,645,0,0,0,0,96,573,pt.po,,pt,,portuguese,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/mk.po,91,542,549,0,0,5,31,96,573,mk.po,,mk,,macedonian,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/si.po,19,31,36,0,0,77,542,96,573,si.po,,si,,sinhala,,

- usermode-1.112-4.fc30.src.rpm.stats.csv,po/uk.po,96,573,499,0,0,0,0,96,573,uk.po,,uk,,ukrainian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/nl.po,3485,18207,18186,486,3118,250,2130,4221,23455,nl.po,,nl,,dutch,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/gl.po,212,780,1021,1685,8207,2324,14468,4221,23455,gl.po,,gl,,galician,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/eu.po,357,861,923,2122,9935,1742,12659,4221,23455,eu.po,,eu,,basque,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/fr.po,4214,23423,28301,5,26,2,6,4221,23455,fr.po,,fr,,french,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,711,2746,1431,2666,15280,844,5429,4221,23455,zh_tw.po,,zh,tw,chinese,,taiwan

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/fi.po,1154,4500,3928,2048,10727,1019,8228,4221,23455,fi.po,,fi,,finnish,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/uk.po,4214,23423,24760,5,26,2,6,4221,23455,uk.po,,uk,,ukrainian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/sv.po,4198,23252,22218,21,197,2,6,4221,23455,sv.po,,sv,,swedish,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/et.po,321,1064,1042,2176,11001,1724,11390,4221,23455,et.po,,et,,estonian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/id.po,659,2432,2488,2377,12770,1185,8253,4221,23455,id.po,,id,,indonesian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/hr.po,2914,15883,16566,4,22,1303,7550,4221,23455,hr.po,,hr,,croatian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/sl.po,483,1681,1757,2423,12495,1315,9279,4221,23455,sl.po,,sl,,slovenian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/hu.po,573,2085,2138,2369,12377,1279,8993,4221,23455,hu.po,,hu,,hungarian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/it.po,488,1532,1716,2385,12183,1348,9740,4221,23455,it.po,,it,,italian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ru.po,1863,8647,8528,1242,6687,1116,8121,4221,23455,ru.po,,ru,,russian,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/da.po,3866,21091,19698,278,1901,77,463,4221,23455,da.po,,da,,danish,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/cs.po,4214,23423,23504,5,26,2,6,4221,23455,cs.po,,cs,,czech,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ca.po,487,1692,2199,2424,12522,1310,9241,4221,23455,ca.po,,ca,,catalan,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/vi.po,3088,16736,24352,892,5195,241,1524,4221,23455,vi.po,,vi,,vietnamese,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,4214,23423,27558,5,26,2,6,4221,23455,pt_br.po,,pt,br,portuguese,,brazil

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/pl.po,4214,23423,23690,5,26,2,6,4221,23455,pl.po,,pl,,polish,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/tr.po,3607,19477,17975,483,3120,131,858,4221,23455,tr.po,,tr,,turkish,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ja.po,3284,17676,8942,625,3674,312,2105,4221,23455,ja.po,,ja,,japanese,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/de.po,4214,23423,23417,5,26,2,6,4221,23455,de.po,,de,,german,,

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,3610,19451,9165,484,3162,127,842,4221,23455,zh_cn.po,,zh,cn,chinese,,china

- util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/es.po,4214,23423,30503,5,26,2,6,4221,23455,es.po,,es,,spanish,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/uk.po,124,566,639,5,39,41,135,170,740,uk.po,,uk,,ukrainian,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/ca.po,46,106,126,1,7,123,627,170,740,ca.po,,ca,,catalan,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/pt_br.po,157,685,768,0,0,13,55,170,740,pt_br.po,,pt,br,portuguese,,brazil

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/de.po,157,685,652,0,0,13,55,170,740,de.po,,de,,german,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/uk.po,0,0,0,21,70,389,2187,410,2257,uk.po,,uk,,ukrainian,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/ca.po,29,68,83,17,58,364,2131,410,2257,ca.po,,ca,,catalan,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/pt_br.po,309,1496,1798,67,583,34,178,410,2257,pt_br.po,,pt,br,portuguese,,brazil

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/de.po,309,1496,1479,66,580,35,181,410,2257,de.po,,de,,german,,

- v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/fr.po,35,145,165,23,214,352,1898,410,2257,fr.po,,fr,,french,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/nl.po,1213,5623,5662,0,0,0,0,1213,5623,nl.po,,nl,,dutch,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/cs.po,1283,5850,5827,0,0,0,0,1283,5850,cs.po,,cs,,czech,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/lv.po,78,504,458,0,0,0,0,78,504,lv.po,,lv,,latvian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/pl.po,1869,9421,9586,0,0,0,0,1869,9421,pl.po,,pl,,polish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ru.po,1955,10076,10183,0,0,0,0,1955,10076,ru.po,,ru,,russian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sk.po,1628,7870,8187,0,0,0,0,1628,7870,sk.po,,sk,,slovak,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/fi.po,1941,10000,8507,0,0,0,0,1941,10000,fi.po,,fi,,finnish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/uk.po,1963,10144,9853,0,0,0,0,1963,10144,uk.po,,uk,,ukrainian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sv.po,1697,8198,7860,0,0,0,0,1697,8198,sv.po,,sv,,swedish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/es.po,1733,8457,11200,0,0,0,0,1733,8457,es.po,,es,,spanish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/de.po,2002,10409,10483,0,0,0,0,2002,10409,de.po,,de,,german,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/no.po,1668,8054,7925,0,0,0,0,1668,8054,no.po,,no,,norwegian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/eo.po,1954,10207,10602,0,0,0,0,1954,10207,eo.po,,eo,,esperanto,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/vi.po,1422,6679,10508,0,0,0,0,1422,6679,vi.po,,vi,,vietnamese,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/pt_br.po,1937,9989,11208,0,0,0,0,1937,9989,pt_br.po,,pt,br,portuguese,,brazil

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ko.po,1869,9456,8881,0,0,0,0,1869,9456,ko.po,,ko,,korean,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ja.po,2002,10408,5259,0,0,0,0,2002,10408,ja.po,,ja,,japanese,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/af.po,1423,6685,7205,0,0,0,0,1423,6685,af.po,,af,,afrikaans,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/zh_cn.po,1633,7865,4498,3,15,0,0,1636,7880,zh_cn.po,,zh,cn,chinese,,china

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/it.po,2002,10408,11524,0,0,0,0,2002,10408,it.po,,it,,italian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sr.po,1961,10132,11044,0,0,0,0,1961,10132,sr.po,,sr,,serbian,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ca.po,1931,9958,12201,0,0,0,0,1931,9958,ca.po,,ca,,catalan,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ga.po,1931,9958,11776,0,0,0,0,1931,9958,ga.po,,ga,,irish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/nb.po,1668,8054,7925,0,0,0,0,1668,8054,nb.po,,nb,,norwegian bokmål,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/fr.po,2003,10418,12150,0,0,0,0,2003,10418,fr.po,,fr,,french,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/da.po,1963,10135,9803,0,0,0,0,1963,10135,da.po,,da,,danish,,

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/en_gb.po,182,1128,1152,0,0,0,0,182,1128,en_gb.po,,en,gb,english,,united kingdom

- vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/zh_tw.po,1422,6679,3896,0,0,0,0,1422,6679,zh_tw.po,,zh,tw,chinese,,taiwan

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/id.po,134,1228,1096,0,0,0,0,134,1228,id.po,,id,,indonesian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pa.po,134,1228,1341,0,0,0,0,134,1228,pa.po,,pa,,punjabi,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/te.po,134,1228,951,0,0,0,0,134,1228,te.po,,te,,telugu,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/oc.po,94,973,1059,0,0,0,0,94,973,oc.po,,oc,,occitan,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sk.po,134,1228,1206,0,0,0,0,134,1228,sk.po,,sk,,slovak,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bn.po,136,1215,1294,0,0,0,0,136,1215,bn.po,,bn,,bangla,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/si.po,66,479,510,1,26,15,311,82,816,si.po,,si,,sinhala,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hi.po,134,1228,1409,0,0,0,0,134,1228,hi.po,,hi,,hindi,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en_gb.po,94,973,998,0,0,0,0,94,973,en_gb.po,,en,gb,english,,united kingdom

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ka.po,72,544,457,0,0,0,0,72,544,ka.po,,ka,,georgian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ga.po,23,52,63,0,0,113,1163,136,1215,ga.po,,ga,,irish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ta.po,134,1228,920,0,0,0,0,134,1228,ta.po,,ta,,tamil,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/vi.po,94,973,1335,0,0,0,0,94,973,vi.po,,vi,,vietnamese,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/tr.po,94,973,749,0,0,0,0,94,973,tr.po,,tr,,turkish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ca.po,134,1228,1371,0,0,0,0,134,1228,ca.po,,ca,,catalan,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/th.po,133,1223,366,0,0,0,0,133,1223,th.po,,th,,thai,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ro.po,128,1184,1186,0,0,0,0,128,1184,ro.po,,ro,,romanian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/et.po,134,1228,976,0,0,0,0,134,1228,et.po,,et,,estonian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/cy.po,72,544,584,0,0,0,0,72,544,cy.po,,cy,,welsh,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/kn.po,134,1228,995,0,0,0,0,134,1228,kn.po,,kn,,kannada,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/lt.po,134,1228,999,0,0,0,0,134,1228,lt.po,,lt,,lithuanian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/be@latin.po,87,500,456,0,0,25,554,112,1054,be@latin.po,latin,be,,belarusian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ms.po,61,313,261,0,0,9,227,70,540,ms.po,,ms,,malay,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ca@valencia.po,134,1228,1370,0,0,0,0,134,1228,ca@valencia.po,valencia,ca,,catalan,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en@shaw.po,107,764,765,29,451,0,0,136,1215,en@shaw.po,shaw,en,,english,shavian,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nn.po,136,1215,1211,0,0,0,0,136,1215,nn.po,,nn,,norwegian nynorsk,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sr.po,134,1228,1187,0,0,0,0,134,1228,sr.po,,sr,,serbian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/or.po,134,1228,1222,0,0,0,0,134,1228,or.po,,or,,odia,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nl.po,134,1228,1280,0,0,0,0,134,1228,nl.po,,nl,,dutch,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sr@latin.po,134,1228,1187,0,0,0,0,134,1228,sr@latin.po,latin,sr,,serbian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/rw.po,3,2,2,55,518,12,20,70,540,rw.po,,rw,,kinyarwanda,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ar.po,97,831,837,3,100,10,159,110,1090,ar.po,,ar,,arabic,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/gl.po,134,1228,1424,0,0,0,0,134,1228,gl.po,,gl,,galician,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/gu.po,134,1228,1323,0,0,0,0,134,1228,gu.po,,gu,,gujarati,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mk.po,120,1075,1157,0,0,0,0,120,1075,mk.po,,mk,,macedonian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sl.po,134,1228,1080,0,0,0,0,134,1228,sl.po,,sl,,slovenian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/es.po,94,973,1077,0,0,0,0,94,973,es.po,,es,,spanish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hu.po,134,1228,1138,0,0,0,0,134,1228,hu.po,,hu,,hungarian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/lv.po,134,1228,1053,0,0,0,0,134,1228,lv.po,,lv,,latvian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fr.po,134,1228,1421,0,0,0,0,134,1228,fr.po,,fr,,french,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mr.po,134,1228,1123,0,0,0,0,134,1228,mr.po,,mr,,marathi,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ne.po,52,427,416,26,292,16,254,94,973,ne.po,,ne,,nepali,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nb.po,94,973,916,0,0,0,0,94,973,nb.po,,nb,,norwegian bokmål,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/wa.po,60,392,503,0,0,10,148,70,540,wa.po,,wa,,walloon,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ml.po,134,1228,847,0,0,0,0,134,1228,ml.po,,ml,,malayalam,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ug.po,134,1228,950,0,0,0,0,134,1228,ug.po,,ug,,uyghur,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bs.po,94,973,885,0,0,0,0,94,973,bs.po,,bs,,bosnian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/as.po,134,1228,1256,0,0,0,0,134,1228,as.po,,as,,assamese,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_cn.po,110,1090,278,0,0,0,0,110,1090,zh_cn.po,,zh,cn,chinese,,china

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bg.po,94,973,1028,0,0,0,0,94,973,bg.po,,bg,,bulgarian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ast.po,136,1215,1258,0,0,0,0,136,1215,ast.po,,ast,,asturian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/it.po,134,1228,1291,0,0,0,0,134,1228,it.po,,it,,italian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/tg.po,110,1090,1175,0,0,0,0,110,1090,tg.po,,tg,,tajik,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_hk.po,110,1090,266,0,0,0,0,110,1090,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fa.po,134,1228,1366,0,0,0,0,134,1228,fa.po,,fa,,persian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/eo.po,74,440,431,0,0,57,769,131,1209,eo.po,,eo,,esperanto,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pt_br.po,134,1228,1422,0,0,0,0,134,1228,pt_br.po,,pt,br,portuguese,,brazil

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_tw.po,94,973,223,0,0,0,0,94,973,zh_tw.po,,zh,tw,chinese,,taiwan

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/is.po,87,742,707,0,0,7,231,94,973,is.po,,is,,icelandic,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ko.po,134,1228,919,0,0,0,0,134,1228,ko.po,,ko,,korean,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/az.po,70,540,499,0,0,0,0,70,540,az.po,,az,,azerbaijani,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pl.po,94,973,911,0,0,0,0,94,973,pl.po,,pl,,polish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/an.po,110,1090,1182,0,0,0,0,110,1090,an.po,,an,,aragonese,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/xh.po,70,540,452,0,0,0,0,70,540,xh.po,,xh,,xhosa,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/cs.po,134,1228,1166,0,0,0,0,134,1228,cs.po,,cs,,czech,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/he.po,134,1228,1210,0,0,0,0,134,1228,he.po,,he,,hebrew,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/km.po,133,1223,435,0,0,0,0,133,1223,km.po,,km,,khmer,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/eu.po,134,1228,1049,0,0,0,0,134,1228,eu.po,,eu,,basque,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bn_in.po,134,1228,1279,0,0,0,0,134,1228,bn_in.po,,bn,in,bangla,,india

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/el.po,94,973,1102,0,0,0,0,94,973,el.po,,el,,greek,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mn.po,63,395,313,0,0,7,145,70,540,mn.po,,mn,,mongolian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fur.po,94,973,1086,0,0,0,0,94,973,fur.po,,fur,,friulian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en_ca.po,72,544,542,0,0,0,0,72,544,en_ca.po,,en,ca,english,,canada

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sq.po,113,1031,1182,0,0,0,0,113,1031,sq.po,,sq,,albanian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hr.po,75,626,588,4,30,34,375,113,1031,hr.po,,hr,,croatian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ku.po,12,13,15,0,0,58,527,70,540,ku.po,,ku,,kurdish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fi.po,134,1228,856,0,0,0,0,134,1228,fi.po,,fi,,finnish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/da.po,94,973,867,0,0,0,0,94,973,da.po,,da,,danish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/dz.po,82,816,337,0,0,0,0,82,816,dz.po,,dz,,dzongkha,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/be.po,134,1228,1087,0,0,0,0,134,1228,be.po,,be,,belarusian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/uk.po,134,1228,1035,0,0,0,0,134,1228,uk.po,,uk,,ukrainian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sv.po,94,973,884,0,0,0,0,94,973,sv.po,,sv,,swedish,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ru.po,134,1228,1095,0,0,0,0,134,1228,ru.po,,ru,,russian,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mai.po,61,554,584,0,0,75,661,136,1215,mai.po,,mai,,maithili,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ja.po,110,1090,302,0,0,0,0,110,1090,ja.po,,ja,,japanese,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/kk.po,41,131,131,0,0,53,842,94,973,kk.po,,kk,,kazakh,,

- vino-3.22.0-15.fc30.src.rpm.stats.csv,po/de.po,134,1228,1301,0,0,0,0,134,1228,de.po,,de,,german,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/sv.po,47,244,196,0,0,19,145,66,389,sv.po,,sv,,swedish,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/nl.po,47,244,252,0,0,19,145,66,389,nl.po,,nl,,dutch,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/fr.po,47,244,276,0,0,19,145,66,389,fr.po,,fr,,french,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/ca.po,69,415,547,0,0,0,0,69,415,ca.po,,ca,,catalan,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/de.po,55,323,265,0,0,11,66,66,389,de.po,,de,,german,,

- virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/es.po,69,415,537,0,0,0,0,69,415,es.po,,es,,spanish,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/zh_tw.po,151,745,283,2,10,1,8,154,763,zh_tw.po,,zh,tw,chinese,,taiwan

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/de_ch.po,49,186,184,0,0,105,577,154,763,de_ch.po,,de,ch,german,,switzerland

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/eu.po,33,117,109,0,0,121,646,154,763,eu.po,,eu,,basque,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/nl.po,151,745,817,2,10,1,8,154,763,nl.po,,nl,,dutch,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ko.po,151,745,712,2,10,1,8,154,763,ko.po,,ko,,korean,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/cs.po,151,745,724,2,10,1,8,154,763,cs.po,,cs,,czech,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ml.po,151,745,653,2,10,1,8,154,763,ml.po,,ml,,malayalam,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/as.po,151,745,798,2,10,1,8,154,763,as.po,,as,,assamese,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/tr.po,101,427,385,2,10,51,326,154,763,tr.po,,tr,,turkish,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/sk.po,12,34,34,0,0,142,729,154,763,sk.po,,sk,,slovak,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/te.po,151,745,665,2,10,1,8,154,763,te.po,,te,,telugu,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ja.po,151,745,334,2,10,1,8,154,763,ja.po,,ja,,japanese,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bn.po,151,745,816,2,10,1,8,154,763,bn.po,,bn,,bangla,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bg.po,143,715,812,2,10,9,38,154,763,bg.po,,bg,,bulgarian,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/fr.po,151,745,1024,2,10,1,8,154,763,fr.po,,fr,,french,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/or.po,151,745,799,2,10,1,8,154,763,or.po,,or,,odia,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pa.po,151,745,796,2,10,1,8,154,763,pa.po,,pa,,punjabi,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/es.po,151,745,1032,2,10,1,8,154,763,es.po,,es,,spanish,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/id.po,8,40,39,0,0,146,723,154,763,id.po,,id,,indonesian,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/en_gb.po,145,720,719,2,10,7,33,154,763,en_gb.po,,en,gb,english,,united kingdom

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pt_br.po,151,745,928,2,10,1,8,154,763,pt_br.po,,pt,br,portuguese,,brazil

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pl.po,151,745,759,2,10,1,8,154,763,pl.po,,pl,,polish,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/sv.po,151,745,749,2,10,1,8,154,763,sv.po,,sv,,swedish,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/it.po,151,745,905,2,10,1,8,154,763,it.po,,it,,italian,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/hu.po,151,745,771,2,10,1,8,154,763,hu.po,,hu,,hungarian,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/mr.po,151,745,735,2,10,1,8,154,763,mr.po,,mr,,marathi,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/kn.po,151,745,718,2,10,1,8,154,763,kn.po,,kn,,kannada,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/de.po,151,745,760,2,10,1,8,154,763,de.po,,de,,german,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ru.po,148,732,719,2,10,4,21,154,763,ru.po,,ru,,russian,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/hi.po,151,745,834,2,10,1,8,154,763,hi.po,,hi,,hindi,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bn_in.po,143,707,777,2,10,9,46,154,763,bn_in.po,,bn,in,bangla,,india

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/zh_cn.po,151,745,322,2,10,1,8,154,763,zh_cn.po,,zh,cn,chinese,,china

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ta.po,151,745,660,2,10,1,8,154,763,ta.po,,ta,,tamil,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ca.po,151,745,997,2,10,1,8,154,763,ca.po,,ca,,catalan,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/gu.po,151,745,841,2,10,1,8,154,763,gu.po,,gu,,gujarati,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pt.po,151,745,877,2,10,1,8,154,763,pt.po,,pt,,portuguese,,

- volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/uk.po,151,745,794,2,10,1,8,154,763,uk.po,,uk,,ukrainian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/kk.po,5,31,29,0,0,0,0,5,31,kk.po,,kk,,kazakh,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,5,31,10,0,0,0,0,5,31,zh_tw.po,,zh,tw,chinese,,taiwan

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mr.po,19,108,112,0,0,0,0,19,108,mr.po,,mr,,marathi,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ro.po,5,31,42,0,0,0,0,5,31,ro.po,,ro,,romanian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gd.po,5,31,42,0,0,0,0,5,31,gd.po,,gd,,scottish gaelic,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bg.po,5,31,37,0,0,0,0,5,31,bg.po,,bg,,bulgarian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/eu.po,5,31,26,0,0,0,0,5,31,eu.po,,eu,,basque,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,13,80,76,0,0,0,0,13,80,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nn.po,19,108,111,0,0,0,0,19,108,nn.po,,nn,,norwegian nynorsk,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/dz.po,20,116,62,0,0,0,0,20,116,dz.po,,dz,,dzongkha,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sk.po,5,31,35,0,0,0,0,5,31,sk.po,,sk,,slovak,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,17,92,1,4,18,96,rw.po,,rw,,kinyarwanda,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/he.po,5,31,27,0,0,0,0,5,31,he.po,,he,,hebrew,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sl.po,5,31,37,0,0,0,0,5,31,sl.po,,sl,,slovenian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gl.po,5,31,42,0,0,0,0,5,31,gl.po,,gl,,galician,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mk.po,20,116,136,0,0,0,0,20,116,mk.po,,mk,,macedonian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/be.po,5,31,31,0,0,0,0,5,31,be.po,,be,,belarusian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pa.po,16,83,99,0,0,0,0,16,83,pa.po,,pa,,punjabi,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mai.po,12,66,75,0,0,2,18,14,84,mai.po,,mai,,maithili,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/oc.po,5,31,43,0,0,0,0,5,31,oc.po,,oc,,occitan,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/az.po,18,96,96,0,0,0,0,18,96,az.po,,az,,azerbaijani,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fr.po,5,31,43,0,0,0,0,5,31,fr.po,,fr,,french,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ast.po,14,84,111,0,0,0,0,14,84,ast.po,,ast,,asturian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mn.po,14,84,79,0,0,0,0,14,84,mn.po,,mn,,mongolian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/or.po,14,84,81,0,0,0,0,14,84,or.po,,or,,odia,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ug.po,13,80,79,0,0,0,0,13,80,ug.po,,ug,,uyghur,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ja.po,13,80,36,0,0,0,0,13,80,ja.po,,ja,,japanese,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,14,84,93,0,0,0,0,14,84,bn_in.po,,bn,in,bangla,,india

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/cy.po,18,96,105,0,0,0,0,18,96,cy.po,,cy,,welsh,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/xh.po,18,96,95,0,0,0,0,18,96,xh.po,,xh,,xhosa,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ne.po,19,108,117,0,0,0,0,19,108,ne.po,,ne,,nepali,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ca.po,5,31,44,0,0,0,0,5,31,ca.po,,ca,,catalan,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gu.po,14,84,96,0,0,0,0,14,84,gu.po,,gu,,gujarati,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/lt.po,5,31,36,0,0,0,0,5,31,lt.po,,lt,,lithuanian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bn.po,14,84,107,0,0,0,0,14,84,bn.po,,bn,,bangla,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/id.po,5,31,33,0,0,0,0,5,31,id.po,,id,,indonesian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/es.po,5,31,39,0,0,0,0,5,31,es.po,,es,,spanish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/si.po,19,108,113,0,0,0,0,19,108,si.po,,si,,sinhala,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hr.po,5,31,31,0,0,0,0,5,31,hr.po,,hr,,croatian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/eo.po,5,31,35,0,0,0,0,5,31,eo.po,,eo,,esperanto,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ga.po,13,80,101,0,0,0,0,13,80,ga.po,,ga,,irish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/am.po,1,2,2,0,0,17,94,18,96,am.po,,am,,amharic,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,20,116,109,0,0,0,0,20,116,be@latin.po,latin,be,,belarusian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ar.po,13,80,84,0,0,0,0,13,80,ar.po,,ar,,arabic,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/as.po,16,83,96,0,0,0,0,16,83,as.po,,as,,assamese,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sv.po,5,31,33,0,0,0,0,5,31,sv.po,,sv,,swedish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/tr.po,5,31,26,0,0,0,0,5,31,tr.po,,tr,,turkish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ky.po,18,96,95,0,0,0,0,18,96,ky.po,,ky,,kyrgyz,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/vi.po,20,116,170,0,0,0,0,20,116,vi.po,,vi,,vietnamese,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,5,31,44,0,0,0,0,5,31,ca@valencia.po,valencia,ca,,catalan,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/te.po,19,108,97,0,0,0,0,19,108,te.po,,te,,telugu,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/el.po,5,31,39,0,0,0,0,5,31,el.po,,el,,greek,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,11,58,7,38,18,96,mi.po,,mi,,maori,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,16,83,31,0,0,0,0,16,83,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/an.po,13,64,84,0,0,0,0,13,64,an.po,,an,,aragonese,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fa.po,5,31,39,0,0,0,0,5,31,fa.po,,fa,,persian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pl.po,6,33,39,0,0,0,0,6,33,pl.po,,pl,,polish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ko.po,5,31,30,0,0,0,0,5,31,ko.po,,ko,,korean,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/kn.po,19,108,96,0,0,0,0,19,108,kn.po,,kn,,kannada,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/uk.po,16,83,84,0,0,0,0,16,83,uk.po,,uk,,ukrainian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ru.po,5,31,38,0,0,0,0,5,31,ru.po,,ru,,russian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/cs.po,5,31,33,0,0,0,0,5,31,cs.po,,cs,,czech,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ang.po,6,27,31,0,0,12,69,18,96,ang.po,,ang,,old english,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,13,80,80,0,0,0,0,13,80,en@shaw.po,shaw,en,,english,shavian,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/is.po,5,31,39,0,0,0,0,5,31,is.po,,is,,icelandic,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nl.po,5,31,40,0,0,0,0,5,31,nl.po,,nl,,dutch,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,5,31,37,0,0,0,0,5,31,pt_br.po,,pt,br,portuguese,,brazil

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,5,31,10,0,0,0,0,5,31,zh_cn.po,,zh,cn,chinese,,china

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ku.po,3,10,8,0,0,15,86,18,96,ku.po,,ku,,kurdish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bs.po,13,64,63,0,0,0,0,13,64,bs.po,,bs,,bosnian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ta.po,13,80,77,0,0,0,0,13,80,ta.po,,ta,,tamil,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/li.po,16,81,109,2,15,0,0,18,96,li.po,,li,,limburgish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ml.po,5,31,25,0,0,0,0,5,31,ml.po,,ml,,malayalam,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hi.po,14,84,110,0,0,0,0,14,84,hi.po,,hi,,hindi,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/lv.po,5,31,27,0,0,0,0,5,31,lv.po,,lv,,latvian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/th.po,14,84,41,0,0,0,0,14,84,th.po,,th,,thai,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fi.po,5,31,29,0,0,0,0,5,31,fi.po,,fi,,finnish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,19,108,108,0,0,0,0,19,108,en_ca.po,,en,ca,english,,canada

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/tg.po,13,80,86,0,0,0,0,13,80,tg.po,,tg,,tajik,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ms.po,18,96,101,0,0,0,0,18,96,ms.po,,ms,,malay,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/et.po,13,80,71,0,0,0,0,13,80,et.po,,et,,estonian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/da.po,5,31,36,0,0,0,0,5,31,da.po,,da,,danish,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sq.po,20,116,167,0,0,0,0,20,116,sq.po,,sq,,albanian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,5,31,31,0,0,0,0,5,31,en_gb.po,,en,gb,english,,united kingdom

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/it.po,5,31,39,0,0,0,0,5,31,it.po,,it,,italian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/wa.po,18,96,169,0,0,0,0,18,96,wa.po,,wa,,walloon,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,5,31,34,0,0,0,0,5,31,sr@latin.po,latin,sr,,serbian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sr.po,5,31,34,0,0,0,0,5,31,sr.po,,sr,,serbian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nds.po,14,84,99,0,0,0,0,14,84,nds.po,,nds,,low german,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/de.po,5,31,37,0,0,0,0,5,31,de.po,,de,,german,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nb.po,5,31,37,0,0,0,0,5,31,nb.po,,nb,,norwegian bokmål,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hu.po,5,31,37,0,0,0,0,5,31,hu.po,,hu,,hungarian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pt.po,5,31,34,0,0,0,0,5,31,pt.po,,pt,,portuguese,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ka.po,18,96,90,0,0,0,0,18,96,ka.po,,ka,,georgian,,

- vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fur.po,5,31,41,0,0,0,0,5,31,fur.po,,fur,,friulian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/nb.po,97,215,213,114,507,359,1901,570,2623,nb.po,,nb,,norwegian bokmål,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/vi.po,255,1062,1351,137,638,178,923,570,2623,vi.po,,vi,,vietnamese,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/zh_cn.po,258,1073,376,137,638,175,912,570,2623,zh_cn.po,,zh,cn,chinese,,china

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ko.po,569,2622,2057,0,0,1,1,570,2623,ko.po,,ko,,korean,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/lv.po,163,671,601,119,550,288,1402,570,2623,lv.po,,lv,,latvian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ar.po,258,1073,959,137,638,175,912,570,2623,ar.po,,ar,,arabic,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/it.po,584,2277,2491,0,0,1,1,585,2278,it.po,,it,,italian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pa.po,163,671,691,134,644,273,1308,570,2623,pa.po,,pa,,punjabi,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ja.po,582,2682,900,3,14,2,12,587,2708,ja.po,,ja,,japanese,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/he.po,376,1567,1571,0,0,0,0,376,1567,he.po,,he,,hebrew,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sr@latin.po,258,1073,1007,137,638,175,912,570,2623,sr@latin.po,latin,sr,,serbian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/el.po,384,1605,1790,0,0,1,1,385,1606,el.po,,el,,greek,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/en_ca.po,337,1441,1441,123,587,110,593,570,2621,en_ca.po,,en,ca,english,,canada

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ta.po,368,1545,1333,0,0,0,0,368,1545,ta.po,,ta,,tamil,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/lt.po,254,1052,955,138,641,178,930,570,2623,lt.po,,lt,,lithuanian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/cs.po,350,1295,1281,86,491,134,837,570,2623,cs.po,,cs,,czech,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/nl.po,533,2407,2219,27,161,26,131,586,2699,nl.po,,nl,,dutch,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/fr.po,404,1536,1908,46,240,94,388,544,2164,fr.po,,fr,,french,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sr.po,258,1073,1007,137,638,175,912,570,2623,sr.po,,sr,,serbian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sl.po,469,1889,1777,62,355,60,466,591,2710,sl.po,,sl,,slovenian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ro.po,425,1834,1936,85,415,60,374,570,2623,ro.po,,ro,,romanian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/de.po,396,1637,1532,0,0,0,0,396,1637,de.po,,de,,german,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/eo.po,106,303,287,60,258,404,2062,570,2623,eo.po,,eo,,esperanto,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/gu.po,368,1545,1592,0,0,0,0,368,1545,gu.po,,gu,,gujarati,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/gl.po,575,2647,3318,2,20,5,19,582,2686,gl.po,,gl,,galician,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ml.po,179,429,414,0,0,398,2252,577,2681,ml.po,,ml,,malayalam,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/id.po,518,1880,1819,0,0,50,355,568,2235,id.po,,id,,indonesian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/te.po,365,1526,1270,0,0,0,0,365,1526,te.po,,te,,telugu,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pt_br.po,568,2215,2583,0,0,0,0,568,2215,pt_br.po,,pt,br,portuguese,,brazil

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/mr.po,365,1526,1440,0,0,0,0,365,1526,mr.po,,mr,,marathi,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pt.po,319,1375,1627,136,643,115,605,570,2623,pt.po,,pt,,portuguese,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/et.po,239,969,695,136,628,195,1026,570,2623,et.po,,et,,estonian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/eu.po,257,1066,917,138,645,175,912,570,2623,eu.po,,eu,,basque,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/fi.po,118,291,256,0,0,265,1308,383,1599,fi.po,,fi,,finnish,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/tr.po,385,1606,1436,0,0,0,0,385,1606,tr.po,,tr,,turkish,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ru.po,145,605,519,129,630,296,1388,570,2623,ru.po,,ru,,russian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/es.po,452,1589,1966,25,158,70,419,547,2166,es.po,,es,,spanish,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/or.po,365,1526,1575,0,0,0,0,365,1526,or.po,,or,,odia,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pl.po,585,2278,2223,0,0,0,0,585,2278,pl.po,,pl,,polish,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/bg.po,385,1606,1882,0,0,0,0,385,1606,bg.po,,bg,,bulgarian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/hu.po,397,1647,1306,0,0,0,0,397,1647,hu.po,,hu,,hungarian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sv.po,533,2160,1786,0,0,0,0,533,2160,sv.po,,sv,,swedish,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ca.po,178,462,626,0,0,198,1105,376,1567,ca.po,,ca,,catalan,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/as.po,367,1543,1583,0,0,0,0,367,1543,as.po,,as,,assamese,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/uk.po,567,2213,2138,0,0,0,0,567,2213,uk.po,,uk,,ukrainian,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/en_gb.po,589,2702,2702,0,0,0,0,589,2702,en_gb.po,,en,gb,english,,united kingdom

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/hi.po,365,1526,1775,0,0,0,0,365,1526,hi.po,,hi,,hindi,,

- webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/kn.po,373,1551,1305,0,0,0,0,373,1551,kn.po,,kn,,kannada,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ga.po,605,3665,4245,28,208,11,123,644,3996,ga.po,,ga,,irish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/de.po,639,3955,4327,1,10,4,31,644,3996,de.po,,de,,german,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/nl.po,529,3087,3137,67,474,48,435,644,3996,nl.po,,nl,,dutch,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/et.po,639,3955,3532,1,10,4,31,644,3996,et.po,,et,,estonian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sl.po,254,1253,1351,206,1421,184,1322,644,3996,sl.po,,sl,,slovenian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/es.po,568,3426,4107,48,322,28,248,644,3996,es.po,,es,,spanish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/fr.po,605,3665,4386,28,208,11,123,644,3996,fr.po,,fr,,french,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/id.po,351,1801,1874,211,1537,82,658,644,3996,id.po,,id,,indonesian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/fi.po,503,2919,2491,69,503,72,574,644,3996,fi.po,,fi,,finnish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/lt.po,165,777,741,247,1614,232,1605,644,3996,lt.po,,lt,,lithuanian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/gl.po,234,1081,1370,149,906,261,2009,644,3996,gl.po,,gl,,galician,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ro.po,102,407,453,120,663,422,2926,644,3996,ro.po,,ro,,romanian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,634,3897,1916,2,14,8,85,644,3996,zh_cn.po,,zh,cn,chinese,,china

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pl.po,639,3955,4043,1,10,4,31,644,3996,pl.po,,pl,,polish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,605,3665,4415,28,208,11,123,644,3996,pt_br.po,,pt,br,portuguese,,brazil

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ru.po,639,3955,3862,1,10,4,31,644,3996,ru.po,,ru,,russian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/eu.po,120,440,462,118,666,406,2890,644,3996,eu.po,,eu,,basque,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ca.po,356,1857,2570,216,1565,72,574,644,3996,ca.po,,ca,,catalan,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/vi.po,605,3665,5370,28,208,11,123,644,3996,vi.po,,vi,,vietnamese,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/cs.po,639,3955,4191,1,10,4,31,644,3996,cs.po,,cs,,czech,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/tr.po,605,3665,3411,28,208,11,123,644,3996,tr.po,,tr,,turkish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/eo.po,639,3955,4118,1,10,4,31,644,3996,eo.po,,eo,,esperanto,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sr.po,605,3665,3849,28,208,11,123,644,3996,sr.po,,sr,,serbian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/he.po,85,341,427,114,618,445,3037,644,3996,he.po,,he,,hebrew,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/it.po,639,3955,4487,1,10,4,31,644,3996,it.po,,it,,italian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/be.po,217,940,924,135,779,292,2277,644,3996,be.po,,be,,belarusian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/uk.po,639,3955,4112,1,10,4,31,644,3996,uk.po,,uk,,ukrainian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,639,3955,1938,1,10,4,31,644,3996,zh_tw.po,,zh,tw,chinese,,taiwan

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/da.po,254,1253,1238,212,1459,178,1284,644,3996,da.po,,da,,danish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/en_gb.po,102,407,407,119,656,423,2933,644,3996,en_gb.po,,en,gb,english,,united kingdom

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pt.po,639,3955,4365,1,10,4,31,644,3996,pt.po,,pt,,portuguese,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ja.po,639,3955,1957,1,10,4,31,644,3996,ja.po,,ja,,japanese,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/bg.po,93,370,432,112,624,439,3002,644,3996,bg.po,,bg,,bulgarian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sk.po,639,3955,4071,1,10,4,31,644,3996,sk.po,,sk,,slovak,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sv.po,639,3955,3808,1,10,4,31,644,3996,sv.po,,sv,,swedish,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/hu.po,605,3665,3811,28,208,11,123,644,3996,hu.po,,hu,,hungarian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/hr.po,638,3949,4325,2,16,4,31,644,3996,hr.po,,hr,,croatian,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/nb.po,639,3955,4174,1,10,4,31,644,3996,nb.po,,nb,,norwegian bokmål,,

- wget-1.20.3-1.fc30.src.rpm.stats.csv,po/el.po,93,370,450,120,658,431,2968,644,3996,el.po,,el,,greek,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,493,246,0,0,0,0,30,493,zh_cn.po,,zh,cn,chinese,,china

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/ru.po,30,493,473,0,0,0,0,30,493,ru.po,,ru,,russian,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,23,163,182,5,103,2,227,30,493,pt_br.po,,pt,br,portuguese,,brazil

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/pl.po,31,497,495,0,0,0,0,31,497,pl.po,,pl,,polish,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/nb.po,5,15,14,4,33,21,445,30,493,nb.po,,nb,,norwegian bokmål,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/ja.po,21,123,74,7,143,2,227,30,493,ja.po,,ja,,japanese,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/it.po,30,493,549,0,0,0,0,30,493,it.po,,it,,italian,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/fr.po,30,493,582,0,0,0,0,30,493,fr.po,,fr,,french,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/fi.po,30,493,377,0,0,0,0,30,493,fi.po,,fi,,finnish,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/es.po,30,493,587,0,0,0,0,30,493,es.po,,es,,spanish,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/el.po,21,123,141,7,143,2,227,30,493,el.po,,el,,greek,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/de.po,30,493,494,0,0,0,0,30,493,de.po,,de,,german,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/da.po,30,493,447,0,0,0,0,30,493,da.po,,da,,danish,,

- whois-5.4.2-1.fc30.src.rpm.stats.csv,po/cs.po,30,493,517,0,0,0,0,30,493,cs.po,,cs,,czech,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,12,88,15,3,25,5,19,20,132,zh_tw.po,,zh,tw,chinese,,taiwan

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/id.po,20,132,104,0,0,0,0,20,132,id.po,,id,,indonesian,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sk.po,12,88,76,3,25,5,19,20,132,sk.po,,sk,,slovak,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/es.po,12,88,96,3,25,5,19,20,132,es.po,,es,,spanish,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/cs.po,20,132,115,0,0,0,0,20,132,cs.po,,cs,,czech,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,12,88,15,3,25,5,19,20,132,zh_cn.po,,zh,cn,chinese,,china

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/pl.po,20,132,110,0,0,0,0,20,132,pl.po,,pl,,polish,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/uk.po,20,132,136,0,0,0,0,20,132,uk.po,,uk,,ukrainian,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/tr.po,12,88,57,3,25,5,19,20,132,tr.po,,tr,,turkish,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/fr.po,12,88,85,3,25,5,19,20,132,fr.po,,fr,,french,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,20,132,135,0,0,0,0,20,132,pt_br.po,,pt,br,portuguese,,brazil

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/lt.po,20,132,115,0,0,0,0,20,132,lt.po,,lt,,lithuanian,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/de.po,12,88,81,3,25,5,19,20,132,de.po,,de,,german,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sr.po,12,88,85,3,25,5,19,20,132,sr.po,,sr,,serbian,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/da.po,20,132,132,0,0,0,0,20,132,da.po,,da,,danish,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/it.po,20,132,131,0,0,0,0,20,132,it.po,,it,,italian,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/gl.po,12,88,88,3,25,5,19,20,132,gl.po,,gl,,galician,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sv.po,12,88,72,3,25,5,19,20,132,sv.po,,sv,,swedish,,

- xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/hu.po,12,88,64,3,25,5,19,20,132,hu.po,,hu,,hungarian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,48,170,56,0,0,1,3,49,173,zh_tw.po,,zh,tw,chinese,,taiwan

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/id.po,48,170,171,0,0,1,3,49,173,id.po,,id,,indonesian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sk.po,27,103,101,5,22,17,48,49,173,sk.po,,sk,,slovak,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/es.po,45,155,181,2,14,2,4,49,173,es.po,,es,,spanish,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/cs.po,48,172,179,0,0,1,1,49,173,cs.po,,cs,,czech,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,9,22,11,9,35,31,116,49,173,zh_cn.po,,zh,cn,chinese,,china

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/pl.po,49,173,170,0,0,0,0,49,173,pl.po,,pl,,polish,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/uk.po,48,170,186,0,0,1,3,49,173,uk.po,,uk,,ukrainian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/tr.po,48,170,155,0,0,1,3,49,173,tr.po,,tr,,turkish,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/fr.po,18,51,59,6,25,25,97,49,173,fr.po,,fr,,french,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,48,170,190,0,0,1,3,49,173,pt_br.po,,pt,br,portuguese,,brazil

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/lt.po,48,170,156,0,0,1,3,49,173,lt.po,,lt,,lithuanian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/de.po,47,169,182,0,0,2,4,49,173,de.po,,de,,german,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sr.po,9,22,28,9,35,31,116,49,173,sr.po,,sr,,serbian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/da.po,48,170,173,0,0,1,3,49,173,da.po,,da,,danish,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/it.po,48,170,172,0,0,1,3,49,173,it.po,,it,,italian,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/gl.po,27,103,118,5,22,17,48,49,173,gl.po,,gl,,galician,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sv.po,48,170,168,0,0,1,3,49,173,sv.po,,sv,,swedish,,

- xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/hu.po,45,155,149,2,14,2,4,49,173,hu.po,,hu,,hungarian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_tw.po,28,28,28,0,0,0,0,28,28,zh_tw.po,,zh,tw,chinese,,taiwan

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_hk.po,26,26,26,2,2,0,0,28,28,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_cn.po,28,28,28,0,0,0,0,28,28,zh_cn.po,,zh,cn,chinese,,china

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/vi.po,28,28,50,0,0,0,0,28,28,vi.po,,vi,,vietnamese,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/uk.po,28,28,28,0,0,0,0,28,28,uk.po,,uk,,ukrainian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/tr.po,26,26,26,2,2,0,0,28,28,tr.po,,tr,,turkish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/th.po,28,28,28,0,0,0,0,28,28,th.po,,th,,thai,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/te.po,28,28,28,0,0,0,0,28,28,te.po,,te,,telugu,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ta.po,28,28,28,0,0,0,0,28,28,ta.po,,ta,,tamil,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sv.po,28,28,28,0,0,0,0,28,28,sv.po,,sv,,swedish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sr@latn.po,26,26,28,2,2,0,0,28,28,sr@latn.po,latn,sr,,serbian,latin,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sr.po,28,28,30,0,0,0,0,28,28,sr.po,,sr,,serbian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sq.po,26,26,32,2,2,0,0,28,28,sq.po,,sq,,albanian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sl.po,28,28,28,0,0,0,0,28,28,sl.po,,sl,,slovenian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sk.po,28,28,28,0,0,0,0,28,28,sk.po,,sk,,slovak,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ru.po,28,28,32,0,0,0,0,28,28,ru.po,,ru,,russian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ro.po,28,28,28,0,0,0,0,28,28,ro.po,,ro,,romanian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pt_br.po,28,28,32,0,0,0,0,28,28,pt_br.po,,pt,br,portuguese,,brazil

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pt.po,28,28,32,0,0,0,0,28,28,pt.po,,pt,,portuguese,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ps.po,26,26,26,2,2,0,0,28,28,ps.po,,ps,,pashto,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pl.po,28,28,28,0,0,0,0,28,28,pl.po,,pl,,polish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pa.po,24,24,24,2,2,2,2,28,28,pa.po,,pa,,punjabi,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/or.po,28,28,28,0,0,0,0,28,28,or.po,,or,,odia,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nn.po,28,28,28,0,0,0,0,28,28,nn.po,,nn,,norwegian nynorsk,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nl.po,28,28,28,0,0,0,0,28,28,nl.po,,nl,,dutch,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nds.po,26,26,26,2,2,0,0,28,28,nds.po,,nds,,low german,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nb.po,28,28,28,0,0,0,0,28,28,nb.po,,nb,,norwegian bokmål,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/mr.po,28,28,28,0,0,0,0,28,28,mr.po,,mr,,marathi,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ml.po,28,28,28,0,0,0,0,28,28,ml.po,,ml,,malayalam,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/mk.po,26,26,26,2,2,0,0,28,28,mk.po,,mk,,macedonian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/lv.po,28,28,28,0,0,0,0,28,28,lv.po,,lv,,latvian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/lt.po,28,28,28,0,0,0,0,28,28,lt.po,,lt,,lithuanian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ky.po,28,28,32,0,0,0,0,28,28,ky.po,,ky,,kyrgyz,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ku.po,26,26,26,2,2,0,0,28,28,ku.po,,ku,,kurdish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ko.po,28,28,30,0,0,0,0,28,28,ko.po,,ko,,korean,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/kn.po,28,28,28,0,0,0,0,28,28,kn.po,,kn,,kannada,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/kk.po,28,28,30,0,0,0,0,28,28,kk.po,,kk,,kazakh,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ja.po,28,28,28,0,0,0,0,28,28,ja.po,,ja,,japanese,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/it.po,28,28,28,0,0,0,0,28,28,it.po,,it,,italian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/is.po,28,28,30,0,0,0,0,28,28,is.po,,is,,icelandic,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/id.po,28,28,28,0,0,0,0,28,28,id.po,,id,,indonesian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ia.po,28,28,28,0,0,0,0,28,28,ia.po,,ia,,interlingua,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hu.po,28,28,28,0,0,0,0,28,28,hu.po,,hu,,hungarian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hr.po,28,28,30,0,0,0,0,28,28,hr.po,,hr,,croatian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hi.po,28,28,30,0,0,0,0,28,28,hi.po,,hi,,hindi,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/he.po,28,28,30,0,0,0,0,28,28,he.po,,he,,hebrew,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gu.po,28,28,28,0,0,0,0,28,28,gu.po,,gu,,gujarati,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gl.po,28,28,28,0,0,0,0,28,28,gl.po,,gl,,galician,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gd.po,28,28,34,0,0,0,0,28,28,gd.po,,gd,,scottish gaelic,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ga.po,26,26,26,2,2,0,0,28,28,ga.po,,ga,,irish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fur.po,28,28,28,0,0,0,0,28,28,fur.po,,fur,,friulian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fr.po,28,28,28,0,0,0,0,28,28,fr.po,,fr,,french,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fi.po,28,28,28,0,0,0,0,28,28,fi.po,,fi,,finnish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fa.po,28,28,28,0,0,0,0,28,28,fa.po,,fa,,persian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/eu.po,28,28,28,0,0,0,0,28,28,eu.po,,eu,,basque,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/et.po,28,28,28,0,0,0,0,28,28,et.po,,et,,estonian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/es.po,28,28,28,0,0,0,0,28,28,es.po,,es,,spanish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/eo.po,28,28,28,0,0,0,0,28,28,eo.po,,eo,,esperanto,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/el.po,28,28,30,0,0,0,0,28,28,el.po,,el,,greek,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/de.po,28,28,28,0,0,0,0,28,28,de.po,,de,,german,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/da.po,28,28,28,0,0,0,0,28,28,da.po,,da,,danish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/cs.po,28,28,28,0,0,0,0,28,28,cs.po,,cs,,czech,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/crh.po,28,28,28,0,0,0,0,28,28,crh.po,,crh,,crimean turkish,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ca.po,28,28,28,0,0,0,0,28,28,ca.po,,ca,,catalan,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/br.po,26,26,26,2,2,0,0,28,28,br.po,,br,,breton,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/bn_in.po,28,28,28,0,0,0,0,28,28,bn_in.po,,bn,in,bangla,,india

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/bg.po,28,28,28,0,0,0,0,28,28,bg.po,,bg,,bulgarian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/be@latin.po,26,26,26,2,2,0,0,28,28,be@latin.po,latin,be,,belarusian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/be.po,28,28,36,0,0,0,0,28,28,be.po,,be,,belarusian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ast.po,28,28,28,0,0,0,0,28,28,ast.po,,ast,,asturian,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/as.po,28,28,30,0,0,0,0,28,28,as.po,,as,,assamese,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ar.po,26,26,30,2,2,0,0,28,28,ar.po,,ar,,arabic,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/an.po,28,28,28,0,0,0,0,28,28,an.po,,an,,aragonese,,

- xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/af.po,28,28,28,0,0,0,0,28,28,af.po,,af,,afrikaans,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ca.po,11,81,91,0,0,0,0,11,81,ca.po,,ca,,catalan,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/cs.po,11,81,70,0,0,0,0,11,81,cs.po,,cs,,czech,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/uk.po,11,81,73,0,0,0,0,11,81,uk.po,,uk,,ukrainian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sr@latin.po,11,81,68,0,0,0,0,11,81,sr@latin.po,latin,sr,,serbian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sq.po,11,81,100,0,0,0,0,11,81,sq.po,,sq,,albanian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/en_gb.po,11,81,81,0,0,0,0,11,81,en_gb.po,,en,gb,english,,united kingdom

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/kk.po,11,81,69,0,0,0,0,11,81,kk.po,,kk,,kazakh,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/tr.po,11,81,66,0,0,0,0,11,81,tr.po,,tr,,turkish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ar.po,11,81,63,0,0,0,0,11,81,ar.po,,ar,,arabic,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ja.po,11,81,11,0,0,0,0,11,81,ja.po,,ja,,japanese,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sl.po,11,81,75,0,0,0,0,11,81,sl.po,,sl,,slovenian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/he.po,11,81,66,0,0,0,0,11,81,he.po,,he,,hebrew,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pa.po,11,81,88,0,0,0,0,11,81,pa.po,,pa,,punjabi,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/de.po,11,81,74,0,0,0,0,11,81,de.po,,de,,german,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ast.po,11,81,94,0,0,0,0,11,81,ast.po,,ast,,asturian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/eu.po,11,81,69,0,0,0,0,11,81,eu.po,,eu,,basque,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/fr.po,11,81,107,0,0,0,0,11,81,fr.po,,fr,,french,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/gu.po,11,81,76,0,0,0,0,11,81,gu.po,,gu,,gujarati,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sv.po,11,81,75,0,0,0,0,11,81,sv.po,,sv,,swedish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pl.po,11,81,64,0,0,0,0,11,81,pl.po,,pl,,polish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_hk.po,11,81,11,0,0,0,0,11,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/or.po,11,81,82,0,0,0,0,11,81,or.po,,or,,odia,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/te.po,11,81,62,0,0,0,0,11,81,te.po,,te,,telugu,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/fi.po,11,81,56,0,0,0,0,11,81,fi.po,,fi,,finnish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_tw.po,11,81,11,0,0,0,0,11,81,zh_tw.po,,zh,tw,chinese,,taiwan

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nds.po,11,81,83,0,0,0,0,11,81,nds.po,,nds,,low german,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/be@latin.po,11,81,74,0,0,0,0,11,81,be@latin.po,latin,be,,belarusian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ps.po,11,81,92,0,0,0,0,11,81,ps.po,,ps,,pashto,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/crh.po,11,81,67,0,0,0,0,11,81,crh.po,,crh,,crimean turkish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/be.po,11,81,77,0,0,0,0,11,81,be.po,,be,,belarusian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/lv.po,11,81,70,0,0,0,0,11,81,lv.po,,lv,,latvian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/th.po,11,81,14,0,0,0,0,11,81,th.po,,th,,thai,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/id.po,11,81,79,0,0,0,0,11,81,id.po,,id,,indonesian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/es.po,11,81,96,0,0,0,0,11,81,es.po,,es,,spanish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nl.po,11,81,83,0,0,0,0,11,81,nl.po,,nl,,dutch,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/hu.po,11,81,67,0,0,0,0,11,81,hu.po,,hu,,hungarian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/da.po,11,81,81,0,0,0,0,11,81,da.po,,da,,danish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/an.po,11,81,94,0,0,0,0,11,81,an.po,,an,,aragonese,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pt_br.po,11,81,88,0,0,0,0,11,81,pt_br.po,,pt,br,portuguese,,brazil

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/bn_in.po,11,81,90,0,0,0,0,11,81,bn_in.po,,bn,in,bangla,,india

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/mr.po,11,81,79,0,0,0,0,11,81,mr.po,,mr,,marathi,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/hi.po,11,81,97,0,0,0,0,11,81,hi.po,,hi,,hindi,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/lt.po,11,81,57,0,0,0,0,11,81,lt.po,,lt,,lithuanian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/kn.po,11,81,63,0,0,0,0,11,81,kn.po,,kn,,kannada,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/vi.po,11,81,123,0,0,0,0,11,81,vi.po,,vi,,vietnamese,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nn.po,8,52,46,0,0,0,0,8,52,nn.po,,nn,,norwegian nynorsk,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ku.po,11,81,94,0,0,0,0,11,81,ku.po,,ku,,kurdish,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/as.po,11,81,78,0,0,0,0,11,81,as.po,,as,,assamese,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/eo.po,11,81,84,0,0,0,0,11,81,eo.po,,eo,,esperanto,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nb.po,11,81,73,0,0,0,0,11,81,nb.po,,nb,,norwegian bokmål,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/el.po,11,81,88,0,0,0,0,11,81,el.po,,el,,greek,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ta.po,11,81,65,0,0,0,0,11,81,ta.po,,ta,,tamil,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ro.po,11,81,78,0,0,0,0,11,81,ro.po,,ro,,romanian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/si.po,8,34,35,0,0,3,47,11,81,si.po,,si,,sinhala,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_cn.po,11,81,11,0,0,0,0,11,81,zh_cn.po,,zh,cn,chinese,,china

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ka.po,11,81,48,0,0,0,0,11,81,ka.po,,ka,,georgian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/csb.po,11,81,66,0,0,0,0,11,81,csb.po,,csb,,kashubian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/gl.po,11,81,91,0,0,0,0,11,81,gl.po,,gl,,galician,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sk.po,11,81,71,0,0,0,0,11,81,sk.po,,sk,,slovak,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/dz.po,8,52,21,0,0,0,0,8,52,dz.po,,dz,,dzongkha,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/it.po,11,81,86,0,0,0,0,11,81,it.po,,it,,italian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sr.po,11,81,68,0,0,0,0,11,81,sr.po,,sr,,serbian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/oc.po,5,20,29,0,0,6,61,11,81,oc.po,,oc,,occitan,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ml.po,11,81,50,0,0,0,0,11,81,ml.po,,ml,,malayalam,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ru.po,11,81,78,0,0,0,0,11,81,ru.po,,ru,,russian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pt.po,11,81,88,0,0,0,0,11,81,pt.po,,pt,,portuguese,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/et.po,11,81,59,0,0,0,0,11,81,et.po,,et,,estonian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ko.po,11,81,72,0,0,0,0,11,81,ko.po,,ko,,korean,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/bg.po,11,81,85,0,0,0,0,11,81,bg.po,,bg,,bulgarian,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/kg.po,11,81,55,0,0,0,0,11,81,kg.po,,kg,,kongo,,

- xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/af.po,10,78,84,0,0,1,3,11,81,af.po,,af,,afrikaans,,

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/bg.po,18,33,34,0,0,0,0,18,33,bg.po,,bg,,bulgarian,,

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/hu.po,11,22,21,2,4,5,7,18,33,hu.po,,hu,,hungarian,,

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/zh_cn.po,18,33,20,0,0,0,0,18,33,zh_cn.po,,zh,cn,chinese,,china

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/it.po,18,33,38,0,0,0,0,18,33,it.po,,it,,italian,,

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/tr.po,11,22,21,2,4,5,7,18,33,tr.po,,tr,,turkish,,

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/fr_fr.po,18,33,39,0,0,0,0,18,33,fr_fr.po,,fr,fr,french,,france

- xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/de_de.po,18,33,29,0,0,0,0,18,33,de_de.po,,de,de,german,,germany

- xfsprogs-4.19.0-4.fc30.src.rpm.stats.csv,po/pl.po,2701,23865,23840,0,0,0,0,2701,23865,pl.po,,pl,,polish,,

- xfsprogs-4.19.0-4.fc30.src.rpm.stats.csv,po/de.po,2346,20310,19623,0,0,0,0,2346,20310,de.po,,de,,german,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/bg.po,1093,3719,4757,0,0,0,0,1093,3719,bg.po,,bg,,bulgarian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/pt_br.po,1117,3673,4014,0,0,0,0,1117,3673,pt_br.po,,pt,br,portuguese,,brazil

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ky.po,590,1371,1517,0,0,102,536,692,1907,ky.po,,ky,,kyrgyz,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/gl.po,1125,3712,4051,0,0,0,0,1125,3712,gl.po,,gl,,galician,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/cs.po,1130,3736,3865,0,0,0,0,1130,3736,cs.po,,cs,,czech,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sq.po,362,896,987,0,0,0,0,362,896,sq.po,,sq,,albanian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/lt.po,1048,3524,3751,0,0,0,0,1048,3524,lt.po,,lt,,lithuanian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fr.po,1130,3736,3956,0,0,0,0,1130,3736,fr.po,,fr,,french,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fi.po,1130,3736,3327,0,0,0,0,1130,3736,fi.po,,fi,,finnish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sv.po,1130,3736,3601,0,0,0,0,1130,3736,sv.po,,sv,,swedish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ro.po,712,1971,2112,0,0,32,273,744,2244,ro.po,,ro,,romanian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ko.po,1130,3736,3654,0,0,0,0,1130,3736,ko.po,,ko,,korean,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/crh.po,693,1915,1908,1,6,0,0,694,1921,crh.po,,crh,,crimean turkish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/zh_tw.po,1003,3378,2253,0,0,0,0,1003,3378,zh_tw.po,,zh,tw,chinese,,taiwan

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/rw.po,76,81,82,142,657,194,399,412,1137,rw.po,,rw,,kinyarwanda,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/nl.po,1125,3712,3608,0,0,0,0,1125,3712,nl.po,,nl,,dutch,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/az.po,362,896,917,0,0,0,0,362,896,az.po,,az,,azerbaijani,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/eo.po,1093,3719,3763,0,0,0,0,1093,3719,eo.po,,eo,,esperanto,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/it.po,931,3139,3344,0,0,0,0,931,3139,it.po,,it,,italian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/es.po,1124,3724,4186,0,0,6,12,1130,3736,es.po,,es,,spanish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sr.po,457,1259,1281,0,0,0,0,457,1259,sr.po,,sr,,serbian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/el.po,1017,3435,3600,0,0,0,0,1017,3435,el.po,,el,,greek,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ru.po,1125,3712,3847,0,0,0,0,1125,3712,ru.po,,ru,,russian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ka.po,500,1388,1445,0,0,0,0,500,1388,ka.po,,ka,,georgian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sk.po,281,929,903,428,1331,408,1413,1117,3673,sk.po,,sk,,slovak,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/da.po,1130,3736,3631,0,0,0,0,1130,3736,da.po,,da,,danish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/tr.po,1130,3736,3711,0,0,0,0,1130,3736,tr.po,,tr,,turkish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ca.po,1130,3736,4018,0,0,0,0,1130,3736,ca.po,,ca,,catalan,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/hr.po,1125,3712,3831,0,0,0,0,1125,3712,hr.po,,hr,,croatian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/uk.po,1130,3736,3782,0,0,0,0,1130,3736,uk.po,,uk,,ukrainian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/id.po,1125,3712,3736,0,0,0,0,1125,3712,id.po,,id,,indonesian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/de.po,1125,3712,3613,0,0,0,0,1125,3712,de.po,,de,,german,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/pl.po,1130,3736,3631,0,0,0,0,1130,3736,pl.po,,pl,,polish,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/af.po,362,896,881,0,0,0,0,362,896,af.po,,af,,afrikaans,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fur.po,1095,3608,3906,0,0,0,0,1095,3608,fur.po,,fur,,friulian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/zh_cn.po,456,998,684,406,1609,268,1129,1130,3736,zh_cn.po,,zh,cn,chinese,,china

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/en_gb.po,366,1040,1061,42,119,15,36,423,1195,en_gb.po,,en,gb,english,,united kingdom

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/hu.po,1125,3712,3722,0,0,0,0,1125,3712,hu.po,,hu,,hungarian,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/vi.po,1093,3719,5452,0,0,0,0,1093,3719,vi.po,,vi,,vietnamese,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ja.po,937,3068,2313,19,96,38,167,994,3331,ja.po,,ja,,japanese,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/nb.po,134,179,172,4,13,528,1629,666,1821,nb.po,,nb,,norwegian bokmål,,

- xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sl.po,943,3114,3268,0,0,0,0,943,3114,sl.po,,sl,,slovenian,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/cs.po,134,1130,1130,7,67,20,195,161,1392,cs.po,,cs,,czech,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/de.po,159,1378,1309,0,0,2,14,161,1392,de.po,,de,,german,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/fr.po,146,1259,1449,0,0,15,133,161,1392,fr.po,,fr,,french,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/it.po,156,1360,1583,0,0,5,32,161,1392,it.po,,it,,italian,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/pl.po,156,1360,1303,0,0,5,32,161,1392,pl.po,,pl,,polish,,

- xz-5.2.4-5.fc30.src.rpm.stats.csv,po/vi.po,156,1360,1920,0,0,5,32,161,1392,vi.po,,vi,,vietnamese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,104,448,385,0,0,0,0,104,448,he.po,,he,,hebrew,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,104,452,435,0,0,0,0,104,452,bn_in.po,,bn,in,bangla,,india

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,74,351,344,0,0,0,0,74,351,de.po,,de,,german,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uz.po,250,570,548,0,0,99,465,349,1035,uz.po,,uz,,uzbek,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,239,957,734,0,0,0,0,239,957,ka.po,,ka,,georgian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,74,351,301,0,0,0,0,74,351,lv.po,,lv,,latvian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,74,351,108,0,0,0,0,74,351,zh_tw.po,,zh,tw,chinese,,taiwan

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,74,351,379,0,0,0,0,74,351,fur.po,,fur,,friulian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,74,351,373,0,0,0,0,74,351,pt_br.po,,pt,br,portuguese,,brazil

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,70,293,278,0,0,3,55,73,348,is.po,,is,,icelandic,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,277,780,723,19,88,18,39,314,907,af.po,,af,,afrikaans,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/li.po,23,51,43,47,96,78,459,148,606,li.po,,li,,limburgish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,104,452,353,0,0,0,0,104,452,ta.po,,ta,,tamil,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,74,351,311,0,0,0,0,74,351,ru.po,,ru,,russian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,73,348,276,0,0,0,0,73,348,ml.po,,ml,,malayalam,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,99,430,351,0,0,5,18,104,448,ar.po,,ar,,arabic,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,74,351,321,0,0,0,0,74,351,nl.po,,nl,,dutch,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,38,92,84,45,80,65,434,148,606,az.po,,az,,azerbaijani,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,73,172,170,34,74,41,360,148,606,ms.po,,ms,,malay,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,104,452,363,0,0,0,0,104,452,te.po,,te,,telugu,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,121,506,215,0,0,0,0,121,506,km.po,,km,,khmer,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,349,1035,1130,0,0,0,0,349,1035,sq.po,,sq,,albanian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,250,570,548,0,0,99,465,349,1035,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,74,351,401,0,0,0,0,74,351,ca.po,,ca,,catalan,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,104,448,473,0,0,0,0,104,448,pt.po,,pt,,portuguese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,73,348,113,0,0,0,0,73,348,zh_cn.po,,zh,cn,chinese,,china

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,104,448,420,0,0,0,0,104,448,fa.po,,fa,,persian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,73,348,316,0,0,0,0,73,348,nb.po,,nb,,norwegian bokmål,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,156,268,307,0,0,193,767,349,1035,ps.po,,ps,,pashto,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,104,452,484,0,0,0,0,104,452,hi.po,,hi,,hindi,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nso.po,55,110,169,33,67,60,429,148,606,nso.po,,nso,,northern sotho,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,65,155,166,6,29,51,323,122,507,ga.po,,ga,,irish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,183,792,800,0,0,0,0,183,792,en_ca.po,,en,ca,english,,canada

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,74,351,304,0,0,0,0,74,351,da.po,,da,,danish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,74,351,380,0,0,0,0,74,351,gl.po,,gl,,galician,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,235,941,953,4,16,0,0,239,957,mg.po,,mg,,malagasy,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,67,284,257,0,0,0,0,67,284,sk.po,,sk,,slovak,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,74,351,281,0,0,0,0,74,351,fi.po,,fi,,finnish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,346,1032,964,0,0,3,3,349,1035,be@latin.po,latin,be,,belarusian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,60,84,124,0,0,190,925,250,1009,si.po,,si,,sinhala,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,217,571,659,0,0,132,464,349,1035,mai.po,,mai,,maithili,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,104,448,448,0,0,0,0,104,448,en_gb.po,,en,gb,english,,united kingdom

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/la.po,13,13,24,0,0,336,1022,349,1035,la.po,,la,,latin,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,74,351,293,0,0,0,0,74,351,cs.po,,cs,,czech,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,349,1035,941,0,0,0,0,349,1035,nn.po,,nn,,norwegian nynorsk,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,104,452,418,0,0,0,0,104,452,or.po,,or,,odia,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,357,1094,1162,0,0,0,0,357,1094,bn.po,,bn,,bangla,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,104,452,141,0,0,0,0,104,452,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,151,597,501,0,0,0,0,151,597,xh.po,,xh,,xhosa,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,74,351,367,0,0,0,0,74,351,ro.po,,ro,,romanian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/br.po,100,176,215,22,42,235,876,357,1094,br.po,,br,,breton,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,74,351,458,0,0,0,0,74,351,vi.po,,vi,,vietnamese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,67,284,378,0,0,0,0,67,284,gd.po,,gd,,scottish gaelic,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,74,351,386,0,0,0,0,74,351,es.po,,es,,spanish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,74,351,375,0,0,0,0,74,351,it.po,,it,,italian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ks.po,212,753,787,32,90,105,192,349,1035,ks.po,,ks,,kashmiri,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/crh.po,357,1094,961,0,0,0,0,357,1094,crh.po,,crh,,crimean turkish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,104,448,436,0,0,0,0,104,448,tg.po,,tg,,tajik,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,74,351,305,0,0,0,0,74,351,hu.po,,hu,,hungarian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,74,351,303,0,0,0,0,74,351,hr.po,,hr,,croatian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,74,351,278,0,0,0,0,74,351,tr.po,,tr,,turkish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,122,507,397,0,0,0,0,122,507,ug.po,,ug,,uyghur,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,239,957,1240,0,0,0,0,239,957,wa.po,,wa,,walloon,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,67,284,336,0,0,0,0,67,284,ca@valencia.po,valencia,ca,,catalan,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,121,506,405,0,0,0,0,121,506,ky.po,,ky,,kyrgyz,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,72,331,122,0,0,1,17,73,348,ja.po,,ja,,japanese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,104,452,457,0,0,0,0,104,452,pa.po,,pa,,punjabi,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,67,284,257,0,0,0,0,67,284,eo.po,,eo,,esperanto,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,104,448,370,0,0,0,0,104,448,eu.po,,eu,,basque,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,119,502,521,0,0,0,0,119,502,mk.po,,mk,,macedonian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,238,956,989,0,0,0,0,238,956,ku.po,,ku,,kurdish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,74,351,277,0,0,0,0,74,351,lt.po,,lt,,lithuanian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,104,452,378,0,0,0,0,104,452,mr.po,,mr,,marathi,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,104,448,420,0,0,0,0,104,448,gu.po,,gu,,gujarati,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,239,957,501,0,0,0,0,239,957,dz.po,,dz,,dzongkha,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,74,351,388,0,0,0,0,74,351,fr.po,,fr,,french,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,104,448,495,0,0,0,0,104,448,an.po,,an,,aragonese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,49,104,99,0,0,55,344,104,448,kk.po,,kk,,kazakh,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,74,351,286,0,0,0,0,74,351,ko.po,,ko,,korean,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,104,452,389,0,0,0,0,104,452,bs.po,,bs,,bosnian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,74,351,322,0,0,0,0,74,351,sl.po,,sl,,slovenian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,238,956,964,0,0,0,0,238,956,cy.po,,cy,,welsh,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,38,92,90,45,80,65,434,148,606,mn.po,,mn,,mongolian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,67,284,269,0,0,0,0,67,284,ne.po,,ne,,nepali,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,74,351,317,0,0,0,0,74,351,sv.po,,sv,,swedish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,23,51,50,46,90,79,465,148,606,am.po,,am,,amharic,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,122,507,372,0,0,0,0,122,507,et.po,,et,,estonian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zu.po,38,92,85,45,80,65,434,148,606,zu.po,,zu,,zulu,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,74,351,315,0,0,0,0,74,351,pl.po,,pl,,polish,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,104,452,437,0,0,0,0,104,452,as.po,,as,,assamese,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,115,488,512,0,0,0,0,115,488,ast.po,,ast,,asturian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,104,448,390,0,0,0,0,104,448,sr@latin.po,latin,sr,,serbian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,122,507,190,0,0,0,0,122,507,th.po,,th,,thai,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,104,448,358,0,0,0,0,104,448,be.po,,be,,belarusian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,160,316,294,0,0,0,0,160,316,nds.po,,nds,,low german,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,20,26,29,83,481,48,90,151,597,rw.po,,rw,,kinyarwanda,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,104,448,366,0,0,0,0,104,448,uk.po,,uk,,ukrainian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,67,284,289,0,0,0,0,67,284,bg.po,,bg,,bulgarian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,74,351,319,0,0,0,0,74,351,id.po,,id,,indonesian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,74,351,321,0,0,0,0,74,351,sr.po,,sr,,serbian,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,104,452,374,0,0,0,0,104,452,kn.po,,kn,,kannada,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,103,442,499,0,0,1,6,104,448,oc.po,,oc,,occitan,,

- yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,74,351,358,0,0,0,0,74,351,el.po,,el,,greek,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,59,81,88,0,0,0,0,59,81,he.po,,he,,hebrew,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,99,249,249,0,0,0,0,99,249,bn_in.po,,bn,in,bangla,,india

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,62,85,86,0,0,0,0,62,85,de.po,,de,,german,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/uz.po,17,19,20,0,0,75,219,92,238,uz.po,,uz,,uzbek,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,80,213,205,0,0,0,0,80,213,ka.po,,ka,,georgian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,62,85,75,0,0,0,0,62,85,lv.po,,lv,,latvian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,62,85,58,0,0,0,0,62,85,zh_tw.po,,zh,tw,chinese,,taiwan

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,62,85,87,0,0,0,0,62,85,fur.po,,fur,,friulian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,62,85,87,0,0,0,0,62,85,pt_br.po,,pt,br,portuguese,,brazil

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,62,85,83,0,0,0,0,62,85,is.po,,is,,icelandic,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,59,81,84,0,0,0,0,59,81,af.po,,af,,afrikaans,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,59,81,79,0,0,0,0,59,81,ta.po,,ta,,tamil,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,62,85,82,0,0,0,0,62,85,ru.po,,ru,,russian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,62,85,78,0,0,0,0,62,85,ml.po,,ml,,malayalam,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,58,80,79,0,0,0,0,58,80,ar.po,,ar,,arabic,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,62,85,85,0,0,0,0,62,85,nl.po,,nl,,dutch,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,58,80,74,0,0,0,0,58,80,te.po,,te,,telugu,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,33,41,41,0,0,0,0,33,41,en@shaw.po,shaw,en,,english,shavian,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,56,78,62,0,0,1,0,57,78,km.po,,km,,khmer,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,92,238,242,0,0,0,0,92,238,sq.po,,sq,,albanian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,17,19,20,0,0,75,219,92,238,uz@cyrillic.po,cyrillic,uz,,uzbek,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,59,81,91,0,0,0,0,59,81,ca.po,,ca,,catalan,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,59,81,87,0,0,0,0,59,81,pt.po,,pt,,portuguese,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,59,81,54,0,0,0,0,59,81,zh_cn.po,,zh,cn,chinese,,china

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,59,81,87,0,0,0,0,59,81,fa.po,,fa,,persian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,59,81,78,0,0,0,0,59,81,nb.po,,nb,,norwegian bokmål,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,59,81,92,0,0,0,0,59,81,hi.po,,hi,,hindi,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,99,249,275,0,0,0,0,99,249,ga.po,,ga,,irish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,92,238,238,0,0,0,0,92,238,en_ca.po,,en,ca,english,,canada

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,62,85,83,0,0,0,0,62,85,da.po,,da,,danish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,62,85,88,0,0,0,0,62,85,gl.po,,gl,,galician,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,80,213,124,0,0,0,0,80,213,mg.po,,mg,,malagasy,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,59,81,82,0,0,0,0,59,81,sk.po,,sk,,slovak,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,62,85,73,0,0,0,0,62,85,fi.po,,fi,,finnish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,92,238,239,0,0,0,0,92,238,be@latin.po,latin,be,,belarusian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,25,26,27,0,0,32,54,57,80,si.po,,si,,sinhala,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,83,216,216,0,0,16,33,99,249,mai.po,,mai,,maithili,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,59,81,81,0,0,0,0,59,81,en_gb.po,,en,gb,english,,united kingdom

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,62,85,80,0,0,0,0,62,85,cs.po,,cs,,czech,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,92,238,228,0,0,0,0,92,238,nn.po,,nn,,norwegian nynorsk,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,99,249,254,0,0,0,0,99,249,or.po,,or,,odia,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,80,213,215,0,0,0,0,80,213,bn.po,,bn,,bangla,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,59,81,55,0,0,0,0,59,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,62,85,87,0,0,0,0,62,85,ro.po,,ro,,romanian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,59,81,111,0,0,0,0,59,81,vi.po,,vi,,vietnamese,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,59,81,96,0,0,0,0,59,81,gd.po,,gd,,scottish gaelic,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,62,85,90,0,0,0,0,62,85,es.po,,es,,spanish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,62,85,90,0,0,0,0,62,85,it.po,,it,,italian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,59,81,85,0,0,0,0,59,81,tg.po,,tg,,tajik,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,62,85,75,0,0,0,0,62,85,hu.po,,hu,,hungarian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,62,85,80,0,0,0,0,62,85,hr.po,,hr,,croatian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,62,85,81,0,0,0,0,62,85,tr.po,,tr,,turkish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,59,81,89,0,0,0,0,59,81,ug.po,,ug,,uyghur,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,16,19,24,1,3,57,177,74,199,wa.po,,wa,,walloon,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,59,81,91,0,0,0,0,59,81,ca@valencia.po,valencia,ca,,catalan,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,56,78,80,2,2,0,0,58,80,ky.po,,ky,,kyrgyz,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,59,81,55,0,0,0,0,59,81,ja.po,,ja,,japanese,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,59,81,83,0,0,0,0,59,81,pa.po,,pa,,punjabi,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,59,81,81,0,0,0,0,59,81,eo.po,,eo,,esperanto,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,59,81,76,0,0,0,0,59,81,eu.po,,eu,,basque,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,92,238,242,0,0,0,0,92,238,mk.po,,mk,,macedonian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,62,85,76,0,0,0,0,62,85,lt.po,,lt,,lithuanian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,99,249,248,0,0,0,0,99,249,mr.po,,mr,,marathi,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,99,249,255,0,0,0,0,99,249,gu.po,,gu,,gujarati,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,92,238,170,0,0,0,0,92,238,dz.po,,dz,,dzongkha,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,62,85,92,0,0,0,0,62,85,fr.po,,fr,,french,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,42,51,52,0,0,17,30,59,81,kk.po,,kk,,kazakh,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,62,85,82,0,0,0,0,62,85,ko.po,,ko,,korean,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,59,81,75,0,0,0,0,59,81,bs.po,,bs,,bosnian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,62,85,91,0,0,0,0,62,85,sl.po,,sl,,slovenian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,80,213,214,0,0,0,0,80,213,cy.po,,cy,,welsh,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,80,213,224,0,0,0,0,80,213,mn.po,,mn,,mongolian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,55,70,64,1,3,3,8,59,81,ne.po,,ne,,nepali,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,62,85,84,0,0,0,0,62,85,sv.po,,sv,,swedish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,59,81,68,0,0,0,0,59,81,et.po,,et,,estonian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,62,85,82,0,0,0,0,62,85,pl.po,,pl,,polish,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,59,81,81,0,0,0,0,59,81,as.po,,as,,assamese,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,52,70,76,0,0,0,0,52,70,ast.po,,ast,,asturian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,59,81,74,0,0,0,0,59,81,sr@latin.po,latin,sr,,serbian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,58,80,56,0,0,0,0,58,80,th.po,,th,,thai,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,62,85,79,0,0,0,0,62,85,be.po,,be,,belarusian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,6,6,6,8,18,60,175,74,199,rw.po,,rw,,kinyarwanda,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,58,80,79,0,0,0,0,58,80,uk.po,,uk,,ukrainian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,59,81,82,0,0,0,0,59,81,bg.po,,bg,,bulgarian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,62,85,86,0,0,0,0,62,85,id.po,,id,,indonesian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,62,85,78,0,0,0,0,62,85,sr.po,,sr,,serbian,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,58,80,79,0,0,0,0,58,80,kn.po,,kn,,kannada,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,59,81,91,0,0,0,0,59,81,oc.po,,oc,,occitan,,

- yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,62,85,91,0,0,0,0,62,85,el.po,,el,,greek,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,259,2379,1960,0,0,0,0,259,2379,uk.po,,uk,,ukrainian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,347,2992,2576,0,0,0,0,347,2992,da.po,,da,,danish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,339,2899,1208,0,0,0,0,339,2899,ja.po,,ja,,japanese,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,342,2972,2902,5,20,0,0,347,2992,de.po,,de,,german,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,259,2379,2602,0,0,0,0,259,2379,ca.po,,ca,,catalan,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,347,2992,2578,0,0,0,0,347,2992,sv.po,,sv,,swedish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,347,2992,3400,0,0,0,0,347,2992,pt_br.po,,pt,br,portuguese,,brazil

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,338,2855,805,1,44,0,0,339,2899,zh_cn.po,,zh,cn,chinese,,china

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,325,2650,2928,0,0,14,249,339,2899,gl.po,,gl,,galician,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,347,2992,3503,0,0,0,0,347,2992,fr.po,,fr,,french,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,259,2379,2133,0,0,0,0,259,2379,ru.po,,ru,,russian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,347,2992,3444,0,0,0,0,347,2992,es.po,,es,,spanish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,98,234,254,0,0,155,2091,253,2325,oc.po,,oc,,occitan,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,347,2992,2568,0,0,0,0,347,2992,hu.po,,hu,,hungarian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,347,2992,2588,0,0,0,0,347,2992,pl.po,,pl,,polish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,257,2349,2359,0,0,0,0,257,2349,en_gb.po,,en,gb,english,,united kingdom

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,259,2379,1580,0,0,0,0,259,2379,fi.po,,fi,,finnish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,35,70,70,0,0,224,2309,259,2379,sl.po,,sl,,slovenian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,347,2992,2998,0,0,0,0,347,2992,el.po,,el,,greek,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,347,2992,2882,0,0,0,0,347,2992,cs.po,,cs,,czech,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,253,2325,1920,0,0,0,0,253,2325,eu.po,,eu,,basque,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,248,2309,2326,0,0,0,0,248,2309,bg.po,,bg,,bulgarian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,118,427,467,0,0,0,0,118,427,cy.po,,cy,,welsh,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,196,891,865,0,0,0,0,196,891,ru.po,,ru,,russian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,80,256,227,21,71,11,67,112,394,mn.po,,mn,,mongolian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,196,891,847,0,0,0,0,196,891,nb.po,,nb,,norwegian bokmål,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,136,592,667,0,0,0,0,136,592,bn.po,,bn,,bangla,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,199,896,255,0,0,0,0,199,896,zh_cn.po,,zh,cn,chinese,,china

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,27,88,82,0,0,134,598,161,686,af.po,,af,,afrikaans,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,82,272,251,20,70,10,52,112,394,az.po,,az,,azerbaijani,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,130,559,568,0,0,0,0,130,559,en_ca.po,,en,ca,english,,canada

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,199,896,923,0,0,0,0,199,896,pl.po,,pl,,polish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,82,210,217,0,0,53,372,135,582,ps.po,,ps,,pashto,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,159,674,613,0,0,0,0,159,674,nn.po,,nn,,norwegian nynorsk,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,199,896,879,0,0,0,0,199,896,sr@latin.po,latin,sr,,serbian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,199,896,1130,0,0,0,0,199,896,gl.po,,gl,,galician,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,199,896,861,0,0,0,0,199,896,be.po,,be,,belarusian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,199,896,869,0,0,0,0,199,896,cs.po,,cs,,czech,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,175,834,839,0,0,0,0,175,834,he.po,,he,,hebrew,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,80,335,296,0,0,116,556,196,891,kk.po,,kk,,kazakh,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,199,896,1076,0,0,0,0,199,896,it.po,,it,,italian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,199,896,790,0,0,0,0,199,896,lt.po,,lt,,lithuanian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,199,896,837,0,0,0,0,199,896,hu.po,,hu,,hungarian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,175,834,1197,0,0,0,0,175,834,vi.po,,vi,,vietnamese,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,187,841,870,0,0,0,0,187,841,as.po,,as,,assamese,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,199,896,842,0,0,0,0,199,896,nl.po,,nl,,dutch,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,196,891,1144,0,0,0,0,196,891,ca@valencia.po,valencia,ca,,catalan,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,159,674,846,0,0,0,0,159,674,bn_in.po,,bn,in,bangla,,india

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,135,582,541,0,0,0,0,135,582,be@latin.po,latin,be,,belarusian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,159,674,658,0,0,0,0,159,674,ar.po,,ar,,arabic,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,178,775,712,0,0,0,0,178,775,ug.po,,ug,,uyghur,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,199,896,756,0,0,0,0,199,896,eu.po,,eu,,basque,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,199,896,879,0,0,0,0,199,896,sr.po,,sr,,serbian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,174,751,685,0,0,0,0,174,751,uk.po,,uk,,ukrainian,,

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

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,167,680,531,23,144,9,72,199,896,fi.po,,fi,,finnish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,199,896,1155,0,0,0,0,199,896,es.po,,es,,spanish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,89,329,345,0,0,47,260,136,589,ga.po,,ga,,irish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,199,896,805,0,0,0,0,199,896,sv.po,,sv,,swedish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,34,99,78,295,112,394,mi.po,,mi,,maori,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,36,76,86,0,0,142,699,178,775,tg.po,,tg,,tajik,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,9,13,12,91,341,12,40,112,394,rw.po,,rw,,kinyarwanda,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,171,742,833,0,0,0,0,171,742,hi.po,,hi,,hindi,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,196,891,1212,0,0,0,0,196,891,oc.po,,oc,,occitan,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,190,877,846,0,0,0,0,190,877,bs.po,,bs,,bosnian,,

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

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,34,70,70,16,50,62,274,112,394,am.po,,am,,amharic,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,116,421,317,0,0,4,120,120,541,ka.po,,ka,,georgian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,135,582,559,0,0,0,0,135,582,mr.po,,mr,,marathi,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,199,896,845,0,0,0,0,199,896,id.po,,id,,indonesian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,199,896,986,0,0,0,0,199,896,el.po,,el,,greek,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,196,891,913,0,0,0,0,196,891,en_gb.po,,en,gb,english,,united kingdom

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,196,891,1062,0,0,0,0,196,891,pt.po,,pt,,portuguese,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,120,541,643,0,0,0,0,120,541,mg.po,,mg,,malagasy,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,199,896,920,0,0,0,0,199,896,sk.po,,sk,,slovak,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,199,896,803,0,0,0,0,199,896,ko.po,,ko,,korean,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,130,559,586,0,0,0,0,130,559,si.po,,si,,sinhala,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,174,751,942,0,0,0,0,174,751,bg.po,,bg,,bulgarian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,199,896,835,0,0,0,0,199,896,de.po,,de,,german,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,199,896,1127,0,0,0,0,199,896,fur.po,,fur,,friulian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,142,612,699,0,0,0,0,142,612,ast.po,,ast,,asturian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,199,896,789,0,0,0,0,199,896,lv.po,,lv,,latvian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,129,554,267,0,0,0,0,129,554,dz.po,,dz,,dzongkha,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,128,551,581,0,0,6,28,134,579,mai.po,,mai,,maithili,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,159,674,690,0,0,0,0,159,674,or.po,,or,,odia,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,178,775,644,0,0,0,0,178,775,ta.po,,ta,,tamil,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,199,896,823,0,0,0,0,199,896,hr.po,,hr,,croatian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,135,582,598,0,0,0,0,135,582,mk.po,,mk,,macedonian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,178,775,803,0,0,0,0,178,775,fa.po,,fa,,persian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,130,559,564,0,0,0,0,130,559,ne.po,,ne,,nepali,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,199,896,793,0,0,0,0,199,896,tr.po,,tr,,turkish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,199,896,272,0,0,0,0,199,896,zh_tw.po,,zh,tw,chinese,,taiwan

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,199,896,1000,0,0,0,0,199,896,ro.po,,ro,,romanian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,187,841,251,0,0,0,0,187,841,zh_hk.po,,zh,hk,chinese,,hong kong sar china

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,55,139,119,34,125,23,130,112,394,is.po,,is,,icelandic,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,135,582,701,0,0,0,0,135,582,sq.po,,sq,,albanian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,199,896,1245,0,0,0,0,199,896,fr.po,,fr,,french,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,199,896,885,0,0,0,0,199,896,sl.po,,sl,,slovenian,,

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

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,159,674,694,0,0,0,0,159,674,gu.po,,gu,,gujarati,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,174,751,802,0,0,0,0,174,751,pa.po,,pa,,punjabi,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,171,823,260,2,9,2,2,175,834,ja.po,,ja,,japanese,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,199,896,783,0,0,0,0,199,896,ml.po,,ml,,malayalam,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,171,742,640,0,0,0,0,171,742,te.po,,te,,telugu,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,135,582,535,0,0,0,0,135,582,kn.po,,kn,,kannada,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,180,783,639,0,0,0,0,180,783,et.po,,et,,estonian,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,142,612,613,0,0,0,0,142,612,en@shaw.po,shaw,en,,english,shavian,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,199,896,753,0,0,0,0,199,896,da.po,,da,,danish,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,196,891,322,0,0,0,0,196,891,th.po,,th,,thai,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,196,891,1145,0,0,0,0,196,891,ca.po,,ca,,catalan,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,82,272,245,20,70,10,52,112,394,ms.po,,ms,,malay,,

- zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,,pt,br,portuguese,,brazil

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

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sr@latin.po,3,27,23,0,0,0,0,3,27,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/oc.po,3,27,32,0,0,0,0,3,27,oc.po,,oc,,occitan,,,oc

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/da.po,3,27,21,0,0,0,0,3,27,da.po,,da,,danish,,,da

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/es.po,3,27,27,0,0,0,0,3,27,es.po,,es,,spanish,,,es

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/gl.po,3,27,39,0,0,0,0,3,27,gl.po,,gl,,galician,,,gl

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ro.po,3,27,28,0,0,0,0,3,27,ro.po,,ro,,romanian,,,ro

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/de.po,3,27,26,0,0,0,0,3,27,de.po,,de,,german,,,de

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/id.po,3,27,25,0,0,0,0,3,27,id.po,,id,,indonesian,,,id

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sv.po,3,27,24,0,0,0,0,3,27,sv.po,,sv,,swedish,,,sv

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/is.po,3,27,28,0,0,0,0,3,27,is.po,,is,,icelandic,,,is

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/lv.po,3,27,25,0,0,0,0,3,27,lv.po,,lv,,latvian,,,lv

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/el.po,3,27,29,0,0,0,0,3,27,el.po,,el,,greek,,,el

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/hr.po,3,27,24,0,0,0,0,3,27,hr.po,,hr,,croatian,,,hr

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ca.po,3,27,40,0,0,0,0,3,27,ca.po,,ca,,catalan,,,ca

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pt_br.po,3,27,29,0,0,0,0,3,27,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/zh_cn.po,3,27,7,0,0,0,0,3,27,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/tr.po,3,27,26,0,0,0,0,3,27,tr.po,,tr,,turkish,,,tr

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pa.po,3,27,35,0,0,0,0,3,27,pa.po,,pa,,punjabi,,,pa

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sk.po,3,27,26,0,0,0,0,3,27,sk.po,,sk,,slovak,,,sk

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/zh_tw.po,3,27,6,0,0,0,0,3,27,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/pl.po,3,27,23,0,0,0,0,3,27,pl.po,,pl,,polish,,,pl

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/hu.po,3,27,22,0,0,0,0,3,27,hu.po,,hu,,hungarian,,,hu

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sl.po,3,27,24,0,0,0,0,3,27,sl.po,,sl,,slovenian,,,sl

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/lt.po,3,27,24,0,0,0,0,3,27,lt.po,,lt,,lithuanian,,,lt

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fr.po,3,27,32,0,0,0,0,3,27,fr.po,,fr,,french,,,fr

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ko.po,3,27,19,0,0,0,0,3,27,ko.po,,ko,,korean,,,ko

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/sr.po,3,27,23,0,0,0,0,3,27,sr.po,,sr,,serbian,,,sr

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/it.po,3,27,37,0,0,0,0,3,27,it.po,,it,,italian,,,it

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/cs.po,3,27,22,0,0,0,0,3,27,cs.po,,cs,,czech,,,cs

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fur.po,3,27,32,0,0,0,0,3,27,fur.po,,fur,,friulian,,,fur

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/fi.po,3,27,19,0,0,0,0,3,27,fi.po,,fi,,finnish,,,fi

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/ru.po,3,27,24,0,0,0,0,3,27,ru.po,,ru,,russian,,,ru

+ abattis-cantarell-fonts-0.111-2.fc30.src.rpm.stats.csv,appstream/nl.po,3,27,27,0,0,0,0,3,27,nl.po,,nl,,dutch,,,nl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,390,3230,390,3230,zu.po,,zu,,zulu,,,zu

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,476,3969,1335,0,0,0,0,476,3969,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,1,2,1,0,0,475,3967,476,3969,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,476,3969,1413,0,0,0,0,476,3969,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,390,3230,390,3230,xh.po,,xh,,xhosa,,,xh

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,390,3230,390,3230,wo.po,,wo,,wolof,,,wo

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/vi.po,7,24,45,0,0,469,3945,476,3969,vi.po,,vi,,vietnamese,,,vi

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,390,3230,390,3230,uz.po,,uz,,uzbek,,,uz

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,476,3969,476,3969,ur.po,,ur,,urdu,,,ur

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/uk.po,476,3969,4321,0,0,0,0,476,3969,uk.po,,uk,,ukrainian,,,uk

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tr.po,189,1319,1117,0,0,287,2650,476,3969,tr.po,,tr,,turkish,,,tr

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,390,3230,390,3230,tl.po,,tl,,tagalog,,,tl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/th.po,143,1204,587,0,0,333,2765,476,3969,th.po,,th,,thai,,,th

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/tg.po,4,10,11,0,0,472,3959,476,3969,tg.po,,tg,,tajik,,,tg

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/te.po,341,2564,2189,0,0,135,1405,476,3969,te.po,,te,,telugu,,,te

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ta.po,342,2566,2293,0,0,134,1403,476,3969,ta.po,,ta,,tamil,,,ta

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sv.po,476,3969,3778,0,0,0,0,476,3969,sv.po,,sv,,swedish,,,sv

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,1,1,0,0,475,3968,476,3969,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sr.po,410,3343,3379,0,0,66,626,476,3969,sr.po,,sr,,serbian,,,sr

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sq.po,476,3969,4685,0,0,0,0,476,3969,sq.po,,sq,,albanian,,,sq

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,390,3230,390,3230,sl.po,,sl,,slovenian,,,sl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/sk.po,316,2414,2332,0,0,160,1555,476,3969,sk.po,,sk,,slovak,,,sk

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,390,3230,390,3230,si.po,,si,,sinhala,,,si

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,390,3230,390,3230,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ru.po,476,3969,3808,0,0,0,0,476,3969,ru.po,,ru,,russian,,,ru

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,390,3230,390,3230,ro.po,,ro,,romanian,,,ro

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,476,3969,4511,0,0,0,0,476,3969,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pt.po,183,1321,1518,14,126,279,2522,476,3969,pt.po,,pt,,portuguese,,,pt

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pl.po,476,3969,3953,0,0,0,0,476,3969,pl.po,,pl,,polish,,,pl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/pa.po,284,2105,2429,0,0,192,1864,476,3969,pa.po,,pa,,punjabi,,,pa

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/or.po,340,2546,2653,0,0,136,1423,476,3969,or.po,,or,,odia,,,or

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,390,3230,390,3230,nso.po,,nso,,northern sotho,,,nso

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,390,3230,390,3230,no.po,,no,,norwegian,,,no

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nn.po,4,18,19,0,0,472,3951,476,3969,nn.po,,nn,,norwegian nynorsk,,,nn

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nl.po,476,3969,4192,0,0,0,0,476,3969,nl.po,,nl,,dutch,,,nl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,390,3230,390,3230,ne.po,,ne,,nepali,,,ne

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,475,3968,476,3969,nds.po,,nds,,low german,,,nds

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/nb.po,56,242,245,0,0,420,3727,476,3969,nb.po,,nb,,norwegian bokmål,,,nb

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,390,3230,390,3230,my.po,,my,,burmese,,,my

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,390,3230,390,3230,ms.po,,ms,,malay,,,ms

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mr.po,340,2563,2428,2,7,134,1399,476,3969,mr.po,,mr,,marathi,,,mr

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,390,3230,390,3230,mn.po,,mn,,mongolian,,,mn

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ml.po,342,2549,2040,1,5,133,1415,476,3969,ml.po,,ml,,malayalam,,,ml

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,390,3230,390,3230,mk.po,,mk,,macedonian,,,mk

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,390,3230,390,3230,mg.po,,mg,,malagasy,,,mg

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,390,3230,390,3230,mai.po,,mai,,maithili,,,mai

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lv.po,19,64,55,0,0,457,3905,476,3969,lv.po,,lv,,latvian,,,lv

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lt.po,476,3969,3442,0,0,0,0,476,3969,lt.po,,lt,,lithuanian,,,lt

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,390,3230,390,3230,lo.po,,lo,,lao,,,lo

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,390,3230,390,3230,la.po,,la,,latin,,,la

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,390,3230,390,3230,ky.po,,ky,,kyrgyz,,,ky

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,390,3230,390,3230,ku.po,,ku,,kurdish,,,ku

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,390,3230,390,3230,ks.po,,ks,,kashmiri,,,ks

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ko.po,368,2835,2449,0,0,108,1134,476,3969,ko.po,,ko,,korean,,,ko

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/kn.po,341,2564,2358,0,0,135,1405,476,3969,kn.po,,kn,,kannada,,,kn

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/km.po,41,303,97,0,0,435,3666,476,3969,km.po,,km,,khmer,,,km

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/kk.po,11,13,16,0,0,465,3956,476,3969,kk.po,,kk,,kazakh,,,kk

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ka.po,17,64,57,0,0,459,3905,476,3969,ka.po,,ka,,georgian,,,ka

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ja.po,476,3969,1407,0,0,0,0,476,3969,ja.po,,ja,,japanese,,,ja

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/it.po,476,3969,4384,0,0,0,0,476,3969,it.po,,it,,italian,,,it

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,390,3230,390,3230,is.po,,is,,icelandic,,,is

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,390,3230,390,3230,ilo.po,,ilo,,iloko,,,ilo

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/id.po,55,363,341,0,0,421,3606,476,3969,id.po,,id,,indonesian,,,id

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ia.po,83,567,691,0,0,393,3402,476,3969,ia.po,,ia,,interlingua,,,ia

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,390,3230,390,3230,hy.po,,hy,,armenian,,,hy

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hu.po,476,3969,3981,0,0,0,0,476,3969,hu.po,,hu,,hungarian,,,hu

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,390,3230,390,3230,hr.po,,hr,,croatian,,,hr

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/hi.po,340,2546,3067,0,0,136,1423,476,3969,hi.po,,hi,,hindi,,,hi

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/he.po,47,407,376,0,0,429,3562,476,3969,he.po,,he,,hebrew,,,he

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/gu.po,341,2564,2821,0,0,135,1405,476,3969,gu.po,,gu,,gujarati,,,gu

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/gl.po,81,603,745,0,0,395,3366,476,3969,gl.po,,gl,,galician,,,gl

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,390,3230,390,3230,ga.po,,ga,,irish,,,ga

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fr.po,476,3969,4841,0,0,0,0,476,3969,fr.po,,fr,,french,,,fr

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fi.po,280,1656,1286,0,0,196,2313,476,3969,fi.po,,fi,,finnish,,,fi

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/fa.po,17,64,78,0,0,459,3905,476,3969,fa.po,,fa,,persian,,,fa

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/eu.po,35,189,177,0,0,441,3780,476,3969,eu.po,,eu,,basque,,,eu

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/et.po,148,1034,898,0,0,328,2935,476,3969,et.po,,et,,estonian,,,et

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/es.po,476,3969,4863,0,0,0,0,476,3969,es.po,,es,,spanish,,,es

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,390,3230,390,3230,eo.po,,eo,,esperanto,,,eo

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,390,3230,390,3230,en_us.po,,en,us,english,,united states,en_us

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/en_gb.po,249,2212,2211,0,0,227,1757,476,3969,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/el.po,19,151,176,0,0,457,3818,476,3969,el.po,,el,,greek,,,el

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,390,3230,390,3230,dz.po,,dz,,dzongkha,,,dz

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,390,3230,390,3230,de_ch.po,,de,ch,german,,switzerland,de_ch

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/de.po,476,3969,3905,0,0,0,0,476,3969,de.po,,de,,german,,,de

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/da.po,476,3969,3749,0,0,0,0,476,3969,da.po,,da,,danish,,,da

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,390,3230,390,3230,cy.po,,cy,,welsh,,,cy

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/cs.po,476,3969,3718,0,0,0,0,476,3969,cs.po,,cs,,czech,,,cs

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ca.po,476,3969,5170,0,0,0,0,476,3969,ca.po,,ca,,catalan,,,ca

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bs.po,19,150,157,0,0,457,3819,476,3969,bs.po,,bs,,bosnian,,,bs

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,390,3230,390,3230,brx.po,,brx,,bodo,,,brx

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,390,3230,390,3230,br.po,,br,,breton,,,br

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,390,3230,390,3230,bo.po,,bo,,tibetan,,,bo

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bn_in.po,340,2546,2780,0,0,136,1423,476,3969,bn_in.po,,bn,in,bangla,,india,bn_in

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bn.po,128,927,1039,0,0,348,3042,476,3969,bn.po,,bn,,bangla,,,bn

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bg.po,153,1116,1228,0,0,323,2853,476,3969,bg.po,,bg,,bulgarian,,,bg

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,390,3230,390,3230,be.po,,be,,belarusian,,,be

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,390,3230,390,3230,bal.po,,bal,,baluchi,,,bal

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,390,3230,390,3230,az.po,,az,,azerbaijani,,,az

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ast.po,1,1,1,0,0,475,3968,476,3969,ast.po,,ast,,asturian,,,ast

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/as.po,328,2488,2595,0,0,148,1481,476,3969,as.po,,as,,assamese,,,as

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ar.po,6,20,23,0,0,470,3949,476,3969,ar.po,,ar,,arabic,,,ar

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,390,3230,390,3230,am.po,,am,,amharic,,,am

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,390,3230,390,3230,aln.po,,aln,,gheg albanian,,,aln

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,390,3230,390,3230,af.po,,af,,afrikaans,,,af

+ abrt-2.12.0-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,390,3230,390,3230,ach.po,,ach,,acoli,,,ach

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/nl.po,10,59,57,0,0,0,0,10,59,nl.po,,nl,,dutch,,,nl

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/de.po,10,59,59,0,0,0,0,10,59,de.po,,de,,german,,,de

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ko.po,10,59,44,0,0,0,0,10,59,ko.po,,ko,,korean,,,ko

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/tr.po,10,59,58,0,0,0,0,10,59,tr.po,,tr,,turkish,,,tr

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,10,59,10,59,da.po,,da,,danish,,,da

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,10,59,10,59,ia.po,,ia,,interlingua,,,ia

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pt_br.po,10,59,69,0,0,0,0,10,59,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sv.po,10,59,51,0,0,0,0,10,59,sv.po,,sv,,swedish,,,sv

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,10,59,10,59,ro.po,,ro,,romanian,,,ro

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/eo.po,10,59,53,0,0,0,0,10,59,eo.po,,eo,,esperanto,,,eo

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sl.po,10,59,55,0,0,0,0,10,59,sl.po,,sl,,slovenian,,,sl

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,10,59,10,59,ga.po,,ga,,irish,,,ga

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ja.po,10,59,12,0,0,0,0,10,59,ja.po,,ja,,japanese,,,ja

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pl.po,10,59,56,0,0,0,0,10,59,pl.po,,pl,,polish,,,pl

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ru.po,10,59,62,0,0,0,0,10,59,ru.po,,ru,,russian,,,ru

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,10,59,10,59,he.po,,he,,hebrew,,,he

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,10,59,10,59,sr.po,,sr,,serbian,,,sr

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,10,59,10,59,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/en_gb.po,10,59,59,0,0,0,0,10,59,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,10,59,10,59,wa.po,,wa,,walloon,,,wa

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/gl.po,10,59,76,0,0,0,0,10,59,gl.po,,gl,,galician,,,gl

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,10,59,10,59,bn_in.po,,bn,in,bangla,,india,bn_in

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,10,59,10,59,bg.po,,bg,,bulgarian,,,bg

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/el.po,10,59,62,0,0,0,0,10,59,el.po,,el,,greek,,,el

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,10,59,10,59,te.po,,te,,telugu,,,te

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/cs.po,10,59,59,0,0,0,0,10,59,cs.po,,cs,,czech,,,cs

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fr.po,10,59,78,0,0,0,0,10,59,fr.po,,fr,,french,,,fr

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/lv.po,10,59,53,0,0,0,0,10,59,lv.po,,lv,,latvian,,,lv

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/zh_cn.po,10,59,11,0,0,0,0,10,59,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ka.po,10,59,52,0,0,0,0,10,59,ka.po,,ka,,georgian,,,ka

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/uk.po,10,59,60,0,0,0,0,10,59,uk.po,,uk,,ukrainian,,,uk

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/zh_tw.po,10,59,13,0,0,0,0,10,59,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,10,59,10,59,hi.po,,hi,,hindi,,,hi

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,10,59,10,59,lt.po,,lt,,lithuanian,,,lt

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ca.po,10,59,73,0,0,0,0,10,59,ca.po,,ca,,catalan,,,ca

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sk.po,10,59,61,0,0,0,0,10,59,sk.po,,sk,,slovak,,,sk

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/vi.po,10,59,89,0,0,0,0,10,59,vi.po,,vi,,vietnamese,,,vi

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,10,59,10,59,ar.po,,ar,,arabic,,,ar

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,10,59,10,59,kk.po,,kk,,kazakh,,,kk

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/es.po,10,59,67,0,0,0,0,10,59,es.po,,es,,spanish,,,es

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/it.po,10,59,71,0,0,0,0,10,59,it.po,,it,,italian,,,it

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,10,59,10,59,fa.po,,fa,,persian,,,fa

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/pa.po,10,59,62,0,0,0,0,10,59,pa.po,,pa,,punjabi,,,pa

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/id.po,10,59,56,0,0,0,0,10,59,id.po,,id,,indonesian,,,id

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,10,59,10,59,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/hu.po,10,59,50,0,0,0,0,10,59,hu.po,,hu,,hungarian,,,hu

+ accountsservice-0.6.54-5.fc30.src.rpm.stats.csv,po/fi.po,10,59,39,0,0,0,0,10,59,fi.po,,fi,,finnish,,,fi

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,52,500,502,0,0,0,0,52,500,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/sv.po,49,395,380,3,105,0,0,52,500,sv.po,,sv,,swedish,,,sv

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/en@quot.po,52,500,500,0,0,0,0,52,500,en@quot.po,quot,en,,english,,,en@quot

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/fr.po,48,370,424,4,130,0,0,52,500,fr.po,,fr,,french,,,fr

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/pl.po,49,395,400,3,105,0,0,52,500,pl.po,,pl,,polish,,,pl

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/es.po,49,395,447,3,105,0,0,52,500,es.po,,es,,spanish,,,es

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/gl.po,49,395,447,3,105,0,0,52,500,gl.po,,gl,,galician,,,gl

+ acl-2.2.53-3.fc30.src.rpm.stats.csv,po/de.po,49,395,362,3,105,0,0,52,500,de.po,,de,,german,,,de

+ alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,alsaconf/po/ja.po,35,537,213,0,0,1,1,36,538,ja.po,,ja,,japanese,,,ja

+ alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,alsaconf/po/ru.po,34,407,373,1,130,1,1,36,538,ru.po,,ru,,russian,,,ru

+ alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/fr.po,264,1144,1449,21,475,37,169,322,1788,fr.po,,fr,,french,,,fr

+ alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/ja.po,245,1080,594,22,486,55,222,322,1788,ja.po,,ja,,japanese,,,ja

+ alsa-utils-1.1.8-3.fc30.src.rpm.stats.csv,po/de.po,294,1260,1171,20,474,8,54,322,1788,de.po,,de,,german,,,de

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nb.po,741,3389,3103,8,17,536,4405,1285,7811,nb.po,,nb,,norwegian bokmål,,,nb

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kn.po,783,4094,3671,3,32,499,3685,1285,7811,kn.po,,kn,,kannada,,,kn

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/lv.po,46,243,193,0,0,1239,7568,1285,7811,lv.po,,lv,,latvian,,,lv

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/or.po,462,2550,2604,0,0,823,5261,1285,7811,or.po,,or,,odia,,,or

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nso.po,14,66,90,0,0,1271,7745,1285,7811,nso.po,,nso,,northern sotho,,,nso

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bn.po,37,227,240,0,0,1248,7584,1285,7811,bn.po,,bn,,bangla,,,bn

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,1198,7236,1198,7236,br.po,,br,,breton,,,br

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/si.po,40,225,224,0,0,1245,7586,1285,7811,si.po,,si,,sinhala,,,si

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,1198,7236,1198,7236,bal.po,,bal,,baluchi,,,bal

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/he.po,1187,6876,6199,2,2,96,933,1285,7811,he.po,,he,,hebrew,,,he

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ca.po,1272,7658,9036,0,0,13,153,1285,7811,ca.po,,ca,,catalan,,,ca

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1285,7811,2503,0,0,0,0,1285,7811,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/is.po,23,112,107,0,0,1262,7699,1285,7811,is.po,,is,,icelandic,,,is

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/vi.po,14,66,64,0,0,1271,7745,1285,7811,vi.po,,vi,,vietnamese,,,vi

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/be.po,1280,7773,6906,0,0,5,38,1285,7811,be.po,,be,,belarusian,,,be

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nn.po,39,311,257,0,0,1246,7500,1285,7811,nn.po,,nn,,norwegian nynorsk,,,nn

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fa.po,143,456,534,0,0,1142,7355,1285,7811,fa.po,,fa,,persian,,,fa

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fr.po,1285,7811,9340,0,0,0,0,1285,7811,fr.po,,fr,,french,,,fr

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ga.po,252,457,509,0,0,1033,7354,1285,7811,ga.po,,ga,,irish,,,ga

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,1198,7236,1198,7236,anp.po,,anp,,angika,,,anp

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tr.po,1210,7050,5822,0,0,75,761,1285,7811,tr.po,,tr,,turkish,,,tr

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,1198,7236,1198,7236,yo.po,,yo,,yoruba,,,yo

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ia.po,642,3043,3427,0,0,643,4768,1285,7811,ia.po,,ia,,interlingua,,,ia

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mai.po,24,144,176,0,0,1261,7667,1285,7811,mai.po,,mai,,maithili,,,mai

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ja.po,1270,7665,2488,0,0,15,146,1285,7811,ja.po,,ja,,japanese,,,ja

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,1198,7236,1198,7236,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ne.po,17,79,76,0,0,1268,7732,1285,7811,ne.po,,ne,,nepali,,,ne

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pl.po,1285,7811,7350,0,0,0,0,1285,7811,pl.po,,pl,,polish,,,pl

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pa.po,880,3632,4241,0,0,405,4179,1285,7811,pa.po,,pa,,punjabi,,,pa

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nds.po,4,8,7,0,0,1281,7803,1285,7811,nds.po,,nds,,low german,,,nds

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,1198,7236,1198,7236,mn.po,,mn,,mongolian,,,mn

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,1198,7236,1198,7236,tw.po,,tw,,twi,,,tw

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/gu.po,796,3670,4305,0,0,489,4141,1285,7811,gu.po,,gu,,gujarati,,,gu

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ast.po,32,192,194,0,0,1253,7619,1285,7811,ast.po,,ast,,asturian,,,ast

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ru.po,1279,7765,6697,0,0,6,46,1285,7811,ru.po,,ru,,russian,,,ru

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sq.po,1019,5848,6871,0,0,266,1963,1285,7811,sq.po,,sq,,albanian,,,sq

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bg.po,984,5675,5853,0,0,301,2136,1285,7811,bg.po,,bg,,bulgarian,,,bg

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ta.po,879,4817,4363,0,0,406,2994,1285,7811,ta.po,,ta,,tamil,,,ta

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/id.po,1272,7694,7307,0,0,13,117,1285,7811,id.po,,id,,indonesian,,,id

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fil.po,98,647,729,2,37,1185,7127,1285,7811,fil.po,,fil,,filipino,,,fil

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ml.po,436,2332,1840,0,0,849,5479,1285,7811,ml.po,,ml,,malayalam,,,ml

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/af.po,14,66,63,0,0,1271,7745,1285,7811,af.po,,af,,afrikaans,,,af

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1274,7717,2341,0,0,11,94,1285,7811,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/nl.po,1285,7811,7809,0,0,0,0,1285,7811,nl.po,,nl,,dutch,,,nl

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ms.po,16,71,64,0,0,1269,7740,1285,7811,ms.po,,ms,,malay,,,ms

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,1198,7236,1198,7236,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/te.po,451,2419,1962,0,0,834,5392,1285,7811,te.po,,te,,telugu,,,te

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sk.po,1285,7811,7328,0,0,0,0,1285,7811,sk.po,,sk,,slovak,,,sk

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fur.po,1103,6392,7386,0,0,182,1419,1285,7811,fur.po,,fur,,friulian,,,fur

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zh_hk.po,231,1088,342,0,0,1054,6723,1285,7811,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/de_ch.po,20,125,119,0,0,1265,7686,1285,7811,de_ch.po,,de,ch,german,,switzerland,de_ch

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sv.po,1284,7797,7176,0,0,1,14,1285,7811,sv.po,,sv,,swedish,,,sv

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/lt.po,1203,7054,5855,0,0,82,757,1285,7811,lt.po,,lt,,lithuanian,,,lt

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/am.po,14,66,58,0,0,1271,7745,1285,7811,am.po,,am,,amharic,,,am

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bo.po,1,1,1,0,0,1284,7810,1285,7811,bo.po,,bo,,tibetan,,,bo

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/eo.po,1090,5581,5162,51,240,144,1990,1285,7811,eo.po,,eo,,esperanto,,,eo

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/cy.po,14,66,67,0,0,1271,7745,1285,7811,cy.po,,cy,,welsh,,,cy

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/as.po,895,4939,5323,0,0,390,2872,1285,7811,as.po,,as,,assamese,,,as

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sl.po,17,79,67,0,0,1268,7732,1285,7811,sl.po,,sl,,slovenian,,,sl

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pt_br.po,1258,7567,8202,0,0,27,244,1285,7811,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/uk.po,1285,7811,7761,0,0,0,0,1285,7811,uk.po,,uk,,ukrainian,,,uk

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,1198,7236,1198,7236,brx.po,,brx,,bodo,,,brx

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ka.po,317,711,641,0,0,968,7100,1285,7811,ka.po,,ka,,georgian,,,ka

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mk.po,17,79,77,0,0,1268,7732,1285,7811,mk.po,,mk,,macedonian,,,mk

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hu.po,1285,7811,7091,0,0,0,0,1285,7811,hu.po,,hu,,hungarian,,,hu

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,1198,7236,1198,7236,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/gl.po,326,1625,1902,0,0,959,6186,1285,7811,gl.po,,gl,,galician,,,gl

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/el.po,34,191,197,0,0,1251,7620,1285,7811,el.po,,el,,greek,,,el

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/it.po,1108,6418,6695,1,10,176,1383,1285,7811,it.po,,it,,italian,,,it

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/da.po,1285,7811,7094,0,0,0,0,1285,7811,da.po,,da,,danish,,,da

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/eu.po,248,631,588,0,0,1037,7180,1285,7811,eu.po,,eu,,basque,,,eu

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ko.po,1269,7636,6293,0,0,16,175,1285,7811,ko.po,,ko,,korean,,,ko

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ro.po,1089,6201,6694,0,0,196,1610,1285,7811,ro.po,,ro,,romanian,,,ro

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/tg.po,16,46,48,0,0,1269,7765,1285,7811,tg.po,,tg,,tajik,,,tg

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/cs.po,1285,7811,7206,0,0,0,0,1285,7811,cs.po,,cs,,czech,,,cs

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bn_in.po,904,5051,5445,0,0,381,2760,1285,7811,bn_in.po,,bn,in,bangla,,india,bn_in

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/en_gb.po,37,227,227,0,0,1248,7584,1285,7811,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/pt.po,316,1142,1293,0,0,969,6669,1285,7811,pt.po,,pt,,portuguese,,,pt

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sr.po,1198,6786,6532,0,0,87,1025,1285,7811,sr.po,,sr,,serbian,,,sr

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hr.po,1011,5761,5358,0,0,274,2050,1285,7811,hr.po,,hr,,croatian,,,hr

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ilo.po,14,66,77,0,0,1271,7745,1285,7811,ilo.po,,ilo,,iloko,,,ilo

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/th.po,170,690,320,0,0,1115,7121,1285,7811,th.po,,th,,thai,,,th

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ar.po,565,2688,2615,0,0,720,5123,1285,7811,ar.po,,ar,,arabic,,,ar

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/sr@latin.po,28,170,159,0,0,1257,7641,1285,7811,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/zu.po,11,52,37,0,0,1274,7759,1285,7811,zu.po,,zu,,zulu,,,zu

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/fi.po,1027,5439,4071,0,0,258,2372,1285,7811,fi.po,,fi,,finnish,,,fi

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/et.po,171,553,471,0,0,1114,7258,1285,7811,et.po,,et,,estonian,,,et

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/km.po,279,2291,1060,0,0,1006,5520,1285,7811,km.po,,km,,khmer,,,km

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,1198,7236,1198,7236,kw.po,,kw,,cornish,,,kw

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/hi.po,433,2234,2618,0,0,852,5577,1285,7811,hi.po,,hi,,hindi,,,hi

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/de.po,1259,7455,7108,0,0,26,356,1285,7811,de.po,,de,,german,,,de

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/bs.po,18,93,79,0,0,1267,7718,1285,7811,bs.po,,bs,,bosnian,,,bs

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/es.po,1284,7797,8793,0,0,1,14,1285,7811,es.po,,es,,spanish,,,es

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,1198,7236,1198,7236,ky.po,,ky,,kyrgyz,,,ky

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/mr.po,495,2811,2582,0,0,790,5000,1285,7811,mr.po,,mr,,marathi,,,mr

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/kk.po,1110,6433,5564,0,0,175,1378,1285,7811,kk.po,,kk,,kazakh,,,kk

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/ur.po,14,66,81,0,0,1271,7745,1285,7811,ur.po,,ur,,urdu,,,ur

+ anaconda-30.25.6-1.fc30.src.rpm.stats.csv,po/my.po,64,287,183,0,0,1221,7524,1285,7811,my.po,,my,,burmese,,,my

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,123,370,361,1,1,2,4,126,375,en_ca.po,,en,ca,english,,canada,en_ca

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,169,440,334,0,0,0,0,169,440,hu.po,,hu,,hungarian,,,hu

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/th.po,136,392,157,0,0,3,6,139,398,th.po,,th,,thai,,,th

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,169,440,181,0,0,0,0,169,440,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,139,398,315,0,0,0,0,139,398,nn.po,,nn,,norwegian nynorsk,,,nn

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/si.po,31,38,40,0,0,95,337,126,375,si.po,,si,,sinhala,,,si

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,169,440,427,0,0,0,0,169,440,hr.po,,hr,,croatian,,,hr

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,169,440,381,0,0,0,0,169,440,lt.po,,lt,,lithuanian,,,lt

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,126,375,298,0,0,0,0,126,375,mn.po,,mn,,mongolian,,,mn

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/es.po,169,440,561,0,0,0,0,169,440,es.po,,es,,spanish,,,es

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,169,440,385,0,0,0,0,169,440,tr.po,,tr,,turkish,,,tr

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,169,440,421,0,0,0,0,169,440,sr.po,,sr,,serbian,,,sr

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,98,224,203,1,2,27,149,126,375,zu.po,,zu,,zulu,,,zu

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/as.po,169,440,409,0,0,0,0,169,440,as.po,,as,,assamese,,,as

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,139,398,470,0,0,0,0,139,398,gu.po,,gu,,gujarati,,,gu

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/yi.po,31,31,32,48,96,47,248,126,375,yi.po,,yi,,yiddish,,,yi

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,169,440,528,0,0,0,0,169,440,pt.po,,pt,,portuguese,,,pt

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,74,121,124,10,19,42,235,126,375,ms.po,,ms,,malay,,,ms

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,139,398,457,0,0,0,0,139,398,ast.po,,ast,,asturian,,,ast

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/da.po,169,440,309,0,0,0,0,169,440,da.po,,da,,danish,,,da

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,169,440,402,0,0,0,0,169,440,lv.po,,lv,,latvian,,,lv

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/an.po,169,440,522,0,0,0,0,169,440,an.po,,an,,aragonese,,,an

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,169,440,425,0,0,0,0,169,440,ru.po,,ru,,russian,,,ru

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,139,398,342,0,0,0,0,139,398,bn_in.po,,bn,in,bangla,,india,bn_in

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,169,440,517,0,0,0,0,169,440,fur.po,,fur,,friulian,,,fur

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,64,142,188,2,2,60,231,126,375,wa.po,,wa,,walloon,,,wa

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,169,440,439,0,0,0,0,169,440,ro.po,,ro,,romanian,,,ro

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,169,440,426,0,0,0,0,169,440,ne.po,,ne,,nepali,,,ne

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,126,375,431,0,0,0,0,126,375,sq.po,,sq,,albanian,,,sq

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,139,398,353,0,0,0,0,139,398,kn.po,,kn,,kannada,,,kn

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,169,440,536,0,0,0,0,169,440,fr.po,,fr,,french,,,fr

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/li.po,31,31,31,48,96,47,248,126,375,li.po,,li,,limburgish,,,li

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/te.po,139,398,332,0,0,0,0,139,398,te.po,,te,,telugu,,,te

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,167,410,350,1,21,1,9,169,440,eo.po,,eo,,esperanto,,,eo

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,126,375,376,0,0,0,0,126,375,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,126,375,338,0,0,0,0,126,375,hy.po,,hy,,armenian,,,hy

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,169,440,527,0,0,0,0,169,440,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,169,440,524,0,0,0,0,169,440,bg.po,,bg,,bulgarian,,,bg

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,139,398,333,0,0,0,0,139,398,ml.po,,ml,,malayalam,,,ml

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,139,398,157,0,0,0,0,139,398,ja.po,,ja,,japanese,,,ja

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/el.po,169,440,451,0,0,0,0,169,440,el.po,,el,,greek,,,el

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,169,440,456,0,0,0,0,169,440,pa.po,,pa,,punjabi,,,pa

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,169,440,419,0,0,0,0,169,440,pl.po,,pl,,polish,,,pl

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,139,398,343,0,0,0,0,139,398,ug.po,,ug,,uyghur,,,ug

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,169,440,186,0,0,0,0,169,440,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/is.po,31,31,32,48,96,47,248,126,375,is.po,,is,,icelandic,,,is

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,126,375,341,0,0,0,0,126,375,ar.po,,ar,,arabic,,,ar

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/af.po,108,334,288,12,31,6,10,126,375,af.po,,af,,afrikaans,,,af

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/et.po,139,398,285,0,0,0,0,139,398,et.po,,et,,estonian,,,et

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,169,440,529,0,0,0,0,169,440,gl.po,,gl,,galician,,,gl

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,169,440,527,0,0,0,0,169,440,ca.po,,ca,,catalan,,,ca

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,169,440,415,0,0,0,0,169,440,sk.po,,sk,,slovak,,,sk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,52,78,76,0,0,117,362,169,440,kk.po,,kk,,kazakh,,,kk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/or.po,139,398,347,0,0,0,0,139,398,or.po,,or,,odia,,,or

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/km.po,139,398,164,0,0,0,0,139,398,km.po,,km,,khmer,,,km

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,169,440,417,0,0,0,0,169,440,cs.po,,cs,,czech,,,cs

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,123,370,388,1,1,2,4,126,375,mai.po,,mai,,maithili,,,mai

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,169,440,371,0,0,0,0,169,440,nl.po,,nl,,dutch,,,nl

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tt.po,114,359,292,7,8,5,8,126,375,tt.po,,tt,,tatar,,,tt

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,169,440,430,0,0,0,0,169,440,bs.po,,bs,,bosnian,,,bs

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/de.po,169,440,353,0,0,0,0,169,440,de.po,,de,,german,,,de

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,169,440,440,0,0,0,0,169,440,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,5,85,299,36,71,126,375,rw.po,,rw,,kinyarwanda,,,rw

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/az.po,114,359,314,7,8,5,8,126,375,az.po,,az,,azerbaijani,,,az

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,25,25,26,15,26,86,324,126,375,ga.po,,ga,,irish,,,ga

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,159,417,297,5,9,5,14,169,440,fi.po,,fi,,finnish,,,fi

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,40,46,48,0,0,99,352,139,398,tg.po,,tg,,tajik,,,tg

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,169,440,362,0,0,0,0,169,440,nb.po,,nb,,norwegian bokmål,,,nb

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,169,440,186,0,0,0,0,169,440,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,139,398,360,0,0,0,0,139,398,uk.po,,uk,,ukrainian,,,uk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/be.po,169,440,398,0,0,0,0,169,440,be.po,,be,,belarusian,,,be

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/he.po,169,440,441,0,0,0,0,169,440,he.po,,he,,hebrew,,,he

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,169,440,477,0,0,0,0,169,440,gd.po,,gd,,scottish gaelic,,,gd

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,169,440,528,0,0,0,0,169,440,oc.po,,oc,,occitan,,,oc

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,125,374,337,1,1,0,0,126,375,be@latin.po,latin,be,,belarusian,,,be@latin

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,123,370,188,1,1,2,4,126,375,dz.po,,dz,,dzongkha,,,dz

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,121,348,331,1,1,4,26,126,375,ku.po,,ku,,kurdish,,,ku

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,139,398,380,0,0,0,0,139,398,fa.po,,fa,,persian,,,fa

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,169,440,635,0,0,0,0,169,440,vi.po,,vi,,vietnamese,,,vi

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,169,440,341,0,0,0,0,169,440,eu.po,,eu,,basque,,,eu

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,169,440,529,0,0,0,0,169,440,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/am.po,24,24,28,26,53,76,298,126,375,am.po,,am,,amharic,,,am

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,169,440,326,0,0,0,0,169,440,sv.po,,sv,,swedish,,,sv

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/id.po,169,440,415,0,0,0,0,169,440,id.po,,id,,indonesian,,,id

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,123,370,300,1,1,2,4,126,375,ka.po,,ka,,georgian,,,ka

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr@ije.po,114,359,336,7,8,5,8,126,375,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,169,440,396,0,0,0,0,169,440,ko.po,,ko,,korean,,,ko

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,126,375,347,0,0,0,0,126,375,mr.po,,mr,,marathi,,,mr

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,169,440,421,0,0,0,0,169,440,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,123,370,436,1,1,2,4,126,375,mk.po,,mk,,macedonian,,,mk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,139,398,432,0,0,0,0,139,398,hi.po,,hi,,hindi,,,hi

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,123,370,436,1,1,2,4,126,375,ps.po,,ps,,pashto,,,ps

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,126,375,382,0,0,0,0,126,375,cy.po,,cy,,welsh,,,cy

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,169,440,393,0,0,0,0,169,440,sl.po,,sl,,slovenian,,,sl

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,114,359,319,7,8,5,8,126,375,xh.po,,xh,,xhosa,,,xh

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,111,348,291,8,9,7,18,126,375,tk.po,,tk,,turkmen,,,tk

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/it.po,169,440,491,0,0,0,0,169,440,it.po,,it,,italian,,,it

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,126,375,346,0,0,0,0,126,375,bn.po,,bn,,bangla,,,bn

+ atk-2.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,139,398,326,0,0,0,0,139,398,ta.po,,ta,,tamil,,,ta

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,2,10,2,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,2,10,2,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,2,10,2,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,14,96,121,0,0,0,0,14,96,vi.po,,vi,,vietnamese,,,vi

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,1,5,5,0,0,0,0,1,5,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,18,122,119,0,0,0,0,18,122,uk.po,,uk,,ukrainian,,,uk

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,14,96,115,0,0,0,0,14,96,ug.po,,ug,,uyghur,,,ug

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,2,10,12,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,1,5,5,0,0,0,0,1,5,tg.po,,tg,,tajik,,,tg

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/te.po,18,122,109,0,0,0,0,18,122,te.po,,te,,telugu,,,te

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,1,5,3,0,0,0,0,1,5,ta.po,,ta,,tamil,,,ta

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,2,10,13,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,2,10,11,0,0,0,0,2,10,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,2,10,11,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,18,122,145,0,0,0,0,18,122,sq.po,,sq,,albanian,,,sq

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,2,10,11,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,2,10,12,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,2,10,13,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,2,10,12,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,2,10,12,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,2,10,12,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,2,10,14,0,0,0,0,2,10,pa.po,,pa,,punjabi,,,pa

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/or.po,18,122,125,0,0,0,0,18,122,or.po,,or,,odia,,,or

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,2,10,10,0,0,0,0,2,10,oc.po,,oc,,occitan,,,oc

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,2,10,10,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,2,10,11,0,0,0,0,2,10,ne.po,,ne,,nepali,,,ne

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,14,96,103,0,0,0,0,14,96,mr.po,,mr,,marathi,,,mr

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,2,10,9,0,0,0,0,2,10,ml.po,,ml,,malayalam,,,ml

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,2,10,9,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,2,10,9,0,0,0,0,2,10,lt.po,,lt,,lithuanian,,,lt

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,2,10,9,0,0,0,0,2,10,ko.po,,ko,,korean,,,ko

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,18,122,123,0,0,0,0,18,122,kn.po,,kn,,kannada,,,kn

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/km.po,1,5,5,0,0,0,0,1,5,km.po,,km,,khmer,,,km

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,2,10,12,0,0,0,0,2,10,kk.po,,kk,,kazakh,,,kk

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,1,5,1,0,0,0,0,1,5,ja.po,,ja,,japanese,,,ja

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/it.po,2,10,9,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,2,10,10,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,1,5,5,0,0,0,0,1,5,hi.po,,hi,,hindi,,,hi

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/he.po,2,10,10,0,0,0,0,2,10,he.po,,he,,hebrew,,,he

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,18,122,143,0,0,0,0,18,122,gu.po,,gu,,gujarati,,,gu

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,2,10,12,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,2,10,12,0,0,0,0,2,10,gd.po,,gd,,scottish gaelic,,,gd

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,1,5,6,0,0,0,0,1,5,ga.po,,ga,,irish,,,ga

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,2,10,10,0,0,0,0,2,10,fur.po,,fur,,friulian,,,fur

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,2,10,9,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,1,5,4,0,0,0,0,1,5,fi.po,,fi,,finnish,,,fi

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,2,10,10,0,0,0,0,2,10,fa.po,,fa,,persian,,,fa

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,2,10,10,0,0,0,0,2,10,eu.po,,eu,,basque,,,eu

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/et.po,2,10,12,0,0,0,0,2,10,et.po,,et,,estonian,,,et

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/es.po,2,10,13,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,1,5,5,0,0,0,0,1,5,eo.po,,eo,,esperanto,,,eo

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,2,10,10,0,0,0,0,2,10,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,1,5,5,0,0,0,0,1,5,en_ca.po,,en,ca,english,,canada,en_ca

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/el.po,2,10,10,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/de.po,2,10,11,0,0,0,0,2,10,de.po,,de,,german,,,de

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/da.po,2,10,10,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,2,10,11,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,2,10,12,0,0,0,0,2,10,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,2,10,10,0,0,0,0,2,10,bs.po,,bs,,bosnian,,,bs

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,18,122,139,0,0,0,0,18,122,bn_in.po,,bn,in,bangla,,india,bn_in

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,2,10,9,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/be.po,2,10,12,0,0,0,0,2,10,be.po,,be,,belarusian,,,be

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,14,96,111,0,0,0,0,14,96,ast.po,,ast,,asturian,,,ast

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/as.po,2,10,9,0,0,0,0,2,10,as.po,,as,,assamese,,,as

+ at-spi2-core-2.32.1-2.fc30.src.rpm.stats.csv,po/an.po,2,10,10,0,0,0,0,2,10,an.po,,an,,aragonese,,,an

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/en@boldquot.po,30,348,350,0,0,0,0,30,348,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/sv.po,22,208,206,7,138,1,2,30,348,sv.po,,sv,,swedish,,,sv

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/nl.po,22,208,209,7,138,1,2,30,348,nl.po,,nl,,dutch,,,nl

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/en@quot.po,30,348,348,0,0,0,0,30,348,en@quot.po,quot,en,,english,,,en@quot

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/fr.po,22,208,239,7,138,1,2,30,348,fr.po,,fr,,french,,,fr

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/pl.po,28,293,288,2,55,0,0,30,348,pl.po,,pl,,polish,,,pl

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/es.po,28,293,319,2,55,0,0,30,348,es.po,,es,,spanish,,,es

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/gl.po,28,293,319,2,55,0,0,30,348,gl.po,,gl,,galician,,,gl

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/de.po,21,197,186,8,149,1,2,30,348,de.po,,de,,german,,,de

+ attr-2.4.48-5.fc30.src.rpm.stats.csv,po/cs.po,28,293,290,2,55,0,0,30,348,cs.po,,cs,,czech,,,cs

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,309,1783,703,0,0,4,24,313,1807,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,309,1783,552,0,0,4,24,313,1807,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/uk.po,313,1807,1818,0,0,0,0,313,1807,uk.po,,uk,,ukrainian,,,uk

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/sv.po,313,1807,1755,0,0,0,0,313,1807,sv.po,,sv,,swedish,,,sv

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ru.po,309,1783,1699,0,0,4,24,313,1807,ru.po,,ru,,russian,,,ru

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,309,1783,2049,0,0,4,24,313,1807,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/pl.po,313,1807,1792,0,0,0,0,313,1807,pl.po,,pl,,polish,,,pl

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/nl.po,313,1807,1877,0,0,0,0,313,1807,nl.po,,nl,,dutch,,,nl

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ko.po,309,1783,1585,0,0,4,24,313,1807,ko.po,,ko,,korean,,,ko

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ja.po,309,1783,858,0,0,4,24,313,1807,ja.po,,ja,,japanese,,,ja

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/it.po,309,1783,1919,0,0,4,24,313,1807,it.po,,it,,italian,,,it

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/hu.po,277,1599,1483,0,0,36,208,313,1807,hu.po,,hu,,hungarian,,,hu

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/fr.po,313,1807,2152,0,0,0,0,313,1807,fr.po,,fr,,french,,,fr

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/es.po,313,1807,2220,0,0,0,0,313,1807,es.po,,es,,spanish,,,es

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/de.po,309,1783,1759,0,0,4,24,313,1807,de.po,,de,,german,,,de

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/cs.po,183,956,887,0,0,130,851,313,1807,cs.po,,cs,,czech,,,cs

+ authselect-1.0.3-1.fc30.src.rpm.stats.csv,po/ca.po,173,930,1144,0,0,140,877,313,1807,ca.po,,ca,,catalan,,,ca

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_nz.po,152,758,758,11,89,5,21,168,868,en_nz.po,,en,nz,english,,new zealand,en_nz

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_ca.po,1,1,1,1,1,166,866,168,868,en_ca.po,,en,ca,english,,canada,en_ca

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/sk.po,165,865,870,2,2,1,1,168,868,sk.po,,sk,,slovak,,,sk

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/eo.po,67,167,141,1,1,100,700,168,868,eo.po,,eo,,esperanto,,,eo

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/sr@latin.po,165,865,896,2,2,1,1,168,868,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/pl.po,168,868,865,0,0,0,0,168,868,pl.po,,pl,,polish,,,pl

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/uk.po,168,868,883,0,0,0,0,168,868,uk.po,,uk,,ukrainian,,,uk

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/fr.po,165,865,989,2,2,1,1,168,868,fr.po,,fr,,french,,,fr

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/nl.po,165,865,846,2,2,1,1,168,868,nl.po,,nl,,dutch,,,nl

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/es.po,165,865,1070,2,2,1,1,168,868,es.po,,es,,spanish,,,es

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/el.po,165,865,876,2,2,1,1,168,868,el.po,,el,,greek,,,el

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/oc.po,168,868,993,0,0,0,0,168,868,oc.po,,oc,,occitan,,,oc

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/tr.po,168,868,789,0,0,0,0,168,868,tr.po,,tr,,turkish,,,tr

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/fi.po,164,794,634,2,2,2,72,168,868,fi.po,,fi,,finnish,,,fi

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/fa.po,74,224,245,1,1,93,643,168,868,fa.po,,fa,,persian,,,fa

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ms.po,40,94,95,1,1,127,773,168,868,ms.po,,ms,,malay,,,ms

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ja.po,165,865,449,2,2,1,1,168,868,ja.po,,ja,,japanese,,,ja

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/bg.po,165,865,1001,2,2,1,1,168,868,bg.po,,bg,,bulgarian,,,bg

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/et.po,129,477,405,2,2,37,389,168,868,et.po,,et,,estonian,,,et

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/cs.po,133,642,607,2,2,33,224,168,868,cs.po,,cs,,czech,,,cs

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/sv.po,168,868,807,0,0,0,0,168,868,sv.po,,sv,,swedish,,,sv

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/hu.po,168,868,780,0,0,0,0,168,868,hu.po,,hu,,hungarian,,,hu

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ar.po,91,262,267,2,2,75,604,168,868,ar.po,,ar,,arabic,,,ar

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/sl.po,165,865,882,2,2,1,1,168,868,sl.po,,sl,,slovenian,,,sl

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/id.po,168,868,850,0,0,0,0,168,868,id.po,,id,,indonesian,,,id

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/he.po,103,332,318,2,2,63,534,168,868,he.po,,he,,hebrew,,,he

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/pt_br.po,165,865,1009,2,2,1,1,168,868,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_au.po,2,2,2,1,1,165,865,168,868,en_au.po,,en,au,english,,australia,en_au

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/fo.po,113,413,366,2,2,53,453,168,868,fo.po,,fo,,faroese,,,fo

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/zh_tw.po,165,865,391,2,2,1,1,168,868,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,168,868,168,868,ko.po,,ko,,korean,,,ko

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,168,868,168,868,ach.po,,ach,,acoli,,,ach

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/it.po,165,865,986,2,2,1,1,168,868,it.po,,it,,italian,,,it

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ru.po,165,865,828,2,2,1,1,168,868,ru.po,,ru,,russian,,,ru

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/da.po,165,865,761,2,2,1,1,168,868,da.po,,da,,danish,,,da

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/lv.po,165,865,776,2,2,1,1,168,868,lv.po,,lv,,latvian,,,lv

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/sr.po,165,865,896,2,2,1,1,168,868,sr.po,,sr,,serbian,,,sr

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/gl.po,165,865,1161,2,2,1,1,168,868,gl.po,,gl,,galician,,,gl

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/de.po,165,865,779,2,2,1,1,168,868,de.po,,de,,german,,,de

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/en_gb.po,165,865,865,2,2,1,1,168,868,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ca.po,165,865,1145,2,2,1,1,168,868,ca.po,,ca,,catalan,,,ca

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/zh_cn.po,165,865,414,2,2,1,1,168,868,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ avahi-0.7-18.fc30.src.rpm.stats.csv,po/ro.po,165,865,882,2,2,1,1,168,868,ro.po,,ro,,romanian,,,ro

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/cs.po,4,67,68,0,0,0,0,4,67,cs.po,,cs,,czech,,,cs

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/da.po,4,67,64,0,0,0,0,4,67,da.po,,da,,danish,,,da

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/de.po,4,67,64,0,0,0,0,4,67,de.po,,de,,german,,,de

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/es.po,0,0,0,1,22,3,45,4,67,es.po,,es,,spanish,,,es

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/fr.po,4,67,73,0,0,0,0,4,67,fr.po,,fr,,french,,,fr

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/id.po,4,67,45,0,0,0,0,4,67,id.po,,id,,indonesian,,,id

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/it.po,4,67,70,0,0,0,0,4,67,it.po,,it,,italian,,,it

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/ja.po,4,67,10,0,0,0,0,4,67,ja.po,,ja,,japanese,,,ja

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/pl.po,4,67,65,0,0,0,0,4,67,pl.po,,pl,,polish,,,pl

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/pt.po,4,67,72,0,0,0,0,4,67,pt.po,,pt,,portuguese,,,pt

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/ru.po,4,67,53,0,0,0,0,4,67,ru.po,,ru,,russian,,,ru

+ b43-fwcutter-019-15.fc30.src.rpm.stats.csv,debian/po/sv.po,4,67,66,0,0,0,0,4,67,sv.po,,sv,,swedish,,,sv

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,57,820,118,0,0,0,0,57,820,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,67,1103,1032,0,0,0,0,67,1103,sv.po,,sv,,swedish,,,sv

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,57,820,734,0,0,0,0,57,820,sl.po,,sl,,slovenian,,,sl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,57,820,717,0,0,0,0,57,820,ru.po,,ru,,russian,,,ru

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,67,1103,1218,0,0,0,0,67,1103,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pt/pt.po,67,1103,1132,0,0,0,0,67,1103,pt.po,,pt,,portuguese,,,pt

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,67,1103,864,0,0,0,0,67,1103,pl.po,,pl,,polish,,,pl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,67,1103,749,0,0,0,0,67,1103,ko.po,,ko,,korean,,,ko

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,67,1103,1105,0,0,0,0,67,1103,it.po,,it,,italian,,,it

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,67,1103,978,0,0,0,0,67,1103,id.po,,id,,indonesian,,,id

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,67,1103,890,0,0,0,0,67,1103,hu.po,,hu,,hungarian,,,hu

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,67,1103,910,0,0,0,0,67,1103,hr.po,,hr,,croatian,,,hr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,39,345,388,7,255,21,503,67,1103,gl.po,,gl,,galician,,,gl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,67,1103,1186,0,0,0,0,67,1103,fr.po,,fr,,french,,,fr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,47,688,411,3,56,17,359,67,1103,fi.po,,fi,,finnish,,,fi

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,67,1103,1180,0,0,0,0,67,1103,es.po,,es,,spanish,,,es

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,67,1103,1126,0,0,0,0,67,1103,el.po,,el,,greek,,,el

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,67,1103,1060,0,0,0,0,67,1103,de.po,,de,,german,,,de

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,67,1103,967,0,0,0,0,67,1103,da.po,,da,,danish,,,da

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,67,1103,955,0,0,0,0,67,1103,cs.po,,cs,,czech,,,cs

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,41,703,758,0,0,0,0,41,703,ca.po,,ca,,catalan,,,ca

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,65,247,116,0,0,0,0,65,247,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,57,210,109,0,0,0,0,57,210,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,65,247,109,0,0,0,0,65,247,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,12,23,21,40,128,74,389,126,540,xh.po,,xh,,xhosa,,,xh

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,6,6,6,44,128,76,406,126,540,wa.po,,wa,,walloon,,,wa

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,74,278,394,0,0,0,0,74,278,vi.po,,vi,,vietnamese,,,vi

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,108,116,0,0,0,0,30,108,uk.po,,uk,,ukrainian,,,uk

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,57,184,166,0,0,0,0,57,184,ug.po,,ug,,uyghur,,,ug

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,74,278,245,0,0,0,0,74,278,tr.po,,tr,,turkish,,,tr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,58,180,86,0,0,0,0,58,180,th.po,,th,,thai,,,th

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,57,210,214,0,0,0,0,57,210,tg.po,,tg,,tajik,,,tg

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,57,210,198,0,0,0,0,57,210,te.po,,te,,telugu,,,te

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,57,210,192,0,0,0,0,57,210,ta.po,,ta,,tamil,,,ta

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,74,278,273,0,0,0,0,74,278,sv.po,,sv,,swedish,,,sv

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,65,247,268,0,0,0,0,65,247,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,74,278,308,0,0,0,0,74,278,sr.po,,sr,,serbian,,,sr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,12,23,23,40,128,74,389,126,540,sq.po,,sq,,albanian,,,sq

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,74,278,284,0,0,0,0,74,278,sl.po,,sl,,slovenian,,,sl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,65,247,245,0,0,0,0,65,247,sk.po,,sk,,slovak,,,sk

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,80,210,246,19,79,27,251,126,540,si.po,,si,,sinhala,,,si

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,2,2,2,47,141,77,397,126,540,rw.po,,rw,,kinyarwanda,,,rw

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,74,278,263,0,0,0,0,74,278,ru.po,,ru,,russian,,,ru

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,74,278,333,0,0,0,0,74,278,ro.po,,ro,,romanian,,,ro

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,74,278,418,0,0,0,0,74,278,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,63,243,279,0,0,0,0,63,243,pt.po,,pt,,portuguese,,,pt

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,99,282,317,5,18,22,240,126,540,ps.po,,ps,,pashto,,,ps

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,74,278,303,0,0,0,0,74,278,pl.po,,pl,,polish,,,pl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,57,210,251,0,0,0,0,57,210,pa.po,,pa,,punjabi,,,pa

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,57,210,231,0,0,0,0,57,210,or.po,,or,,odia,,,or

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,57,185,213,0,0,6,58,63,243,oc.po,,oc,,occitan,,,oc

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,72,229,230,0,0,0,0,72,229,nn.po,,nn,,norwegian nynorsk,,,nn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,74,278,284,0,0,0,0,74,278,nl.po,,nl,,dutch,,,nl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,64,246,227,0,0,0,0,64,246,ne.po,,ne,,nepali,,,ne

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,44,84,78,1,3,81,453,126,540,nds.po,,nds,,low german,,,nds

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,65,247,249,0,0,0,0,65,247,nb.po,,nb,,norwegian bokmål,,,nb

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,9,15,24,40,134,77,391,126,540,ms.po,,ms,,malay,,,ms

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,57,210,217,0,0,0,0,57,210,mr.po,,mr,,marathi,,,mr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,8,14,13,41,135,77,391,126,540,mn.po,,mn,,mongolian,,,mn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,65,247,222,0,0,0,0,65,247,ml.po,,ml,,malayalam,,,ml

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,109,370,431,9,38,8,132,126,540,mk.po,,mk,,macedonian,,,mk

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,50,132,149,48,193,28,215,126,540,mg.po,,mg,,malagasy,,,mg

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,94,287,348,7,24,25,229,126,540,mai.po,,mai,,maithili,,,mai

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,74,278,266,0,0,0,0,74,278,lv.po,,lv,,latvian,,,lv

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,74,278,268,0,0,0,0,74,278,lt.po,,lt,,lithuanian,,,lt

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,54,118,132,26,104,46,318,126,540,ku.po,,ku,,kurdish,,,ku

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,74,278,238,0,0,0,0,74,278,ko.po,,ko,,korean,,,ko

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,57,210,187,0,0,0,0,57,210,kn.po,,kn,,kannada,,,kn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,126,540,243,0,0,0,0,126,540,km.po,,km,,khmer,,,km

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,74,278,245,0,0,0,0,74,278,kk.po,,kk,,kazakh,,,kk

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,11,22,24,42,157,73,361,126,540,ka.po,,ka,,georgian,,,ka

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,71,225,129,0,0,3,53,74,278,ja.po,,ja,,japanese,,,ja

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,74,278,321,0,0,0,0,74,278,it.po,,it,,italian,,,it

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,65,247,245,0,0,0,0,65,247,is.po,,is,,icelandic,,,is

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,74,278,299,0,0,0,0,74,278,id.po,,id,,indonesian,,,id

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,74,278,290,0,0,0,0,74,278,hu.po,,hu,,hungarian,,,hu

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,65,247,240,0,0,0,0,65,247,hr.po,,hr,,croatian,,,hr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,57,210,245,0,0,0,0,57,210,hi.po,,hi,,hindi,,,hi

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,63,243,264,0,0,0,0,63,243,he.po,,he,,hebrew,,,he

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,57,210,227,0,0,0,0,57,210,gu.po,,gu,,gujarati,,,gu

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,74,278,394,0,0,0,0,74,278,gl.po,,gl,,galician,,,gl

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,64,246,324,0,0,0,0,64,246,gd.po,,gd,,scottish gaelic,,,gd

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,45,124,162,1,6,11,80,57,210,ga.po,,ga,,irish,,,ga

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,74,278,317,0,0,0,0,74,278,fur.po,,fur,,friulian,,,fur

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,74,278,350,0,0,0,0,74,278,fr.po,,fr,,french,,,fr

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,74,278,256,0,0,0,0,74,278,fi.po,,fi,,finnish,,,fi

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,64,246,281,0,0,0,0,64,246,fa.po,,fa,,persian,,,fa

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,64,246,239,0,0,0,0,64,246,eu.po,,eu,,basque,,,eu

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,57,210,189,0,0,0,0,57,210,et.po,,et,,estonian,,,et

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,74,278,394,0,0,0,0,74,278,es.po,,es,,spanish,,,es

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,62,196,187,1,13,1,37,64,246,eo.po,,eo,,esperanto,,,eo

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,63,243,266,0,0,0,0,63,243,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,11,22,25,42,157,73,361,126,540,en_ca.po,,en,ca,english,,canada,en_ca

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,100,413,414,24,123,2,4,126,540,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,74,278,321,0,0,0,0,74,278,el.po,,el,,greek,,,el

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,90,285,133,24,103,12,152,126,540,dz.po,,dz,,dzongkha,,,dz

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,74,278,324,0,0,0,0,74,278,de.po,,de,,german,,,de

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,74,278,273,0,0,0,0,74,278,da.po,,da,,danish,,,da

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,50,132,164,52,203,24,205,126,540,cy.po,,cy,,welsh,,,cy

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,74,278,325,0,0,0,0,74,278,cs.po,,cs,,czech,,,cs

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,57,184,157,0,0,0,0,57,184,crh.po,,crh,,crimean turkish,,,crh

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,64,246,313,0,0,0,0,64,246,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,74,278,356,0,0,0,0,74,278,ca.po,,ca,,catalan,,,ca

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,57,210,217,0,0,0,0,57,210,bs.po,,bs,,bosnian,,,bs

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,57,210,244,0,0,0,0,57,210,br.po,,br,,breton,,,br

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,57,210,224,0,0,0,0,57,210,bn_in.po,,bn,in,bangla,,india,bn_in

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,122,526,596,2,10,2,4,126,540,bn.po,,bn,,bangla,,,bn

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,64,246,306,0,0,0,0,64,246,bg.po,,bg,,bulgarian,,,bg

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,109,370,341,9,38,8,132,126,540,be@latin.po,latin,be,,belarusian,,,be@latin

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,65,247,245,0,0,0,0,65,247,be.po,,be,,belarusian,,,be

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,9,15,29,40,134,77,391,126,540,az.po,,az,,azerbaijani,,,az

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,126,540,625,0,0,0,0,126,540,ast.po,,ast,,asturian,,,ast

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,57,210,227,0,0,0,0,57,210,as.po,,as,,assamese,,,as

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,64,244,257,0,0,0,0,64,244,ar.po,,ar,,arabic,,,ar

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,57,210,255,0,0,0,0,57,210,an.po,,an,,aragonese,,,an

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,6,6,10,16,35,104,499,126,540,am.po,,am,,amharic,,,am

+ baobab-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,65,247,248,0,0,0,0,65,247,af.po,,af,,afrikaans,,,af

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/hu.po,565,9806,8278,20,1695,1,6,586,11507,hu.po,,hu,,hungarian,,,hu

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/it.po,487,5568,6137,74,5784,25,155,586,11507,it.po,,it,,italian,,,it

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sr.po,565,9806,9161,20,1695,1,6,586,11507,sr.po,,sr,,serbian,,,sr

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/af.po,15,46,52,220,759,351,10702,586,11507,af.po,,af,,afrikaans,,,af

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sl.po,487,5568,5327,74,5784,25,155,586,11507,sl.po,,sl,,slovenian,,,sl

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/nl.po,565,9806,9808,20,1695,1,6,586,11507,nl.po,,nl,,dutch,,,nl

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pl.po,584,11184,10311,2,323,0,0,586,11507,pl.po,,pl,,polish,,,pl

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ro.po,125,431,477,173,827,288,10249,586,11507,ro.po,,ro,,romanian,,,ro

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sk.po,487,5568,5224,74,5784,25,155,586,11507,sk.po,,sk,,slovak,,,sk

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/fr.po,584,11184,12921,2,323,0,0,586,11507,fr.po,,fr,,french,,,fr

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,586,11507,11544,0,0,0,0,586,11507,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/hr.po,584,11184,10476,2,323,0,0,586,11507,hr.po,,hr,,croatian,,,hr

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/el.po,501,3498,3673,11,251,74,7758,586,11507,el.po,,el,,greek,,,el

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/eo.po,565,9806,9056,20,1695,1,6,586,11507,eo.po,,eo,,esperanto,,,eo

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ru.po,543,6142,5719,42,5359,1,6,586,11507,ru.po,,ru,,russian,,,ru

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/id.po,510,5842,5584,63,5591,13,74,586,11507,id.po,,id,,indonesian,,,id

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/bg.po,565,9806,10657,20,1695,1,6,586,11507,bg.po,,bg,,bulgarian,,,bg

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/da.po,458,4836,4619,96,6469,32,202,586,11507,da.po,,da,,danish,,,da

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/et.po,153,660,647,47,189,386,10658,586,11507,et.po,,et,,estonian,,,et

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/gl.po,468,3199,3776,51,1438,67,6870,586,11507,gl.po,,gl,,galician,,,gl

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ja.po,531,5986,2439,48,5483,7,38,586,11507,ja.po,,ja,,japanese,,,ja

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ga.po,565,6907,7485,1,164,20,4436,586,11507,ga.po,,ga,,irish,,,ga

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,584,11184,12173,2,323,0,0,586,11507,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/sv.po,584,11184,10408,2,323,0,0,586,11507,sv.po,,sv,,swedish,,,sv

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/tr.po,553,8541,7240,17,1181,16,1785,586,11507,tr.po,,tr,,turkish,,,tr

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/lt.po,326,1512,1409,77,1231,183,8764,586,11507,lt.po,,lt,,lithuanian,,,lt

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,584,11184,3906,2,323,0,0,586,11507,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/cs.po,584,11184,10087,2,323,0,0,586,11507,cs.po,,cs,,czech,,,cs

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/es.po,565,9806,11294,20,1695,1,6,586,11507,es.po,,es,,spanish,,,es

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/vi.po,550,9017,11285,30,2456,6,34,586,11507,vi.po,,vi,,vietnamese,,,vi

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/pt.po,584,11184,11647,2,323,0,0,586,11507,pt.po,,pt,,portuguese,,,pt

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/ca.po,556,9738,10809,20,1695,10,74,586,11507,ca.po,,ca,,catalan,,,ca

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/de.po,500,5904,5612,1,164,85,5439,586,11507,de.po,,de,,german,,,de

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/uk.po,565,9806,8768,20,1695,1,6,586,11507,uk.po,,uk,,ukrainian,,,uk

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/fi.po,459,4966,3719,92,6318,35,223,586,11507,fi.po,,fi,,finnish,,,fi

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/en@quot.po,586,11507,11507,0,0,0,0,586,11507,en@quot.po,quot,en,,english,,,en@quot

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,584,11184,3900,2,323,0,0,586,11507,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ bash-5.0.2-1.fc30.src.rpm.stats.csv,po/nb.po,565,9806,8857,20,1695,1,6,586,11507,nb.po,,nb,,norwegian bokmål,,,nb

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/pt.po,1771,11953,12808,0,0,0,0,1771,11953,pt.po,,pt,,portuguese,,,pt

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/sr.po,1398,9119,9435,0,0,0,0,1398,9119,sr.po,,sr,,serbian,,,sr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/fr.po,1771,11953,14584,0,0,0,0,1771,11953,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/vi.po,1312,8369,12106,0,0,0,0,1312,8369,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/tr.po,592,4098,3794,0,0,0,0,592,4098,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/fi.po,1398,9119,7687,0,0,0,0,1398,9119,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ru.po,1651,11020,10975,0,0,0,0,1651,11020,ru.po,,ru,,russian,,,ru

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/zh_cn.po,214,935,437,521,2842,663,5342,1398,9119,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/rw.po,1,2,2,508,3879,83,217,592,4098,rw.po,,rw,,kinyarwanda,,,rw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/da.po,1398,9119,8504,0,0,0,0,1398,9119,da.po,,da,,danish,,,da

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/id.po,1312,8369,8501,0,0,0,0,1312,8369,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/es.po,1771,11953,13950,0,0,0,0,1771,11953,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/sv.po,1398,9119,8364,0,0,0,0,1398,9119,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/uk.po,1651,11020,11613,0,0,0,0,1651,11020,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/hr.po,79,195,199,0,0,1233,8174,1312,8369,hr.po,,hr,,croatian,,,hr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ro.po,592,4098,4407,0,0,0,0,592,4098,ro.po,,ro,,romanian,,,ro

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,bfd/po/ja.po,1013,6811,4307,0,0,286,1419,1299,8230,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/pt.po,2218,13724,14965,0,0,0,0,2218,13724,pt.po,,pt,,portuguese,,,pt

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/it.po,1496,9431,10831,0,0,0,0,1496,9431,it.po,,it,,italian,,,it

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sr.po,1698,10376,10383,0,0,0,0,1698,10376,sr.po,,sr,,serbian,,,sr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/fr.po,2218,13724,16858,0,0,0,0,2218,13724,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/zh_tw.po,881,4106,1957,238,2663,397,2747,1516,9516,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/vi.po,1516,9516,14252,0,0,0,0,1516,9516,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/bg.po,840,5058,5493,0,0,1284,8237,2124,13295,bg.po,,bg,,bulgarian,,,bg

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/tr.po,979,6367,5810,0,0,0,0,979,6367,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/fi.po,1698,10376,8212,0,0,0,0,1698,10376,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ru.po,2218,13724,13433,0,0,0,0,2218,13724,ru.po,,ru,,russian,,,ru

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ca.po,1698,10376,13004,0,0,0,0,1698,10376,ca.po,,ca,,catalan,,,ca

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/zh_cn.po,973,4740,2285,513,3613,212,2023,1698,10376,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/rw.po,5,8,9,761,5299,144,503,910,5810,rw.po,,rw,,kinyarwanda,,,rw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/da.po,780,3498,3134,254,2242,281,2948,1315,8688,da.po,,da,,danish,,,da

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/id.po,1144,7903,7882,0,0,0,0,1144,7903,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/es.po,1400,7316,9310,457,4071,361,2337,2218,13724,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sv.po,2124,13295,11929,0,0,0,0,2124,13295,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/uk.po,2124,13295,13483,0,0,0,0,2124,13295,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/hr.po,262,1097,1060,7,107,1247,8312,1516,9516,hr.po,,hr,,croatian,,,hr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ro.po,261,968,1038,0,0,718,5399,979,6367,ro.po,,ro,,romanian,,,ro

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/sk.po,1106,7582,7268,0,0,0,0,1106,7582,sk.po,,sk,,slovak,,,sk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,binutils/po/ja.po,1464,9332,5397,0,0,32,99,1496,9431,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/fr.po,4427,28114,33722,0,0,0,0,4427,28114,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/tr.po,2368,13963,12564,229,1879,99,646,2696,16488,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/fi.po,3702,23106,19304,0,0,0,0,3702,23106,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/ru.po,4355,27600,27087,0,0,0,0,4355,27600,ru.po,,ru,,russian,,,ru

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/zh_cn.po,46,142,74,2348,11907,1740,13875,4134,25924,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/rw.po,0,0,0,304,1492,2652,16769,2956,18261,rw.po,,rw,,kinyarwanda,,,rw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/id.po,3702,23106,23606,0,0,0,0,3702,23106,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/es.po,4325,27075,33160,8,110,94,929,4427,28114,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/sv.po,4102,25598,23039,293,2143,7,62,4402,27803,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/uk.po,4355,27600,29441,0,0,0,0,4355,27600,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gas/po/ja.po,302,1631,975,6,34,3317,20926,3625,22591,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/it.po,485,2803,3294,0,0,0,0,485,2803,it.po,,it,,italian,,,it

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/fr.po,905,5831,7784,0,0,0,0,905,5831,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/vi.po,485,2803,4426,0,0,0,0,485,2803,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/fi.po,741,4571,3687,0,0,0,0,741,4571,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/zh_cn.po,118,459,190,319,1692,304,2420,741,4571,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/id.po,485,2803,2852,0,0,0,0,485,2803,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/es.po,792,4808,5615,0,0,89,815,881,5623,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/sv.po,59,245,245,168,840,514,3486,741,4571,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/uk.po,905,5831,6188,0,0,0,0,905,5831,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gold/po/ja.po,120,678,431,0,0,365,2125,485,2803,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/de.po,97,525,492,0,0,0,0,97,525,de.po,,de,,german,,,de

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/it.po,97,525,595,0,0,0,0,97,525,it.po,,it,,italian,,,it

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/sr.po,98,533,543,0,0,0,0,98,533,sr.po,,sr,,serbian,,,sr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/fr.po,98,533,614,0,0,0,0,98,533,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/eo.po,98,533,535,0,0,0,0,98,533,eo.po,,eo,,esperanto,,,eo

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ms.po,98,533,534,0,0,0,0,98,533,ms.po,,ms,,malay,,,ms

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/vi.po,97,525,879,0,0,0,0,97,525,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/bg.po,98,533,601,0,0,0,0,98,533,bg.po,,bg,,bulgarian,,,bg

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/tr.po,98,533,519,0,0,0,0,98,533,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/fi.po,97,526,487,0,0,0,0,97,526,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ru.po,98,533,536,0,0,0,0,98,533,ru.po,,ru,,russian,,,ru

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/nl.po,97,525,552,0,0,0,0,97,525,nl.po,,nl,,dutch,,,nl

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/rw.po,2,2,2,67,425,24,59,93,486,rw.po,,rw,,kinyarwanda,,,rw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/da.po,97,526,505,0,0,0,0,97,526,da.po,,da,,danish,,,da

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/id.po,97,525,517,0,0,0,0,97,525,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/es.po,98,533,625,0,0,0,0,98,533,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/sv.po,98,533,505,0,0,0,0,98,533,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/pt_br.po,98,533,613,0,0,0,0,98,533,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/uk.po,98,533,552,0,0,0,0,98,533,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/hu.po,98,533,545,0,0,0,0,98,533,hu.po,,hu,,hungarian,,,hu

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ro.po,93,486,539,0,0,0,0,93,486,ro.po,,ro,,romanian,,,ro

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ga.po,97,524,587,0,0,0,0,97,524,ga.po,,ga,,irish,,,ga

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,gprof/po/ja.po,28,119,90,36,136,33,270,97,525,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/de.po,283,1404,1422,0,0,206,1498,489,2902,de.po,,de,,german,,,de

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/it.po,488,2898,3402,0,0,0,0,488,2898,it.po,,it,,italian,,,it

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/sr.po,497,2968,3045,0,0,0,0,497,2968,sr.po,,sr,,serbian,,,sr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/fr.po,497,2968,3811,0,0,0,0,497,2968,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/zh_tw.po,497,2968,1403,0,0,0,0,497,2968,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/vi.po,489,2902,4515,0,0,0,0,489,2902,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/bg.po,602,3746,4315,0,0,282,2342,884,6088,bg.po,,bg,,bulgarian,,,bg

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/tr.po,460,2690,2463,50,370,64,488,574,3548,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/fi.po,497,2968,2485,0,0,0,0,497,2968,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ru.po,55,420,482,3,24,428,2446,486,2890,ru.po,,ru,,russian,,,ru

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/zh_cn.po,497,2968,1311,0,0,0,0,497,2968,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/da.po,386,2177,2100,0,0,100,713,486,2890,da.po,,da,,danish,,,da

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/id.po,489,2902,2970,0,0,0,0,489,2902,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/es.po,581,3688,4713,127,874,176,1526,884,6088,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/sv.po,497,2968,2891,0,0,0,0,497,2968,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/pt_br.po,884,6088,7062,0,0,0,0,884,6088,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/uk.po,884,6088,6380,0,0,0,0,884,6088,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ga.po,497,2968,3409,0,0,0,0,497,2968,ga.po,,ga,,irish,,,ga

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,ld/po/ja.po,489,2902,1516,0,0,0,0,489,2902,ja.po,,ja,,japanese,,,ja

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/de.po,436,2594,2560,0,0,0,0,436,2594,de.po,,de,,german,,,de

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/it.po,234,1371,1595,0,0,0,0,234,1371,it.po,,it,,italian,,,it

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/sr.po,287,1602,1611,0,0,0,0,287,1602,sr.po,,sr,,serbian,,,sr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/fr.po,362,2108,2378,0,0,0,0,362,2108,fr.po,,fr,,french,,,fr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/vi.po,292,1632,2494,0,0,0,0,292,1632,vi.po,,vi,,vietnamese,,,vi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/tr.po,148,863,783,0,0,0,0,148,863,tr.po,,tr,,turkish,,,tr

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/fi.po,287,1602,1393,0,0,0,0,287,1602,fi.po,,fi,,finnish,,,fi

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/zh_cn.po,219,1192,525,108,650,43,303,370,2145,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/nl.po,234,1371,1419,0,0,0,0,234,1371,nl.po,,nl,,dutch,,,nl

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/da.po,179,968,946,0,0,55,403,234,1371,da.po,,da,,danish,,,da

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/id.po,292,1632,1687,0,0,0,0,292,1632,id.po,,id,,indonesian,,,id

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/es.po,370,2145,2527,0,0,0,0,370,2145,es.po,,es,,spanish,,,es

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/sv.po,149,866,842,0,0,0,0,149,866,sv.po,,sv,,swedish,,,sv

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/pt_br.po,436,2594,2943,0,0,0,0,436,2594,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/uk.po,436,2594,2697,0,0,0,0,436,2594,uk.po,,uk,,ukrainian,,,uk

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/ro.po,148,863,909,0,0,0,0,148,863,ro.po,,ro,,romanian,,,ro

+ binutils-2.31.1-29.fc30.src.rpm.stats.csv,opcodes/po/ga.po,287,1602,1830,0,0,0,0,287,1602,ga.po,,ga,,irish,,,ga

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/zh_tw.po,218,753,344,0,0,5,62,223,815,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/zh_cn.po,184,687,328,0,0,39,128,223,815,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,223,815,223,815,vi.po,,vi,,vietnamese,,,vi

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/uk.po,223,815,839,0,0,0,0,223,815,uk.po,,uk,,ukrainian,,,uk

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,223,815,223,815,tr.po,,tr,,turkish,,,tr

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,223,815,223,815,th.po,,th,,thai,,,th

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,223,815,223,815,te.po,,te,,telugu,,,te

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,223,815,223,815,ta.po,,ta,,tamil,,,ta

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,223,815,223,815,sv.po,,sv,,swedish,,,sv

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sr.po,218,753,792,0,0,5,62,223,815,sr.po,,sr,,serbian,,,sr

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sq.po,132,481,575,3,11,88,323,223,815,sq.po,,sq,,albanian,,,sq

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,223,815,223,815,sl.po,,sl,,slovenian,,,sl

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/sk.po,223,815,800,0,0,0,0,223,815,sk.po,,sk,,slovak,,,sk

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,223,815,223,815,si.po,,si,,sinhala,,,si

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ru.po,135,492,471,0,0,88,323,223,815,ru.po,,ru,,russian,,,ru

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,223,815,223,815,ro.po,,ro,,romanian,,,ro

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pt_br.po,40,151,160,0,0,183,664,223,815,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pl.po,223,815,845,0,0,0,0,223,815,pl.po,,pl,,polish,,,pl

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,223,815,223,815,pa.po,,pa,,punjabi,,,pa

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,223,815,223,815,or.po,,or,,odia,,,or

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,223,815,223,815,nn.po,,nn,,norwegian nynorsk,,,nn

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,223,815,223,815,nl.po,,nl,,dutch,,,nl

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,223,815,223,815,nds.po,,nds,,low german,,,nds

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,223,815,223,815,nb.po,,nb,,norwegian bokmål,,,nb

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,223,815,223,815,ms.po,,ms,,malay,,,ms

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,223,815,223,815,mr.po,,mr,,marathi,,,mr

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,223,815,223,815,mn.po,,mn,,mongolian,,,mn

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,223,815,223,815,ml.po,,ml,,malayalam,,,ml

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,223,815,223,815,mai.po,,mai,,maithili,,,mai

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,223,815,223,815,lv.po,,lv,,latvian,,,lv

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,223,815,223,815,ky.po,,ky,,kyrgyz,,,ky

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,223,815,223,815,ko.po,,ko,,korean,,,ko

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,223,815,223,815,kn.po,,kn,,kannada,,,kn

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/kk.po,135,492,485,0,0,88,323,223,815,kk.po,,kk,,kazakh,,,kk

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,223,815,223,815,ka.po,,ka,,georgian,,,ka

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ja.po,98,276,133,0,0,125,539,223,815,ja.po,,ja,,japanese,,,ja

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/it.po,135,492,535,0,0,88,323,223,815,it.po,,it,,italian,,,it

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,223,815,223,815,is.po,,is,,icelandic,,,is

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,223,815,223,815,id.po,,id,,indonesian,,,id

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hu.po,223,815,789,0,0,0,0,223,815,hu.po,,hu,,hungarian,,,hu

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,223,815,223,815,hr.po,,hr,,croatian,,,hr

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,223,815,223,815,hi.po,,hi,,hindi,,,hi

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/he.po,77,163,168,1,1,145,651,223,815,he.po,,he,,hebrew,,,he

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,223,815,223,815,gu.po,,gu,,gujarati,,,gu

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,223,815,223,815,gl.po,,gl,,galician,,,gl

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,223,815,223,815,ga.po,,ga,,irish,,,ga

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fur.po,215,749,887,0,0,8,66,223,815,fur.po,,fur,,friulian,,,fur

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fr.po,222,811,1006,0,0,1,4,223,815,fr.po,,fr,,french,,,fr

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fi.po,115,313,283,0,0,108,502,223,815,fi.po,,fi,,finnish,,,fi

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,223,815,223,815,fa.po,,fa,,persian,,,fa

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,223,815,223,815,eu.po,,eu,,basque,,,eu

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,223,815,223,815,et.po,,et,,estonian,,,et

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/es.po,220,809,951,2,2,1,4,223,815,es.po,,es,,spanish,,,es

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,223,815,223,815,eo.po,,eo,,esperanto,,,eo

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,223,815,223,815,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,223,815,223,815,el.po,,el,,greek,,,el

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,223,815,223,815,de_ch.po,,de,ch,german,,switzerland,de_ch

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,223,815,223,815,da.po,,da,,danish,,,da

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,223,815,223,815,cy.po,,cy,,welsh,,,cy

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/cs.po,222,811,796,0,0,1,4,223,815,cs.po,,cs,,czech,,,cs

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ca.po,218,775,965,0,0,5,40,223,815,ca.po,,ca,,catalan,,,ca

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,223,815,223,815,bs.po,,bs,,bosnian,,,bs

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,223,815,223,815,brx.po,,brx,,bodo,,,brx

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,223,815,223,815,br.po,,br,,breton,,,br

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,223,815,223,815,bn_in.po,,bn,in,bangla,,india,bn_in

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/bg.po,126,466,515,0,0,97,349,223,815,bg.po,,bg,,bulgarian,,,bg

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,223,815,223,815,ast.po,,ast,,asturian,,,ast

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,223,815,223,815,as.po,,as,,assamese,,,as

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,223,815,223,815,ar.po,,ar,,arabic,,,ar

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,223,815,223,815,anp.po,,anp,,angika,,,anp

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,223,815,223,815,am.po,,am,,amharic,,,am

+ blivet-gui-2.1.10-4.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,223,815,223,815,af.po,,af,,afrikaans,,,af

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,143,2095,431,4,92,0,0,147,2187,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ru/ru.po,147,2187,1704,0,0,0,0,147,2187,ru.po,,ru,,russian,,,ru

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/de/de.po,144,2202,2138,0,0,0,0,144,2202,de.po,,de,,german,,,de

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/hu/hu.po,144,2202,1719,0,0,0,0,144,2202,hu.po,,hu,,hungarian,,,hu

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/lv/lv.po,144,2202,1704,0,0,0,0,144,2202,lv.po,,lv,,latvian,,,lv

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/el/el.po,144,2202,2092,0,0,0,0,144,2202,el.po,,el,,greek,,,el

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,261,3510,3509,0,0,0,0,261,3510,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/es/es.po,144,2202,2196,0,0,0,0,144,2202,es.po,,es,,spanish,,,es

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/id/id.po,144,2202,1944,0,0,0,0,144,2202,id.po,,id,,indonesian,,,id

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/fi/fi.po,6,29,23,26,208,112,1965,144,2202,fi.po,,fi,,finnish,,,fi

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/bg/bg.po,260,3508,3353,0,0,0,0,260,3508,bg.po,,bg,,bulgarian,,,bg

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ro/ro.po,144,2202,2205,0,0,0,0,144,2202,ro.po,,ro,,romanian,,,ro

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pl/pl.po,144,2202,1723,0,0,0,0,144,2202,pl.po,,pl,,polish,,,pl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pt/pt.po,144,2202,2190,0,0,0,0,144,2202,pt.po,,pt,,portuguese,,,pt

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/eu/eu.po,261,3510,2710,0,0,0,0,261,3510,eu.po,,eu,,basque,,,eu

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,110,1173,188,8,118,29,896,147,2187,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ja/ja.po,145,2204,168,0,0,0,0,145,2204,ja.po,,ja,,japanese,,,ja

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/gl/gl.po,147,2187,2099,0,0,0,0,147,2187,gl.po,,gl,,galician,,,gl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/fr/fr.po,144,2202,2346,0,0,0,0,144,2202,fr.po,,fr,,french,,,fr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,110,1173,188,8,118,29,896,147,2187,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/te/te.po,10,18,22,0,0,137,2169,147,2187,te.po,,te,,telugu,,,te

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ko/ko.po,144,2202,1487,0,0,0,0,144,2202,ko.po,,ko,,korean,,,ko

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/it/it.po,261,3510,3376,0,0,0,0,261,3510,it.po,,it,,italian,,,it

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/cs/cs.po,144,2202,1787,0,0,0,0,144,2202,cs.po,,cs,,czech,,,cs

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/sl/sl.po,147,2187,1760,0,0,0,0,147,2187,sl.po,,sl,,slovenian,,,sl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,144,2202,2272,0,0,0,0,144,2202,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/sv/sv.po,144,2202,2067,0,0,0,0,144,2202,sv.po,,sv,,swedish,,,sv

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,help/ca/ca.po,89,977,1016,0,0,54,1202,143,2179,ca.po,,ca,,catalan,,,ca

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/eo.po,295,842,819,0,0,673,4704,968,5546,eo.po,,eo,,esperanto,,,eo

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sr.po,968,5546,5134,0,0,0,0,968,5546,sr.po,,sr,,serbian,,,sr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nl.po,968,5546,5419,0,0,0,0,968,5546,nl.po,,nl,,dutch,,,nl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/cs.po,969,5549,4930,0,0,0,0,969,5549,cs.po,,cs,,czech,,,cs

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/tr.po,969,5549,4538,0,0,0,0,969,5549,tr.po,,tr,,turkish,,,tr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mr.po,968,5546,5220,0,0,0,0,968,5546,mr.po,,mr,,marathi,,,mr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/he.po,968,5546,4911,0,0,0,0,968,5546,he.po,,he,,hebrew,,,he

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/tg.po,968,5546,5738,0,0,0,0,968,5546,tg.po,,tg,,tajik,,,tg

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bn_in.po,968,5546,6053,0,0,0,0,968,5546,bn_in.po,,bn,in,bangla,,india,bn_in

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ar.po,946,5182,4531,0,0,22,364,968,5546,ar.po,,ar,,arabic,,,ar

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/et.po,968,5546,4251,0,0,0,0,968,5546,et.po,,et,,estonian,,,et

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pl.po,969,5549,4970,0,0,0,0,969,5549,pl.po,,pl,,polish,,,pl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/uk.po,968,5546,4764,0,0,0,0,968,5546,uk.po,,uk,,ukrainian,,,uk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en@shaw.po,986,5408,5406,0,0,0,0,986,5408,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gd.po,968,5546,7062,0,0,0,0,968,5546,gd.po,,gd,,scottish gaelic,,,gd

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/af.po,805,4286,4324,11,129,152,1131,968,5546,af.po,,af,,afrikaans,,,af

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/my.po,935,4765,1866,4,18,54,769,993,5552,my.po,,my,,burmese,,,my

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nn.po,986,5520,5110,3,63,0,0,989,5583,nn.po,,nn,,norwegian nynorsk,,,nn

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hr.po,969,5549,5030,0,0,0,0,969,5549,hr.po,,hr,,croatian,,,hr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ast.po,971,5493,5661,0,0,0,0,971,5493,ast.po,,ast,,asturian,,,ast

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mk.po,971,5493,5653,0,0,0,0,971,5493,mk.po,,mk,,macedonian,,,mk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sr@latin.po,968,5546,5134,0,0,0,0,968,5546,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ku.po,672,2889,3030,26,152,289,2411,987,5452,ku.po,,ku,,kurdish,,,ku

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ca.po,969,5549,6275,0,0,0,0,969,5549,ca.po,,ca,,catalan,,,ca

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/br.po,984,5393,6173,0,0,2,15,986,5408,br.po,,br,,breton,,,br

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/be.po,968,5546,4784,0,0,0,0,968,5546,be.po,,be,,belarusian,,,be

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fr.po,969,5549,6366,0,0,0,0,969,5549,fr.po,,fr,,french,,,fr

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en_ca.po,971,5493,5494,0,0,0,0,971,5493,en_ca.po,,en,ca,english,,canada,en_ca

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_cn.po,968,5546,1589,0,0,0,0,968,5546,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_hk.po,968,5546,1661,0,0,0,0,968,5546,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sv.po,969,5549,5097,0,0,0,0,969,5549,sv.po,,sv,,swedish,,,sv

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nb.po,969,5549,5123,0,0,0,0,969,5549,nb.po,,nb,,norwegian bokmål,,,nb

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ca@valencia.po,968,5546,6268,0,0,0,0,968,5546,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bn.po,986,5408,5606,0,0,0,0,986,5408,bn.po,,bn,,bangla,,,bn

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bg.po,968,5546,6078,0,0,0,0,968,5546,bg.po,,bg,,bulgarian,,,bg

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/en_gb.po,968,5546,5558,0,0,0,0,968,5546,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/it.po,982,5608,5414,0,0,0,0,982,5608,it.po,,it,,italian,,,it

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/nds.po,466,1332,1259,0,0,518,4070,984,5402,nds.po,,nds,,low german,,,nds

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/oc.po,968,5546,6238,0,0,0,0,968,5546,oc.po,,oc,,occitan,,,oc

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/es.po,969,5549,6058,0,0,0,0,969,5549,es.po,,es,,spanish,,,es

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ml.po,968,5546,4199,0,0,0,0,968,5546,ml.po,,ml,,malayalam,,,ml

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/kk.po,304,921,798,0,0,665,4628,969,5549,kk.po,,kk,,kazakh,,,kk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/de.po,969,5549,5351,0,0,0,0,969,5549,de.po,,de,,german,,,de

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/bs.po,968,5546,5058,0,0,0,0,968,5546,bs.po,,bs,,bosnian,,,bs

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/lt.po,969,5549,4473,0,0,0,0,969,5549,lt.po,,lt,,lithuanian,,,lt

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ja.po,968,5546,1743,0,0,0,0,968,5546,ja.po,,ja,,japanese,,,ja

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/zh_tw.po,968,5546,1661,0,0,0,0,968,5546,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/te.po,968,5546,4519,0,0,0,0,968,5546,te.po,,te,,telugu,,,te

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hi.po,968,5546,6441,0,0,0,0,968,5546,hi.po,,hi,,hindi,,,hi

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/as.po,968,5546,5755,0,0,0,0,968,5546,as.po,,as,,assamese,,,as

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fur.po,969,5549,5917,0,0,0,0,969,5549,fur.po,,fur,,friulian,,,fur

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/id.po,969,5549,4998,0,0,0,0,969,5549,id.po,,id,,indonesian,,,id

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pa.po,968,5546,5994,0,0,0,0,968,5546,pa.po,,pa,,punjabi,,,pa

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pt_br.po,969,5549,5990,0,0,0,0,969,5549,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gu.po,968,5546,5899,0,0,0,0,968,5546,gu.po,,gu,,gujarati,,,gu

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/el.po,968,5546,5813,0,0,0,0,968,5546,el.po,,el,,greek,,,el

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ga.po,495,1562,1688,9,66,476,3904,980,5532,ga.po,,ga,,irish,,,ga

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ne.po,213,476,491,497,2045,259,3028,969,5549,ne.po,,ne,,nepali,,,ne

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/kn.po,968,5546,4614,0,0,0,0,968,5546,kn.po,,kn,,kannada,,,kn

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fi.po,968,5546,4099,0,0,0,0,968,5546,fi.po,,fi,,finnish,,,fi

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ro.po,968,5546,5785,0,0,0,0,968,5546,ro.po,,ro,,romanian,,,ro

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/is.po,669,2636,2505,0,0,299,2910,968,5546,is.po,,is,,icelandic,,,is

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ms.po,56,256,219,576,1796,354,3356,986,5408,ms.po,,ms,,malay,,,ms

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ru.po,968,5546,4751,0,0,0,0,968,5546,ru.po,,ru,,russian,,,ru

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/da.po,968,5546,5079,0,0,0,0,968,5546,da.po,,da,,danish,,,da

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/eu.po,968,5546,4622,0,0,0,0,968,5546,eu.po,,eu,,basque,,,eu

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/vi.po,969,5549,7376,0,0,0,0,969,5549,vi.po,,vi,,vietnamese,,,vi

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/dz.po,752,3949,1203,0,0,0,0,752,3949,dz.po,,dz,,dzongkha,,,dz

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/gl.po,968,5546,6224,0,0,0,0,968,5546,gl.po,,gl,,galician,,,gl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/lv.po,968,5546,4488,0,0,0,0,968,5546,lv.po,,lv,,latvian,,,lv

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/or.po,968,5546,5396,0,0,0,0,968,5546,or.po,,or,,odia,,,or

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/th.po,968,5546,1743,0,0,0,0,968,5546,th.po,,th,,thai,,,th

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/km.po,966,5474,1968,5,19,0,0,971,5493,km.po,,km,,khmer,,,km

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sl.po,969,5549,5068,0,0,0,0,969,5549,sl.po,,sl,,slovenian,,,sl

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/fa.po,968,5546,5951,0,0,0,0,968,5546,fa.po,,fa,,persian,,,fa

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/hu.po,968,5546,4597,0,0,0,0,968,5546,hu.po,,hu,,hungarian,,,hu

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/mai.po,133,242,317,0,0,828,5038,961,5280,mai.po,,mai,,maithili,,,mai

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ta.po,968,5546,4597,0,0,0,0,968,5546,ta.po,,ta,,tamil,,,ta

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ug.po,977,5515,4331,0,0,0,0,977,5515,ug.po,,ug,,uyghur,,,ug

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/sk.po,969,5549,5121,0,0,0,0,969,5549,sk.po,,sk,,slovak,,,sk

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/pt.po,968,5546,5958,0,0,0,0,968,5546,pt.po,,pt,,portuguese,,,pt

+ brasero-3.12.2-8.fc30.src.rpm.stats.csv,po/ko.po,968,5546,4229,0,0,0,0,968,5546,ko.po,,ko,,korean,,,ko

+ brltty-5.6-32.fc30.src.rpm.stats.csv,messages/zh.po,774,2496,1015,6,34,0,0,780,2530,zh.po,,zh,,chinese,,,zh

+ brltty-5.6-32.fc30.src.rpm.stats.csv,messages/fr.po,796,2591,3412,0,0,0,0,796,2591,fr.po,,fr,,french,,,fr

+ brltty-5.6-32.fc30.src.rpm.stats.csv,messages/de.po,771,2439,2201,2,9,25,148,798,2596,de.po,,de,,german,,,de

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,112,1472,1038,0,0,0,0,112,1472,ko.po,,ko,,korean,,,ko

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,118,1665,219,1,15,0,0,119,1680,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,112,1472,1243,0,0,0,0,112,1472,hu.po,,hu,,hungarian,,,hu

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ca/ca.po,118,1652,1870,0,0,0,0,118,1652,ca.po,,ca,,catalan,,,ca

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,112,1472,1412,0,0,0,0,112,1472,sv.po,,sv,,swedish,,,sv

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,112,1472,1474,0,0,0,0,112,1472,gl.po,,gl,,galician,,,gl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,112,1472,1529,0,0,0,0,112,1472,de.po,,de,,german,,,de

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,115,1705,1379,0,0,0,0,115,1705,ru.po,,ru,,russian,,,ru

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,112,1472,1575,0,0,0,0,112,1472,es.po,,es,,spanish,,,es

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,112,1472,1179,0,0,0,0,112,1472,pl.po,,pl,,polish,,,pl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,112,1472,1569,0,0,0,0,112,1472,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,112,1472,1302,0,0,0,0,112,1472,cs.po,,cs,,czech,,,cs

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,112,1472,1632,0,0,0,0,112,1472,fr.po,,fr,,french,,,fr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,112,1472,1626,0,0,0,0,112,1472,el.po,,el,,greek,,,el

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/id/id.po,112,1472,1291,0,0,0,0,112,1472,id.po,,id,,indonesian,,,id

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/fi/fi.po,79,877,606,26,472,7,120,112,1469,fi.po,,fi,,finnish,,,fi

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/nl/nl.po,112,1472,1557,0,0,0,0,112,1472,nl.po,,nl,,dutch,,,nl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,help/sl/sl.po,114,1707,1468,0,0,0,0,114,1707,sl.po,,sl,,slovenian,,,sl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,122,614,580,0,0,0,0,122,614,id.po,,id,,indonesian,,,id

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,120,613,644,0,0,0,0,120,613,pa.po,,pa,,punjabi,,,pa

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,120,613,509,0,0,0,0,120,613,te.po,,te,,telugu,,,te

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,123,614,690,0,0,0,0,123,614,oc.po,,oc,,occitan,,,oc

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,123,614,603,0,0,0,0,123,614,af.po,,af,,afrikaans,,,af

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,123,614,565,0,0,0,0,123,614,sk.po,,sk,,slovak,,,sk

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,120,651,671,0,0,0,0,120,651,bn.po,,bn,,bangla,,,bn

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,123,614,672,0,0,0,0,123,614,hi.po,,hi,,hindi,,,hi

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,123,614,627,0,0,0,0,123,614,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,120,651,503,0,0,0,0,120,651,ka.po,,ka,,georgian,,,ka

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,76,238,325,32,244,12,73,120,555,ga.po,,ga,,irish,,,ga

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,120,613,500,0,0,0,0,120,613,ta.po,,ta,,tamil,,,ta

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,122,614,748,0,0,0,0,122,614,vi.po,,vi,,vietnamese,,,vi

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,122,614,471,0,0,0,0,122,614,tr.po,,tr,,turkish,,,tr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,123,614,692,0,0,0,0,123,614,ca.po,,ca,,catalan,,,ca

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,123,614,168,0,0,0,0,123,614,th.po,,th,,thai,,,th

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,122,614,646,0,0,0,0,122,614,ro.po,,ro,,romanian,,,ro

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,122,614,438,0,0,0,0,122,614,et.po,,et,,estonian,,,et

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,120,613,502,0,0,0,0,120,613,kn.po,,kn,,kannada,,,kn

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,122,614,503,0,0,0,0,122,614,lt.po,,lt,,lithuanian,,,lt

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,90,412,381,0,0,9,115,99,527,be@latin.po,latin,be,,belarusian,,,be@latin

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,95,372,333,16,197,9,82,120,651,ms.po,,ms,,malay,,,ms

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,123,614,692,0,0,0,0,123,614,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,114,592,593,6,59,0,0,120,651,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,103,530,538,0,0,0,0,103,530,nn.po,,nn,,norwegian nynorsk,,,nn

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,122,614,608,0,0,0,0,122,614,sr.po,,sr,,serbian,,,sr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,120,613,577,0,0,0,0,120,613,or.po,,or,,odia,,,or

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,122,614,657,0,0,0,0,122,614,nl.po,,nl,,dutch,,,nl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,123,614,609,0,0,0,0,123,614,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,119,530,502,0,0,4,84,123,614,ar.po,,ar,,arabic,,,ar

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,122,614,711,0,0,0,0,122,614,gl.po,,gl,,galician,,,gl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,123,614,591,0,0,0,0,123,614,gu.po,,gu,,gujarati,,,gu

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,119,550,599,0,0,0,0,119,550,mk.po,,mk,,macedonian,,,mk

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,122,614,564,0,0,0,0,122,614,sl.po,,sl,,slovenian,,,sl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,122,614,711,0,0,0,0,122,614,es.po,,es,,spanish,,,es

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,122,614,505,0,0,0,0,122,614,hu.po,,hu,,hungarian,,,hu

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,122,614,512,0,0,0,0,122,614,lv.po,,lv,,latvian,,,lv

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,122,614,711,0,0,0,0,122,614,fr.po,,fr,,french,,,fr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,120,613,513,0,0,0,0,120,613,mr.po,,mr,,marathi,,,mr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,123,614,531,0,0,0,0,123,614,ne.po,,ne,,nepali,,,ne

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,122,614,593,0,0,0,0,122,614,nb.po,,nb,,norwegian bokmål,,,nb

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,123,614,477,0,0,0,0,123,614,ml.po,,ml,,malayalam,,,ml

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,125,574,442,0,0,0,0,125,574,ug.po,,ug,,uyghur,,,ug

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,120,613,578,0,0,0,0,120,613,bs.po,,bs,,bosnian,,,bs

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,120,613,581,0,0,0,0,120,613,as.po,,as,,assamese,,,as

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,123,614,205,0,0,0,0,123,614,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,123,614,561,0,0,0,0,123,614,bg.po,,bg,,bulgarian,,,bg

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,118,538,574,0,0,1,12,119,550,ast.po,,ast,,asturian,,,ast

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,122,614,603,0,0,0,0,122,614,it.po,,it,,italian,,,it

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,120,613,608,0,0,0,0,120,613,tg.po,,tg,,tajik,,,tg

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,121,630,154,0,0,0,0,121,630,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,54,104,96,0,0,68,556,122,660,nds.po,,nds,,low german,,,nds

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,123,614,617,0,0,0,0,123,614,fa.po,,fa,,persian,,,fa

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,123,614,655,0,0,0,0,123,614,pt.po,,pt,,portuguese,,,pt

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,122,614,574,0,0,0,0,122,614,eo.po,,eo,,esperanto,,,eo

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,122,614,707,0,0,0,0,122,614,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zu.po,70,185,164,2,109,0,0,72,294,zu.po,,zu,,zulu,,,zu

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,122,614,153,0,0,0,0,122,614,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,123,614,566,0,0,0,0,123,614,is.po,,is,,icelandic,,,is

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,122,614,446,0,0,0,0,122,614,ko.po,,ko,,korean,,,ko

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,122,614,573,0,0,0,0,122,614,pl.po,,pl,,polish,,,pl

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,123,614,667,0,0,0,0,123,614,an.po,,an,,aragonese,,,an

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,71,193,178,14,44,24,267,109,504,xh.po,,xh,,xhosa,,,xh

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,72,333,367,0,0,7,56,79,389,ps.po,,ps,,pashto,,,ps

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,122,614,575,0,0,0,0,122,614,cs.po,,cs,,czech,,,cs

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/lo.po,123,614,182,0,0,0,0,123,614,lo.po,,lo,,lao,,,lo

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,123,614,608,0,0,0,0,123,614,he.po,,he,,hebrew,,,he

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,119,550,193,0,0,0,0,119,550,km.po,,km,,khmer,,,km

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,123,614,520,0,0,0,0,123,614,eu.po,,eu,,basque,,,eu

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,120,613,602,0,0,0,0,120,613,bn_in.po,,bn,in,bangla,,india,bn_in

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,122,614,667,0,0,0,0,122,614,el.po,,el,,greek,,,el

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,122,614,663,0,0,0,0,122,614,fur.po,,fur,,friulian,,,fur

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,99,527,567,0,0,0,0,99,527,sq.po,,sq,,albanian,,,sq

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,122,614,560,0,0,0,0,122,614,hr.po,,hr,,croatian,,,hr

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,92,398,415,0,0,7,128,99,526,ku.po,,ku,,kurdish,,,ku

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,125,576,441,0,0,0,0,125,576,ky.po,,ky,,kyrgyz,,,ky

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,122,614,423,0,0,0,0,122,614,fi.po,,fi,,finnish,,,fi

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,122,614,559,0,0,0,0,122,614,da.po,,da,,danish,,,da

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,59,304,183,0,0,0,0,59,304,dz.po,,dz,,dzongkha,,,dz

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,123,614,502,0,0,0,0,123,614,be.po,,be,,belarusian,,,be

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,123,614,518,0,0,0,0,123,614,uk.po,,uk,,ukrainian,,,uk

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,122,614,580,0,0,0,0,122,614,sv.po,,sv,,swedish,,,sv

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,122,614,511,0,0,0,0,122,614,ru.po,,ru,,russian,,,ru

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,29,146,167,0,0,93,513,122,659,mai.po,,mai,,maithili,,,mai

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,122,614,184,0,0,0,0,122,614,ja.po,,ja,,japanese,,,ja

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,122,614,472,0,0,0,0,122,614,kk.po,,kk,,kazakh,,,kk

+ cheese-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,122,614,611,0,0,0,0,122,614,de.po,,de,,german,,,de

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/zh_tw.po,94,503,265,0,0,9,52,103,555,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/zh_cn.po,96,524,263,0,0,7,31,103,555,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/vi.po,72,346,441,0,0,31,209,103,555,vi.po,,vi,,vietnamese,,,vi

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ur.po,82,400,422,0,0,21,155,103,555,ur.po,,ur,,urdu,,,ur

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/uk.po,96,524,503,0,0,7,31,103,555,uk.po,,uk,,ukrainian,,,uk

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/tr.po,92,480,410,4,44,7,31,103,555,tr.po,,tr,,turkish,,,tr

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/th.po,29,180,103,0,0,74,375,103,555,th.po,,th,,thai,,,th

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/tg.po,91,477,531,0,0,12,78,103,555,tg.po,,tg,,tajik,,,tg

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/te.po,94,503,418,0,0,9,52,103,555,te.po,,te,,telugu,,,te

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ta.po,94,503,434,0,0,9,52,103,555,ta.po,,ta,,tamil,,,ta

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sv.po,96,524,539,0,0,7,31,103,555,sv.po,,sv,,swedish,,,sv

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sr@latin.po,88,438,418,0,0,15,117,103,555,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sr.po,96,524,499,0,0,7,31,103,555,sr.po,,sr,,serbian,,,sr

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sq.po,95,519,567,1,5,7,31,103,555,sq.po,,sq,,albanian,,,sq

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sl.po,84,413,410,0,0,19,142,103,555,sl.po,,sl,,slovenian,,,sl

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/sk.po,96,524,519,0,0,7,31,103,555,sk.po,,sk,,slovak,,,sk

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/si.po,12,38,38,0,0,91,517,103,555,si.po,,si,,sinhala,,,si

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ru.po,96,524,482,0,0,7,31,103,555,ru.po,,ru,,russian,,,ru

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,96,513,96,513,ro.po,,ro,,romanian,,,ro

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pt_br.po,96,524,570,0,0,7,31,103,555,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pt.po,96,524,601,0,0,7,31,103,555,pt.po,,pt,,portuguese,,,pt

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pl.po,96,524,543,0,0,7,31,103,555,pl.po,,pl,,polish,,,pl

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/pa.po,92,480,555,0,0,11,75,103,555,pa.po,,pa,,punjabi,,,pa

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/or.po,94,503,568,0,0,9,52,103,555,or.po,,or,,odia,,,or

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nn.po,6,6,6,0,0,97,549,103,555,nn.po,,nn,,norwegian nynorsk,,,nn

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nl.po,96,524,545,0,0,7,31,103,555,nl.po,,nl,,dutch,,,nl

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nds.po,6,6,6,0,0,97,549,103,555,nds.po,,nds,,low german,,,nds

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/nb.po,92,480,491,0,0,11,75,103,555,nb.po,,nb,,norwegian bokmål,,,nb

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,93,487,93,487,my.po,,my,,burmese,,,my

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ms.po,84,413,405,0,0,19,142,103,555,ms.po,,ms,,malay,,,ms

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mr.po,94,503,482,0,0,9,52,103,555,mr.po,,mr,,marathi,,,mr

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ml.po,96,524,440,0,0,7,31,103,555,ml.po,,ml,,malayalam,,,ml

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mk.po,84,413,463,0,0,19,142,103,555,mk.po,,mk,,macedonian,,,mk

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/mai.po,88,438,509,0,0,15,117,103,555,mai.po,,mai,,maithili,,,mai

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/lv.po,91,477,428,0,0,12,78,103,555,lv.po,,lv,,latvian,,,lv

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,93,487,93,487,lo.po,,lo,,lao,,,lo

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,93,487,93,487,ku.po,,ku,,kurdish,,,ku

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ko.po,96,524,467,0,0,7,31,103,555,ko.po,,ko,,korean,,,ko

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/kn.po,94,503,464,0,0,9,52,103,555,kn.po,,kn,,kannada,,,kn

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/km.po,96,524,301,0,0,7,31,103,555,km.po,,km,,khmer,,,km

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ka.po,55,237,221,0,0,48,318,103,555,ka.po,,ka,,georgian,,,ka

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ja.po,95,516,295,1,8,7,31,103,555,ja.po,,ja,,japanese,,,ja

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/it.po,94,503,531,0,0,9,52,103,555,it.po,,it,,italian,,,it

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/is.po,91,477,481,0,0,12,78,103,555,is.po,,is,,icelandic,,,is

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/id.po,94,503,506,0,0,9,52,103,555,id.po,,id,,indonesian,,,id

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ia.po,94,503,546,0,0,9,52,103,555,ia.po,,ia,,interlingua,,,ia

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,93,487,93,487,hy.po,,hy,,armenian,,,hy

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hu.po,94,503,503,0,0,9,52,103,555,hu.po,,hu,,hungarian,,,hu

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hr.po,84,413,412,0,0,19,142,103,555,hr.po,,hr,,croatian,,,hr

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/hi.po,94,503,601,0,0,9,52,103,555,hi.po,,hi,,hindi,,,hi

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,96,513,96,513,he.po,,he,,hebrew,,,he

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/gu.po,94,503,547,0,0,9,52,103,555,gu.po,,gu,,gujarati,,,gu

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/gl.po,94,503,579,0,0,9,52,103,555,gl.po,,gl,,galician,,,gl

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fr.po,96,524,591,0,0,7,31,103,555,fr.po,,fr,,french,,,fr

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fi.po,96,524,460,0,0,7,31,103,555,fi.po,,fi,,finnish,,,fi

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/fa.po,91,477,513,0,0,12,78,103,555,fa.po,,fa,,persian,,,fa

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/eu.po,6,6,6,0,0,97,549,103,555,eu.po,,eu,,basque,,,eu

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/et.po,92,480,423,0,0,11,75,103,555,et.po,,et,,estonian,,,et

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/es.po,96,524,580,0,0,7,31,103,555,es.po,,es,,spanish,,,es

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/en_gb.po,88,438,438,0,0,15,117,103,555,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/el.po,94,503,517,0,0,9,52,103,555,el.po,,el,,greek,,,el

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/de.po,96,524,553,0,0,7,31,103,555,de.po,,de,,german,,,de

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/da.po,92,480,481,0,0,11,75,103,555,da.po,,da,,danish,,,da

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/cy.po,84,413,438,0,0,19,142,103,555,cy.po,,cy,,welsh,,,cy

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/cs.po,96,524,482,0,0,7,31,103,555,cs.po,,cs,,czech,,,cs

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ca.po,96,524,641,0,0,7,31,103,555,ca.po,,ca,,catalan,,,ca

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bs.po,82,400,398,0,0,21,155,103,555,bs.po,,bs,,bosnian,,,bs

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bn_in.po,92,480,488,0,0,11,75,103,555,bn_in.po,,bn,in,bangla,,india,bn_in

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bn.po,91,477,485,0,0,12,78,103,555,bn.po,,bn,,bangla,,,bn

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bg.po,95,522,554,0,0,8,33,103,555,bg.po,,bg,,bulgarian,,,bg

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/be.po,81,393,372,0,0,22,162,103,555,be.po,,be,,belarusian,,,be

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/bal.po,84,413,436,0,0,19,142,103,555,bal.po,,bal,,baluchi,,,bal

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/as.po,94,503,505,0,0,9,52,103,555,as.po,,as,,assamese,,,as

+ chkconfig-1.11-4.fc30.src.rpm.stats.csv,po/ar.po,90,453,442,0,0,13,102,103,555,ar.po,,ar,,arabic,,,ar

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/tr.po,49,313,288,0,0,0,0,49,313,tr.po,,tr,,turkish,,,tr

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sv.po,49,313,304,0,0,0,0,49,313,sv.po,,sv,,swedish,,,sv

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sr.po,49,313,315,0,0,0,0,49,313,sr.po,,sr,,serbian,,,sr

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sl.po,13,14,15,19,59,14,235,46,308,sl.po,,sl,,slovenian,,,sl

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/sk.po,47,329,354,0,0,0,0,47,329,sk.po,,sk,,slovak,,,sk

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ru.po,49,313,292,0,0,0,0,49,313,ru.po,,ru,,russian,,,ru

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pt_br.po,49,313,390,0,0,0,0,49,313,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pt.po,11,13,18,9,31,26,264,46,308,pt.po,,pt,,portuguese,,,pt

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/pl.po,49,313,304,0,0,0,0,49,313,pl.po,,pl,,polish,,,pl

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/oc.po,44,184,251,2,124,0,0,46,308,oc.po,,oc,,occitan,,,oc

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/nl.po,49,313,333,0,0,0,0,49,313,nl.po,,nl,,dutch,,,nl

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/nb.po,20,30,29,0,0,27,299,47,329,nb.po,,nb,,norwegian bokmål,,,nb

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ko.po,46,331,325,0,0,0,0,46,331,ko.po,,ko,,korean,,,ko

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/it.po,47,329,388,0,0,0,0,47,329,it.po,,it,,italian,,,it

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/id.po,49,313,314,0,0,0,0,49,313,id.po,,id,,indonesian,,,id

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/hu.po,49,313,306,0,0,0,0,49,313,hu.po,,hu,,hungarian,,,hu

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/hr.po,49,313,301,0,0,0,0,49,313,hr.po,,hr,,croatian,,,hr

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/gl.po,47,329,418,0,0,0,0,47,329,gl.po,,gl,,galician,,,gl

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/gd.po,46,331,444,0,0,0,0,46,331,gd.po,,gd,,scottish gaelic,,,gd

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/fr.po,46,331,436,0,0,0,0,46,331,fr.po,,fr,,french,,,fr

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/fi.po,38,139,121,3,61,8,113,49,313,fi.po,,fi,,finnish,,,fi

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/et.po,40,162,164,0,0,9,151,49,313,et.po,,et,,estonian,,,et

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/es.po,49,313,394,0,0,0,0,49,313,es.po,,es,,spanish,,,es

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/el.po,28,109,135,2,32,16,167,46,308,el.po,,el,,greek,,,el

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/de.po,49,313,331,0,0,0,0,49,313,de.po,,de,,german,,,de

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/da.po,49,313,312,0,0,0,0,49,313,da.po,,da,,danish,,,da

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/cs.po,49,313,317,0,0,0,0,49,313,cs.po,,cs,,czech,,,cs

+ chrome-gnome-shell-10.1-4.fc30.src.rpm.stats.csv,po/ca.po,46,331,412,0,0,0,0,46,331,ca.po,,ca,,catalan,,,ca

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ro.po,514,2335,2272,95,459,66,263,675,3057,ro.po,,ro,,romanian,,,ro

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/eo.po,287,983,904,71,295,317,1779,675,3057,eo.po,,eo,,esperanto,,,eo

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sl.po,675,3057,2589,0,0,0,0,675,3057,sl.po,,sl,,slovenian,,,sl

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sv.po,675,3057,2402,0,0,0,0,675,3057,sv.po,,sv,,swedish,,,sv

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ps.po,1,1,1,0,0,674,3056,675,3057,ps.po,,ps,,pashto,,,ps

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/it.po,675,3057,3074,0,0,0,0,675,3057,it.po,,it,,italian,,,it

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/bg.po,675,3057,3108,0,0,0,0,675,3057,bg.po,,bg,,bulgarian,,,bg

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ca.po,675,3057,3514,0,0,0,0,675,3057,ca.po,,ca,,catalan,,,ca

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sr.po,675,3057,2708,0,0,0,0,675,3057,sr.po,,sr,,serbian,,,sr

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/lv.po,675,3057,2351,0,0,0,0,675,3057,lv.po,,lv,,latvian,,,lv

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pt.po,675,3057,3395,0,0,0,0,675,3057,pt.po,,pt,,portuguese,,,pt

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sr@latin.po,675,3057,2710,0,0,0,0,675,3057,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/kk.po,67,113,119,0,0,608,2944,675,3057,kk.po,,kk,,kazakh,,,kk

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fa.po,1,1,1,0,0,674,3056,675,3057,fa.po,,fa,,persian,,,fa

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/lt.po,675,3057,2240,0,0,0,0,675,3057,lt.po,,lt,,lithuanian,,,lt

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/kn.po,304,928,732,32,169,339,1960,675,3057,kn.po,,kn,,kannada,,,kn

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/mk.po,521,2366,2379,93,447,61,244,675,3057,mk.po,,mk,,macedonian,,,mk

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/gl.po,675,3057,3384,0,0,0,0,675,3057,gl.po,,gl,,galician,,,gl

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fr.po,675,3057,3443,0,0,0,0,675,3057,fr.po,,fr,,french,,,fr

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/or.po,307,945,838,62,251,306,1861,675,3057,or.po,,or,,odia,,,or

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/an.po,672,3030,3299,3,27,0,0,675,3057,an.po,,an,,aragonese,,,an

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/tr.po,527,2223,1743,35,202,113,632,675,3057,tr.po,,tr,,turkish,,,tr

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hr.po,17,58,62,1,3,657,2996,675,3057,hr.po,,hr,,croatian,,,hr

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_hk.po,669,3022,919,3,27,3,8,675,3057,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/de.po,675,3057,2821,0,0,0,0,675,3057,de.po,,de,,german,,,de

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/id.po,675,3057,2573,0,0,0,0,675,3057,id.po,,id,,indonesian,,,id

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/az_ir.po,1,1,1,0,0,674,3056,675,3057,az_ir.po,,az,ir,azerbaijani,,iran,az_ir

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fur.po,174,587,622,0,0,501,2470,675,3057,fur.po,,fur,,friulian,,,fur

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/be.po,675,3057,2357,0,0,0,0,675,3057,be.po,,be,,belarusian,,,be

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pt_br.po,675,3057,3290,0,0,0,0,675,3057,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ja.po,653,2947,743,14,85,8,25,675,3057,ja.po,,ja,,japanese,,,ja

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ru.po,675,3057,2485,0,0,0,0,675,3057,ru.po,,ru,,russian,,,ru

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/fi.po,44,122,91,6,34,625,2901,675,3057,fi.po,,fi,,finnish,,,fi

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/nl.po,439,1893,1867,128,624,108,540,675,3057,nl.po,,nl,,dutch,,,nl

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pa.po,66,142,142,15,51,594,2864,675,3057,pa.po,,pa,,punjabi,,,pa

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ar.po,1,1,1,0,0,674,3056,675,3057,ar.po,,ar,,arabic,,,ar

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/eu.po,675,3057,2345,0,0,0,0,675,3057,eu.po,,eu,,basque,,,eu

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ca@valencia.po,669,3022,3468,3,27,3,8,675,3057,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/pl.po,675,3057,2599,0,0,0,0,675,3057,pl.po,,pl,,polish,,,pl

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ast.po,515,2319,2411,93,441,67,297,675,3057,ast.po,,ast,,asturian,,,ast

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/yi.po,1,1,1,0,0,674,3056,675,3057,yi.po,,yi,,yiddish,,,yi

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ml.po,124,296,240,3,15,548,2746,675,3057,ml.po,,ml,,malayalam,,,ml

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/bs.po,672,3030,2656,3,27,0,0,675,3057,bs.po,,bs,,bosnian,,,bs

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_cn.po,675,3057,902,0,0,0,0,675,3057,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/oc.po,675,3057,3457,0,0,0,0,675,3057,oc.po,,oc,,occitan,,,oc

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/cs.po,675,3057,2742,0,0,0,0,675,3057,cs.po,,cs,,czech,,,cs

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/as.po,669,3022,2472,3,27,3,8,675,3057,as.po,,as,,assamese,,,as

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ur.po,1,1,1,0,0,674,3056,675,3057,ur.po,,ur,,urdu,,,ur

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/sk.po,675,3057,2724,0,0,0,0,675,3057,sk.po,,sk,,slovak,,,sk

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/te.po,653,2947,2268,14,85,8,25,675,3057,te.po,,te,,telugu,,,te

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hi.po,653,2947,2999,14,85,8,25,675,3057,hi.po,,hi,,hindi,,,hi

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/zh_tw.po,675,3057,932,0,0,0,0,675,3057,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ko.po,16,50,41,0,0,659,3007,675,3057,ko.po,,ko,,korean,,,ko

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ug.po,153,372,339,1,2,521,2683,675,3057,ug.po,,ug,,uyghur,,,ug

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/hu.po,675,3057,2541,0,0,0,0,675,3057,hu.po,,hu,,hungarian,,,hu

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/da.po,675,3057,2397,0,0,0,0,675,3057,da.po,,da,,danish,,,da

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/es.po,675,3057,3534,0,0,0,0,675,3057,es.po,,es,,spanish,,,es

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/he.po,675,3057,3057,0,0,0,0,675,3057,he.po,,he,,hebrew,,,he

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/nb.po,351,1069,849,19,110,305,1878,675,3057,nb.po,,nb,,norwegian bokmål,,,nb

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/el.po,675,3057,2998,0,0,0,0,675,3057,el.po,,el,,greek,,,el

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/en_gb.po,675,3057,3057,0,0,0,0,675,3057,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/km.po,527,2389,733,88,428,60,240,675,3057,km.po,,km,,khmer,,,km

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/ta.po,515,2319,1645,93,441,67,297,675,3057,ta.po,,ta,,tamil,,,ta

+ clutter-1.26.2-8.fc30.src.rpm.stats.csv,po/uk.po,672,3030,2651,3,27,0,0,675,3057,uk.po,,uk,,ukrainian,,,uk

+ clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/ja.po,1,5,4,0,0,0,0,1,5,ja.po,,ja,,japanese,,,ja

+ clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/pl.po,1,5,5,0,0,0,0,1,5,pl.po,,pl,,polish,,,pl

+ clutter-gtk-1.8.4-5.fc30.src.rpm.stats.csv,po/zh_cn.po,1,5,3,0,0,0,0,1,5,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/th.po,80,393,144,0,0,0,0,80,393,th.po,,th,,thai,,,th

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ca.po,76,378,523,0,0,0,0,76,378,ca.po,,ca,,catalan,,,ca

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ta.po,76,378,346,0,0,0,0,76,378,ta.po,,ta,,tamil,,,ta

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/he.po,76,378,378,0,0,0,0,76,378,he.po,,he,,hebrew,,,he

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_tw.po,76,378,141,0,0,0,0,76,378,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/bg.po,80,393,589,0,0,0,0,80,393,bg.po,,bg,,bulgarian,,,bg

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pl.po,80,393,389,0,0,0,0,80,393,pl.po,,pl,,polish,,,pl

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ca@valencia.po,76,378,523,0,0,0,0,76,378,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/nb.po,14,39,42,0,0,66,354,80,393,nb.po,,nb,,norwegian bokmål,,,nb

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/bs.po,76,378,382,0,0,0,0,76,378,bs.po,,bs,,bosnian,,,bs

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pa.po,25,62,63,0,0,51,316,76,378,pa.po,,pa,,punjabi,,,pa

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/hu.po,76,378,339,0,0,0,0,76,378,hu.po,,hu,,hungarian,,,hu

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/cs.po,80,393,414,0,0,0,0,80,393,cs.po,,cs,,czech,,,cs

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/nl.po,4,15,11,0,0,71,346,75,361,nl.po,,nl,,dutch,,,nl

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/vi.po,4,15,17,0,0,71,346,75,361,vi.po,,vi,,vietnamese,,,vi

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/eu.po,80,393,369,0,0,0,0,80,393,eu.po,,eu,,basque,,,eu

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sv.po,80,393,340,0,0,0,0,80,393,sv.po,,sv,,swedish,,,sv

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sr@latin.po,80,393,389,0,0,0,0,80,393,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ko.po,80,393,353,0,0,0,0,80,393,ko.po,,ko,,korean,,,ko

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ru.po,76,378,343,0,0,0,0,76,378,ru.po,,ru,,russian,,,ru

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/an.po,80,393,501,0,0,0,0,80,393,an.po,,an,,aragonese,,,an

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/kn.po,4,15,15,0,0,71,346,75,361,kn.po,,kn,,kannada,,,kn

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/lv.po,80,393,344,0,0,0,0,80,393,lv.po,,lv,,latvian,,,lv

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/id.po,80,393,388,0,0,0,0,80,393,id.po,,id,,indonesian,,,id

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/es.po,76,378,508,0,0,0,0,76,378,es.po,,es,,spanish,,,es

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pt.po,80,393,464,0,0,0,0,80,393,pt.po,,pt,,portuguese,,,pt

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/hi.po,76,378,510,0,0,0,0,76,378,hi.po,,hi,,hindi,,,hi

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/gl.po,77,370,496,0,0,0,0,77,370,gl.po,,gl,,galician,,,gl

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/el.po,80,393,410,0,0,0,0,80,393,el.po,,el,,greek,,,el

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/fr.po,80,393,531,0,0,0,0,80,393,fr.po,,fr,,french,,,fr

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/de.po,76,378,323,0,0,0,0,76,378,de.po,,de,,german,,,de

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/km.po,71,320,136,4,41,0,0,75,361,km.po,,km,,khmer,,,km

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_cn.po,80,393,164,0,0,0,0,80,393,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sr.po,80,393,389,0,0,0,0,80,393,sr.po,,sr,,serbian,,,sr

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/be.po,80,393,361,0,0,0,0,80,393,be.po,,be,,belarusian,,,be

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sk.po,80,393,436,0,0,0,0,80,393,sk.po,,sk,,slovak,,,sk

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/fa.po,4,15,18,0,0,71,346,75,361,fa.po,,fa,,persian,,,fa

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/it.po,76,378,455,0,0,0,0,76,378,it.po,,it,,italian,,,it

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ug.po,69,295,332,0,0,11,98,80,393,ug.po,,ug,,uyghur,,,ug

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ja.po,76,378,119,0,0,0,0,76,378,ja.po,,ja,,japanese,,,ja

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/te.po,76,378,349,0,0,0,0,76,378,te.po,,te,,telugu,,,te

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/sl.po,76,378,358,0,0,0,0,76,378,sl.po,,sl,,slovenian,,,sl

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/as.po,76,378,418,0,0,0,0,76,378,as.po,,as,,assamese,,,as

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/en_ca.po,4,15,15,0,0,71,346,75,361,en_ca.po,,en,ca,english,,canada,en_ca

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/uk.po,80,393,360,0,0,0,0,80,393,uk.po,,uk,,ukrainian,,,uk

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/en_gb.po,76,378,378,0,0,0,0,76,378,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/eo.po,7,15,17,0,0,66,340,73,355,eo.po,,eo,,esperanto,,,eo

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ml.po,2,4,4,0,0,74,374,76,378,ml.po,,ml,,malayalam,,,ml

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/oc.po,80,393,535,0,0,0,0,80,393,oc.po,,oc,,occitan,,,oc

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ast.po,4,15,21,0,0,71,346,75,361,ast.po,,ast,,asturian,,,ast

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/zh_hk.po,76,378,141,0,0,0,0,76,378,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/lt.po,80,393,345,0,0,0,0,80,393,lt.po,,lt,,lithuanian,,,lt

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/pt_br.po,80,393,515,0,0,0,0,80,393,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/or.po,4,15,19,0,0,71,346,75,361,or.po,,or,,odia,,,or

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/ar.po,4,15,15,0,0,71,346,75,361,ar.po,,ar,,arabic,,,ar

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/tr.po,80,393,374,0,0,0,0,80,393,tr.po,,tr,,turkish,,,tr

+ cogl-1.22.2-12.fc30.src.rpm.stats.csv,po/da.po,76,378,319,0,0,0,0,76,378,da.po,,da,,danish,,,da

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,253,1990,546,0,0,0,0,253,1990,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,253,1990,504,0,0,0,0,253,1990,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/uk.po,253,1990,1960,0,0,0,0,253,1990,uk.po,,uk,,ukrainian,,,uk

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/tr.po,211,1928,1622,0,0,42,62,253,1990,tr.po,,tr,,turkish,,,tr

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/th.po,2,11,4,0,0,97,377,99,388,th.po,,th,,thai,,,th

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ta.po,8,25,22,0,0,91,363,99,388,ta.po,,ta,,tamil,,,ta

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sv.po,253,1990,1728,0,0,0,0,253,1990,sv.po,,sv,,swedish,,,sv

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,8,25,32,0,0,91,363,99,388,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sr.po,211,1928,1817,0,0,42,62,253,1990,sr.po,,sr,,serbian,,,sr

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sl.po,127,522,496,0,0,126,1468,253,1990,sl.po,,sl,,slovenian,,,sl

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/sk.po,89,334,319,0,0,164,1656,253,1990,sk.po,,sk,,slovak,,,sk

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ru.po,253,1990,1910,0,0,0,0,253,1990,ru.po,,ru,,russian,,,ru

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ro.po,75,303,343,0,0,178,1687,253,1990,ro.po,,ro,,romanian,,,ro

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,253,1990,2325,0,0,0,0,253,1990,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pt.po,111,372,427,0,0,142,1618,253,1990,pt.po,,pt,,portuguese,,,pt

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pl.po,253,1990,1896,0,0,0,0,253,1990,pl.po,,pl,,polish,,,pl

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/pa.po,8,25,26,0,0,91,363,99,388,pa.po,,pa,,punjabi,,,pa

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/or.po,8,25,29,0,0,91,363,99,388,or.po,,or,,odia,,,or

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/oc.po,120,432,520,0,0,133,1558,253,1990,oc.po,,oc,,occitan,,,oc

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/nl.po,97,386,417,0,0,156,1604,253,1990,nl.po,,nl,,dutch,,,nl

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/nb.po,150,673,565,0,0,103,1317,253,1990,nb.po,,nb,,norwegian bokmål,,,nb

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/mr.po,8,25,23,0,0,91,363,99,388,mr.po,,mr,,marathi,,,mr

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ml.po,8,25,24,0,0,91,363,99,388,ml.po,,ml,,malayalam,,,ml

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/lv.po,121,497,401,0,0,132,1493,253,1990,lv.po,,lv,,latvian,,,lv

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/lt.po,59,209,193,0,0,194,1781,253,1990,lt.po,,lt,,lithuanian,,,lt

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ko.po,253,1990,1519,0,0,0,0,253,1990,ko.po,,ko,,korean,,,ko

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/kn.po,8,25,25,0,0,91,363,99,388,kn.po,,kn,,kannada,,,kn

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/kk.po,5,5,5,0,0,198,1880,203,1885,kk.po,,kk,,kazakh,,,kk

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ja.po,134,545,175,0,0,119,1445,253,1990,ja.po,,ja,,japanese,,,ja

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/it.po,253,1990,2088,0,0,0,0,253,1990,it.po,,it,,italian,,,it

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/is.po,132,448,399,0,0,121,1542,253,1990,is.po,,is,,icelandic,,,is

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/id.po,215,837,785,0,0,38,1153,253,1990,id.po,,id,,indonesian,,,id

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hu.po,253,1990,1682,0,0,0,0,253,1990,hu.po,,hu,,hungarian,,,hu

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hr.po,166,899,803,0,0,87,1091,253,1990,hr.po,,hr,,croatian,,,hr

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/hi.po,8,25,28,0,0,91,363,99,388,hi.po,,hi,,hindi,,,hi

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/he.po,38,162,135,0,0,215,1828,253,1990,he.po,,he,,hebrew,,,he

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/gu.po,8,25,25,0,0,91,363,99,388,gu.po,,gu,,gujarati,,,gu

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/gl.po,151,630,726,0,0,102,1360,253,1990,gl.po,,gl,,galician,,,gl

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fur.po,179,753,888,0,0,74,1237,253,1990,fur.po,,fur,,friulian,,,fur

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fr.po,148,732,832,0,0,105,1258,253,1990,fr.po,,fr,,french,,,fr

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/fi.po,43,161,100,0,0,210,1829,253,1990,fi.po,,fi,,finnish,,,fi

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/eu.po,49,129,105,0,0,204,1861,253,1990,eu.po,,eu,,basque,,,eu

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/es.po,197,1850,2073,0,0,56,140,253,1990,es.po,,es,,spanish,,,es

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/eo.po,5,5,5,0,0,198,1880,203,1885,eo.po,,eo,,esperanto,,,eo

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,252,1986,1986,0,0,1,4,253,1990,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/el.po,203,1885,2153,0,0,50,105,253,1990,el.po,,el,,greek,,,el

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/de.po,246,1865,1697,0,0,7,125,253,1990,de.po,,de,,german,,,de

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/da.po,253,1990,1767,0,0,0,0,253,1990,da.po,,da,,danish,,,da

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/cs.po,253,1990,1889,0,0,0,0,253,1990,cs.po,,cs,,czech,,,cs

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/ca.po,253,1990,2435,0,0,0,0,253,1990,ca.po,,ca,,catalan,,,ca

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,8,25,34,0,0,91,363,99,388,bn_in.po,,bn,in,bangla,,india,bn_in

+ colord-1.4.4-1.fc30.src.rpm.stats.csv,po/as.po,8,25,29,0,0,91,363,99,388,as.po,,as,,assamese,,,as

+ colord-gtk-0.1.26-11.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,1,5,1,5,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/fr.po,1801,21330,25058,0,0,0,0,1801,21330,fr.po,,fr,,french,,,fr

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/lg.po,1044,9115,13604,487,8924,270,3291,1801,21330,lg.po,,lg,,ganda,,,lg

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/af.po,341,1519,1740,454,2568,1006,17243,1801,21330,af.po,,af,,afrikaans,,,af

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/da.po,1801,21330,20361,0,0,0,0,1801,21330,da.po,,da,,danish,,,da

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/uk.po,1801,21330,21047,0,0,0,0,1801,21330,uk.po,,uk,,ukrainian,,,uk

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/eu.po,384,1329,1394,846,12704,571,7297,1801,21330,eu.po,,eu,,basque,,,eu

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ca.po,1739,20201,25537,40,882,22,247,1801,21330,ca.po,,ca,,catalan,,,ca

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ru.po,1801,21330,20782,0,0,0,0,1801,21330,ru.po,,ru,,russian,,,ru

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/de.po,1682,19179,18992,81,1683,38,468,1801,21330,de.po,,de,,german,,,de

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/bg.po,1216,12550,14074,312,5079,273,3701,1801,21330,bg.po,,bg,,bulgarian,,,bg

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/kk.po,21,36,35,143,471,1637,20823,1801,21330,kk.po,,kk,,kazakh,,,kk

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/el.po,175,948,1147,711,5571,915,14811,1801,21330,el.po,,el,,greek,,,el

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/id.po,1012,8436,8509,518,9522,271,3372,1801,21330,id.po,,id,,indonesian,,,id

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ga.po,820,6614,7401,588,9942,393,4774,1801,21330,ga.po,,ga,,irish,,,ga

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ms.po,259,1260,1284,543,3921,999,16149,1801,21330,ms.po,,ms,,malay,,,ms

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/fi.po,876,6281,5417,555,9689,370,5360,1801,21330,fi.po,,fi,,finnish,,,fi

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/nl.po,1679,19048,19644,81,1683,41,599,1801,21330,nl.po,,nl,,dutch,,,nl

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/hr.po,1801,21330,21709,0,0,0,0,1801,21330,hr.po,,hr,,croatian,,,hr

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/zh_tw.po,371,2618,1246,669,8497,761,10215,1801,21330,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/hu.po,1739,20201,19987,40,882,22,247,1801,21330,hu.po,,hu,,hungarian,,,hu

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sr.po,1682,19179,18890,81,1683,38,468,1801,21330,sr.po,,sr,,serbian,,,sr

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sv.po,1760,20567,19823,28,639,13,124,1801,21330,sv.po,,sv,,swedish,,,sv

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pt_br.po,1801,21330,24672,0,0,0,0,1801,21330,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/eo.po,1243,9987,9741,177,2326,381,9017,1801,21330,eo.po,,eo,,esperanto,,,eo

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/vi.po,1760,20567,28379,28,639,13,124,1801,21330,vi.po,,vi,,vietnamese,,,vi

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sk.po,678,3774,3889,491,5387,632,12169,1801,21330,sk.po,,sk,,slovak,,,sk

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ja.po,1127,9920,4970,450,8773,224,2637,1801,21330,ja.po,,ja,,japanese,,,ja

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pt.po,1760,20567,21822,28,639,13,124,1801,21330,pt.po,,pt,,portuguese,,,pt

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/gl.po,222,1537,1816,756,7228,823,12565,1801,21330,gl.po,,gl,,galician,,,gl

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/sl.po,1645,18594,19010,105,2151,51,585,1801,21330,sl.po,,sl,,slovenian,,,sl

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/nb.po,1760,20567,20901,28,639,13,124,1801,21330,nb.po,,nb,,norwegian bokmål,,,nb

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1447,13490,4919,206,5912,148,1928,1801,21330,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/it.po,1098,9643,10929,468,8885,235,2802,1801,21330,it.po,,it,,italian,,,it

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/be.po,479,2615,2531,470,4529,852,14186,1801,21330,be.po,,be,,belarusian,,,be

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ko.po,168,1298,1135,715,6399,918,13633,1801,21330,ko.po,,ko,,korean,,,ko

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/lt.po,367,1639,1518,252,1620,1182,18071,1801,21330,lt.po,,lt,,lithuanian,,,lt

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ro.po,557,2485,2737,252,1782,992,17063,1801,21330,ro.po,,ro,,romanian,,,ro

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/cs.po,1760,20567,20079,28,639,13,124,1801,21330,cs.po,,cs,,czech,,,cs

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/ia.po,89,270,348,43,164,1669,20896,1801,21330,ia.po,,ia,,interlingua,,,ia

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/es.po,1399,14738,17951,270,5225,132,1367,1801,21330,es.po,,es,,spanish,,,es

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/et.po,1760,20567,17280,28,639,13,124,1801,21330,et.po,,et,,estonian,,,et

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/tr.po,1026,8321,7437,177,2112,598,10897,1801,21330,tr.po,,tr,,turkish,,,tr

+ coreutils-8.31-1.fc30.src.rpm.stats.csv,po/pl.po,1801,21330,21063,0,0,0,0,1801,21330,pl.po,,pl,,polish,,,pl

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/zh_cn.po,162,1101,403,45,211,106,590,313,1902,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/sv.po,293,1795,1770,15,86,5,21,313,1902,sv.po,,sv,,swedish,,,sv

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/sr.po,293,1795,1866,15,86,5,21,313,1902,sr.po,,sr,,serbian,,,sr

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/tr.po,293,1795,1606,15,86,5,21,313,1902,tr.po,,tr,,turkish,,,tr

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/it.po,293,1795,2020,15,86,5,21,313,1902,it.po,,it,,italian,,,it

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/nl.po,293,1795,1808,15,86,5,21,313,1902,nl.po,,nl,,dutch,,,nl

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/uk.po,293,1795,1786,15,86,5,21,313,1902,uk.po,,uk,,ukrainian,,,uk

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/ja.po,293,1795,846,15,86,5,21,313,1902,ja.po,,ja,,japanese,,,ja

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/pt_br.po,38,197,244,52,272,223,1433,313,1902,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/ga.po,162,1101,1453,45,211,106,590,313,1902,ga.po,,ga,,irish,,,ga

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/ru.po,293,1795,1785,15,86,5,21,313,1902,ru.po,,ru,,russian,,,ru

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/pl.po,293,1795,1800,15,86,5,21,313,1902,pl.po,,pl,,polish,,,pl

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/vi.po,293,1795,2633,15,86,5,21,313,1902,vi.po,,vi,,vietnamese,,,vi

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/ro.po,38,197,235,52,272,223,1433,313,1902,ro.po,,ro,,romanian,,,ro

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/fi.po,293,1795,1472,15,86,5,21,313,1902,fi.po,,fi,,finnish,,,fi

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/id.po,293,1795,1804,15,86,5,21,313,1902,id.po,,id,,indonesian,,,id

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/gl.po,125,567,722,9,43,179,1292,313,1902,gl.po,,gl,,galician,,,gl

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/ko.po,33,174,159,57,295,223,1433,313,1902,ko.po,,ko,,korean,,,ko

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/hr.po,293,1795,1754,15,86,5,21,313,1902,hr.po,,hr,,croatian,,,hr

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/hu.po,293,1795,1799,15,86,5,21,313,1902,hu.po,,hu,,hungarian,,,hu

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/fr.po,293,1795,2158,15,86,5,21,313,1902,fr.po,,fr,,french,,,fr

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/de.po,293,1795,1765,15,86,5,21,313,1902,de.po,,de,,german,,,de

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/zh_tw.po,178,899,458,39,240,96,763,313,1902,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/da.po,293,1795,1722,15,86,5,21,313,1902,da.po,,da,,danish,,,da

+ cpio-2.12-10.fc30.src.rpm.stats.csv,po/es.po,267,1598,1983,15,86,31,218,313,1902,es.po,,es,,spanish,,,es

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/cs.po,15,93,74,0,0,1,3,16,96,cs.po,,cs,,czech,,,cs

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ko.po,15,93,64,0,0,1,3,16,96,ko.po,,ko,,korean,,,ko

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ru.po,15,93,66,0,0,1,3,16,96,ru.po,,ru,,russian,,,ru

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pt_br.po,15,93,89,0,0,1,3,16,96,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/or.po,15,93,88,0,0,1,3,16,96,or.po,,or,,odia,,,or

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/fi.po,15,93,51,0,0,1,3,16,96,fi.po,,fi,,finnish,,,fi

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ja.po,15,93,15,0,0,1,3,16,96,ja.po,,ja,,japanese,,,ja

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/es.po,15,93,83,0,0,1,3,16,96,es.po,,es,,spanish,,,es

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/de.po,15,93,83,0,0,1,3,16,96,de.po,,de,,german,,,de

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/bn_in.po,15,93,96,0,0,1,3,16,96,bn_in.po,,bn,in,bangla,,india,bn_in

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pl.po,15,93,73,0,0,1,3,16,96,pl.po,,pl,,polish,,,pl

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/zh_tw.po,15,93,17,0,0,1,3,16,96,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/nl.po,15,93,93,0,0,1,3,16,96,nl.po,,nl,,dutch,,,nl

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pt.po,15,93,103,0,0,1,3,16,96,pt.po,,pt,,portuguese,,,pt

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/kn.po,15,93,68,0,0,1,3,16,96,kn.po,,kn,,kannada,,,kn

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/hi.po,15,93,105,0,0,1,3,16,96,hi.po,,hi,,hindi,,,hi

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/gu.po,15,93,80,0,0,1,3,16,96,gu.po,,gu,,gujarati,,,gu

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/sk.po,15,93,80,0,0,1,3,16,96,sk.po,,sk,,slovak,,,sk

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ml.po,15,93,52,0,0,1,3,16,96,ml.po,,ml,,malayalam,,,ml

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/nb.po,15,93,85,0,0,1,3,16,96,nb.po,,nb,,norwegian bokmål,,,nb

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/it.po,15,93,84,0,0,1,3,16,96,it.po,,it,,italian,,,it

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/el.po,15,93,67,0,0,1,3,16,96,el.po,,el,,greek,,,el

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/sl_si.po,15,93,80,0,0,1,3,16,96,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/te.po,15,93,73,0,0,1,3,16,96,te.po,,te,,telugu,,,te

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/ta.po,15,93,72,0,0,1,3,16,96,ta.po,,ta,,tamil,,,ta

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/pa.po,15,93,97,0,0,1,3,16,96,pa.po,,pa,,punjabi,,,pa

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/as.po,15,93,82,0,0,1,3,16,96,as.po,,as,,assamese,,,as

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/uk.po,15,93,78,0,0,1,3,16,96,uk.po,,uk,,ukrainian,,,uk

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/hu.po,15,93,65,0,0,1,3,16,96,hu.po,,hu,,hungarian,,,hu

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/mr.po,15,93,66,0,0,1,3,16,96,mr.po,,mr,,marathi,,,mr

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/lt.po,15,93,77,0,0,1,3,16,96,lt.po,,lt,,lithuanian,,,lt

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/fr.po,15,93,87,0,0,1,3,16,96,fr.po,,fr,,french,,,fr

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/da.po,15,93,90,0,0,1,3,16,96,da.po,,da,,danish,,,da

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/zh_cn.po,15,93,1,0,0,1,3,16,96,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cracklib-2.9.6-19.fc30.src.rpm.stats.csv,po/tr.po,15,93,89,0,0,1,3,16,96,tr.po,,tr,,turkish,,,tr

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/sv.po,232,1483,1348,403,2700,47,374,682,4557,sv.po,,sv,,swedish,,,sv

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/nl.po,148,921,934,373,2483,161,1153,682,4557,nl.po,,nl,,dutch,,,nl

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/fr.po,680,4545,6045,2,12,0,0,682,4557,fr.po,,fr,,french,,,fr

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/ru.po,680,4545,4445,2,12,0,0,682,4557,ru.po,,ru,,russian,,,ru

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/pl.po,680,4545,4693,2,12,0,0,682,4557,pl.po,,pl,,polish,,,pl

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,422,2584,991,166,1247,94,726,682,4557,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/es.po,642,4222,5944,29,240,11,95,682,4557,es.po,,es,,spanish,,,es

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/cs.po,680,4545,4595,2,12,0,0,682,4557,cs.po,,cs,,czech,,,cs

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/da.po,680,4545,4138,2,12,0,0,682,4557,da.po,,da,,danish,,,da

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/fi.po,141,882,631,371,2460,170,1215,682,4557,fi.po,,fi,,finnish,,,fi

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,680,4545,5814,2,12,0,0,682,4557,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/uk.po,680,4545,4986,2,12,0,0,682,4557,uk.po,,uk,,ukrainian,,,uk

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/id.po,60,340,343,252,1574,370,2643,682,4557,id.po,,id,,indonesian,,,id

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/de.po,680,4545,4624,2,12,0,0,682,4557,de.po,,de,,german,,,de

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/sr.po,148,921,899,367,2442,167,1194,682,4557,sr.po,,sr,,serbian,,,sr

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/vi.po,148,921,1371,372,2477,162,1159,682,4557,vi.po,,vi,,vietnamese,,,vi

+ cryptsetup-2.1.0-3.fc30.src.rpm.stats.csv,po/it.po,680,4545,5476,2,12,0,0,682,4557,it.po,,it,,italian,,,it

+ cups-filters-1.22.5-1.fc30.src.rpm.stats.csv,filter/braille/drivers/common/fr-braille.po,79,203,250,0,0,0,0,79,203,fr-braille.po,braille,fr,,french,,,fr@braille

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/zh_tw.po,22,149,22,0,0,0,0,22,149,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pl.po,22,149,132,0,0,0,0,22,149,pl.po,,pl,,polish,,,pl

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/hu.po,22,149,98,0,0,0,0,22,149,hu.po,,hu,,hungarian,,,hu

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/nl.po,22,149,164,0,0,0,0,22,149,nl.po,,nl,,dutch,,,nl

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/id.po,22,149,149,0,0,0,0,22,149,id.po,,id,,indonesian,,,id

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/cs.po,22,149,129,0,0,0,0,22,149,cs.po,,cs,,czech,,,cs

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sl.po,22,149,127,0,0,0,0,22,149,sl.po,,sl,,slovenian,,,sl

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sv.po,22,149,166,0,0,0,0,22,149,sv.po,,sv,,swedish,,,sv

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pt.po,22,149,153,0,0,0,0,22,149,pt.po,,pt,,portuguese,,,pt

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/hr.po,22,149,135,0,0,0,0,22,149,hr.po,,hr,,croatian,,,hr

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/zh_cn.po,22,149,22,0,0,0,0,22,149,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ka.po,16,90,59,0,0,6,59,22,149,ka.po,,ka,,georgian,,,ka

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/uk.po,22,149,159,0,0,0,0,22,149,uk.po,,uk,,ukrainian,,,uk

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/gl.po,22,149,152,0,0,0,0,22,149,gl.po,,gl,,galician,,,gl

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/fr.po,22,149,168,0,0,0,0,22,149,fr.po,,fr,,french,,,fr

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sk.po,22,149,127,0,0,0,0,22,149,sk.po,,sk,,slovak,,,sk

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/sr.po,22,149,133,0,0,0,0,22,149,sr.po,,sr,,serbian,,,sr

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ru.po,22,149,135,0,0,0,0,22,149,ru.po,,ru,,russian,,,ru

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/en_gb.po,22,149,149,0,0,0,0,22,149,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/lv.po,22,149,118,0,0,0,0,22,149,lv.po,,lv,,latvian,,,lv

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/eo.po,22,149,127,0,0,0,0,22,149,eo.po,,eo,,esperanto,,,eo

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/it.po,22,149,204,0,0,0,0,22,149,it.po,,it,,italian,,,it

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ca.po,22,149,208,0,0,0,0,22,149,ca.po,,ca,,catalan,,,ca

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/pt_br.po,22,149,154,0,0,0,0,22,149,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/fi.po,7,30,29,0,0,15,119,22,149,fi.po,,fi,,finnish,,,fi

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/es.po,22,149,185,0,0,0,0,22,149,es.po,,es,,spanish,,,es

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ko.po,22,149,101,0,0,0,0,22,149,ko.po,,ko,,korean,,,ko

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/en.po,22,149,149,0,0,0,0,22,149,en.po,,en,,english,,,en

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/kk.po,20,136,112,0,0,2,13,22,149,kk.po,,kk,,kazakh,,,kk

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/oc.po,22,149,168,0,0,0,0,22,149,oc.po,,oc,,occitan,,,oc

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ja.po,22,149,22,0,0,0,0,22,149,ja.po,,ja,,japanese,,,ja

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/ia.po,22,149,158,0,0,0,0,22,149,ia.po,,ia,,interlingua,,,ia

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/da.po,22,149,156,0,0,0,0,22,149,da.po,,da,,danish,,,da

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/de.po,22,149,158,0,0,0,0,22,149,de.po,,de,,german,,,de

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/eu.po,22,149,131,0,0,0,0,22,149,eu.po,,eu,,basque,,,eu

+ cups-pk-helper-0.2.6-7.fc30.src.rpm.stats.csv,po/tr.po,22,149,168,0,0,0,0,22,149,tr.po,,tr,,turkish,,,tr

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/da.po,263,1839,1794,3,47,0,0,266,1886,da.po,,da,,danish,,,da

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ru.po,266,1886,1855,0,0,0,0,266,1886,ru.po,,ru,,russian,,,ru

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/fr.po,266,1886,2289,0,0,0,0,266,1886,fr.po,,fr,,french,,,fr

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,266,1886,2207,0,0,0,0,266,1886,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/uk.po,266,1886,1950,0,0,0,0,266,1886,uk.po,,uk,,ukrainian,,,uk

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ca.po,84,415,537,125,1085,57,386,266,1886,ca.po,,ca,,catalan,,,ca

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/id.po,232,1668,1635,23,164,11,54,266,1886,id.po,,id,,indonesian,,,id

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/it.po,247,1735,1962,14,138,5,13,266,1886,it.po,,it,,italian,,,it

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/sr.po,263,1839,1747,3,47,0,0,266,1886,sr.po,,sr,,serbian,,,sr

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/nl.po,266,1886,1991,0,0,0,0,266,1886,nl.po,,nl,,dutch,,,nl

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ms.po,121,630,641,134,1104,11,152,266,1886,ms.po,,ms,,malay,,,ms

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/hr.po,151,724,741,19,123,96,1039,266,1886,hr.po,,hr,,croatian,,,hr

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/vi.po,266,1886,2782,0,0,0,0,266,1886,vi.po,,vi,,vietnamese,,,vi

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pt.po,266,1886,2039,0,0,0,0,266,1886,pt.po,,pt,,portuguese,,,pt

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/he.po,73,318,351,129,1094,64,474,266,1886,he.po,,he,,hebrew,,,he

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/hu.po,263,1839,1839,3,47,0,0,266,1886,hu.po,,hu,,hungarian,,,hu

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/nb.po,266,1886,1965,0,0,0,0,266,1886,nb.po,,nb,,norwegian bokmål,,,nb

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/sv.po,266,1886,1862,0,0,0,0,266,1886,sv.po,,sv,,swedish,,,sv

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,85,421,250,124,1079,57,386,266,1886,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,266,1886,851,0,0,0,0,266,1886,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ro.po,72,315,341,130,1097,64,474,266,1886,ro.po,,ro,,romanian,,,ro

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ga.po,84,415,450,125,1085,57,386,266,1886,ga.po,,ga,,irish,,,ga

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/fi.po,143,788,691,101,884,22,214,266,1886,fi.po,,fi,,finnish,,,fi

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/el.po,263,1839,2017,3,47,0,0,266,1886,el.po,,el,,greek,,,el

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/pl.po,263,1839,1828,3,47,0,0,266,1886,pl.po,,pl,,polish,,,pl

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/cs.po,266,1886,1876,0,0,0,0,266,1886,cs.po,,cs,,czech,,,cs

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/de.po,266,1886,1862,0,0,0,0,266,1886,de.po,,de,,german,,,de

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/es.po,232,1668,2009,23,164,11,54,266,1886,es.po,,es,,spanish,,,es

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/ja.po,204,1495,748,50,332,12,59,266,1886,ja.po,,ja,,japanese,,,ja

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/eo.po,263,1839,1776,3,47,0,0,266,1886,eo.po,,eo,,esperanto,,,eo

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/bg.po,266,1886,2185,0,0,0,0,266,1886,bg.po,,bg,,bulgarian,,,bg

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/lv.po,232,1668,1554,23,164,11,54,266,1886,lv.po,,lv,,latvian,,,lv

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/tr.po,266,1886,1811,0,0,0,0,266,1886,tr.po,,tr,,turkish,,,tr

+ diffutils-3.7-2.fc30.src.rpm.stats.csv,po/gl.po,110,554,655,129,1085,27,247,266,1886,gl.po,,gl,,galician,,,gl

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,677,3327,1176,0,0,74,391,751,3718,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,660,3253,1287,0,0,91,465,751,3718,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,470,1748,470,1748,ur.po,,ur,,urdu,,,ur

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/uk.po,745,3671,3814,0,0,6,47,751,3718,uk.po,,uk,,ukrainian,,,uk

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/tr.po,531,2174,2038,0,0,220,1544,751,3718,tr.po,,tr,,turkish,,,tr

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/th.po,57,195,138,0,0,694,3523,751,3718,th.po,,th,,thai,,,th

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sv.po,745,3671,3593,0,0,6,47,751,3718,sv.po,,sv,,swedish,,,sv

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,134,476,490,1,5,335,1267,470,1748,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sr.po,431,1724,1812,0,0,320,1994,751,3718,sr.po,,sr,,serbian,,,sr

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sq.po,20,91,103,0,0,731,3627,751,3718,sq.po,,sq,,albanian,,,sq

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/sk.po,177,640,664,1,2,573,3076,751,3718,sk.po,,sk,,slovak,,,sk

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ru.po,719,3502,3426,0,0,32,216,751,3718,ru.po,,ru,,russian,,,ru

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,650,3194,3527,0,0,101,524,751,3718,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pt.po,442,1926,2186,23,140,286,1652,751,3718,pt.po,,pt,,portuguese,,,pt

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pl.po,745,3671,3738,0,0,6,47,751,3718,pl.po,,pl,,polish,,,pl

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/pa.po,486,1734,2182,0,0,265,1984,751,3718,pa.po,,pa,,punjabi,,,pa

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/nl.po,745,3671,3726,0,0,6,47,751,3718,nl.po,,nl,,dutch,,,nl

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/nb.po,92,294,330,0,0,659,3424,751,3718,nb.po,,nb,,norwegian bokmål,,,nb

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ms.po,8,22,22,0,0,743,3696,751,3718,ms.po,,ms,,malay,,,ms

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/mr.po,63,157,181,0,0,688,3561,751,3718,mr.po,,mr,,marathi,,,mr

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ml.po,16,50,57,1,4,734,3664,751,3718,ml.po,,ml,,malayalam,,,ml

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/lt.po,219,715,663,1,2,531,3001,751,3718,lt.po,,lt,,lithuanian,,,lt

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ko.po,402,2230,1978,3,29,346,1459,751,3718,ko.po,,ko,,korean,,,ko

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/kk.po,135,326,316,1,2,615,3390,751,3718,kk.po,,kk,,kazakh,,,kk

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ka.po,105,221,214,1,2,645,3495,751,3718,ka.po,,ka,,georgian,,,ka

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ja.po,669,3293,1374,0,0,82,425,751,3718,ja.po,,ja,,japanese,,,ja

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/it.po,622,3070,3579,0,0,129,648,751,3718,it.po,,it,,italian,,,it

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/id.po,218,645,674,1,2,532,3071,751,3718,id.po,,id,,indonesian,,,id

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hu.po,745,3671,3633,0,0,6,47,751,3718,hu.po,,hu,,hungarian,,,hu

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,751,3718,751,3718,hr.po,,hr,,croatian,,,hr

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,470,1748,470,1748,hi.po,,hi,,hindi,,,hi

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/he.po,45,93,103,0,0,706,3625,751,3718,he.po,,he,,hebrew,,,he

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/gu.po,78,176,224,0,0,673,3542,751,3718,gu.po,,gu,,gujarati,,,gu

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/gd.po,0,0,0,0,0,751,3718,751,3718,gd.po,,gd,,scottish gaelic,,,gd

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fur.po,551,2555,3169,2,8,198,1155,751,3718,fur.po,,fur,,friulian,,,fur

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fr.po,745,3671,4657,0,0,6,47,751,3718,fr.po,,fr,,french,,,fr

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fil.po,144,513,665,0,0,607,3205,751,3718,fil.po,,fil,,filipino,,,fil

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/fi.po,340,1146,1039,0,0,411,2572,751,3718,fi.po,,fi,,finnish,,,fi

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/eu.po,333,1140,1121,0,0,418,2578,751,3718,eu.po,,eu,,basque,,,eu

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/es.po,744,3661,4336,0,0,7,57,751,3718,es.po,,es,,spanish,,,es

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/eo.po,520,2073,2031,0,0,231,1645,751,3718,eo.po,,eo,,esperanto,,,eo

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,333,1381,1381,0,0,418,2337,751,3718,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/el.po,5,5,6,0,0,746,3713,751,3718,el.po,,el,,greek,,,el

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/de.po,672,3288,3291,0,0,79,430,751,3718,de.po,,de,,german,,,de

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/da.po,745,3671,3542,0,0,6,47,751,3718,da.po,,da,,danish,,,da

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/cs.po,618,2887,2822,0,0,133,831,751,3718,cs.po,,cs,,czech,,,cs

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ca.po,618,2838,3698,0,0,133,880,751,3718,ca.po,,ca,,catalan,,,ca

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,751,3718,751,3718,bn_in.po,,bn,in,bangla,,india,bn_in

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/bg.po,383,1652,1778,0,0,368,2066,751,3718,bg.po,,bg,,bulgarian,,,bg

+ dnf-4.2.2-2.fc30.src.rpm.stats.csv,po/ar.po,21,80,71,0,0,730,3638,751,3718,ar.po,,ar,,arabic,,,ar

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/zh_tw.po,147,953,344,0,0,41,227,188,1180,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,136,770,299,0,0,52,410,188,1180,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/uk.po,188,1180,1203,0,0,0,0,188,1180,uk.po,,uk,,ukrainian,,,uk

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/tr.po,30,170,156,0,0,158,1010,188,1180,tr.po,,tr,,turkish,,,tr

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sv.po,188,1180,1091,0,0,0,0,188,1180,sv.po,,sv,,swedish,,,sv

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sr.po,50,237,240,0,0,138,943,188,1180,sr.po,,sr,,serbian,,,sr

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/sq.po,2,10,9,0,0,186,1170,188,1180,sq.po,,sq,,albanian,,,sq

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ru.po,188,1180,1136,0,0,0,0,188,1180,ru.po,,ru,,russian,,,ru

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pt_br.po,133,746,845,0,0,55,434,188,1180,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pl.po,188,1180,1162,0,0,0,0,188,1180,pl.po,,pl,,polish,,,pl

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/pa.po,25,101,128,0,0,163,1079,188,1180,pa.po,,pa,,punjabi,,,pa

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ko.po,116,652,594,0,0,72,528,188,1180,ko.po,,ko,,korean,,,ko

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ja.po,136,770,326,0,0,52,410,188,1180,ja.po,,ja,,japanese,,,ja

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/it.po,131,726,866,1,13,56,441,188,1180,it.po,,it,,italian,,,it

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/id.po,38,219,229,0,0,150,961,188,1180,id.po,,id,,indonesian,,,id

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/hu.po,188,1180,1132,0,0,0,0,188,1180,hu.po,,hu,,hungarian,,,hu

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/fr.po,188,1180,1418,0,0,0,0,188,1180,fr.po,,fr,,french,,,fr

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/fi.po,40,164,139,0,0,148,1016,188,1180,fi.po,,fi,,finnish,,,fi

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/eu.po,5,5,5,0,0,183,1175,188,1180,eu.po,,eu,,basque,,,eu

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/es.po,184,1133,1287,0,0,4,47,188,1180,es.po,,es,,spanish,,,es

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/de.po,131,729,734,0,0,57,451,188,1180,de.po,,de,,german,,,de

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/da.po,188,1180,1089,0,0,0,0,188,1180,da.po,,da,,danish,,,da

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/cs.po,121,685,654,0,0,67,495,188,1180,cs.po,,cs,,czech,,,cs

+ dnf-plugins-core-4.0.6-1.fc30.src.rpm.stats.csv,po/ca.po,119,673,851,0,0,69,507,188,1180,ca.po,,ca,,catalan,,,ca

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/de.po,501,2918,2721,0,0,0,0,501,2918,de.po,,de,,german,,,de

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/fr.po,400,2284,3028,46,285,55,349,501,2918,fr.po,,fr,,french,,,fr

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/id.po,132,745,738,153,858,216,1315,501,2918,id.po,,id,,indonesian,,,id

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/es.po,253,1430,1605,186,1101,62,387,501,2918,es.po,,es,,spanish,,,es

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,501,2918,501,2918,it.po,,it,,italian,,,it

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,501,2918,501,2918,fi.po,,fi,,finnish,,,fi

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/ro.po,134,757,775,152,856,215,1305,501,2918,ro.po,,ro,,romanian,,,ro

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/pt_br.po,0,0,0,0,0,501,2918,501,2918,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/no.po,134,757,754,152,856,215,1305,501,2918,no.po,,no,,norwegian,,,no

+ dnsmasq-2.80-4.fc30.src.rpm.stats.csv,po/pl.po,484,2805,3128,11,70,6,43,501,2918,pl.po,,pl,,polish,,,pl

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/zh_cn.po,292,4132,900,0,0,0,0,292,4132,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/uk.po,280,3838,3963,3,18,9,276,292,4132,uk.po,,uk,,ukrainian,,,uk

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/sv.po,292,4132,3629,0,0,0,0,292,4132,sv.po,,sv,,swedish,,,sv

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/pt_br.po,292,4132,4495,0,0,0,0,292,4132,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/pl.po,292,4132,3748,0,0,0,0,292,4132,pl.po,,pl,,polish,,,pl

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/nl.po,257,3253,2975,9,92,26,787,292,4132,nl.po,,nl,,dutch,,,nl

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/fr.po,292,4132,4593,0,0,0,0,292,4132,fr.po,,fr,,french,,,fr

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/es.po,237,2897,3205,13,195,42,1040,292,4132,es.po,,es,,spanish,,,es

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po-man/de.po,292,4132,3876,0,0,0,0,292,4132,de.po,,de,,german,,,de

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/zh_tw.po,73,649,403,31,266,21,123,125,1038,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/zh_cn.po,125,1038,567,0,0,0,0,125,1038,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/vi.po,124,928,1291,0,0,1,110,125,1038,vi.po,,vi,,vietnamese,,,vi

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/uk.po,120,993,1099,0,0,5,45,125,1038,uk.po,,uk,,ukrainian,,,uk

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/sv.po,125,1038,960,0,0,0,0,125,1038,sv.po,,sv,,swedish,,,sv

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/sr.po,120,993,969,0,0,5,45,125,1038,sr.po,,sr,,serbian,,,sr

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/ru.po,125,1038,1029,0,0,0,0,125,1038,ru.po,,ru,,russian,,,ru

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/pt_br.po,125,1038,1228,0,0,0,0,125,1038,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/pl.po,125,1038,997,0,0,0,0,125,1038,pl.po,,pl,,polish,,,pl

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/nl.po,119,883,851,0,0,6,155,125,1038,nl.po,,nl,,dutch,,,nl

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/nb.po,125,1038,926,0,0,0,0,125,1038,nb.po,,nb,,norwegian bokmål,,,nb

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/ja.po,120,993,691,0,0,5,45,125,1038,ja.po,,ja,,japanese,,,ja

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/hu.po,120,993,947,0,0,5,45,125,1038,hu.po,,hu,,hungarian,,,hu

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/fr.po,125,1038,1225,0,0,0,0,125,1038,fr.po,,fr,,french,,,fr

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/es.po,116,938,1118,4,55,5,45,125,1038,es.po,,es,,spanish,,,es

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/eo.po,114,815,740,5,68,6,155,125,1038,eo.po,,eo,,esperanto,,,eo

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/de.po,120,993,987,0,0,5,45,125,1038,de.po,,de,,german,,,de

+ dos2unix-7.4.0-6.fc30.src.rpm.stats.csv,po/da.po,120,993,864,0,0,5,45,125,1038,da.po,,da,,danish,,,da

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1499,9697,3127,49,444,18,119,1566,10260,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/vi.po,1547,10128,14506,13,85,6,47,1566,10260,vi.po,,vi,,vietnamese,,,vi

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/uk.po,1564,10240,11203,1,4,1,16,1566,10260,uk.po,,uk,,ukrainian,,,uk

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/tr.po,672,3766,3843,424,2918,470,3576,1566,10260,tr.po,,tr,,turkish,,,tr

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/sv.po,1564,10240,9971,1,4,1,16,1566,10260,sv.po,,sv,,swedish,,,sv

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/sr.po,1516,9796,10467,35,360,15,104,1566,10260,sr.po,,sr,,serbian,,,sr

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/pl.po,1564,10240,10499,1,4,1,16,1566,10260,pl.po,,pl,,polish,,,pl

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/nl.po,1466,9141,9617,47,559,53,560,1566,10260,nl.po,,nl,,dutch,,,nl

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/ms.po,237,953,964,638,2949,691,6358,1566,10260,ms.po,,ms,,malay,,,ms

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/it.po,607,3115,3631,483,3282,476,3863,1566,10260,it.po,,it,,italian,,,it

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/id.po,816,4875,4947,358,2583,392,2802,1566,10260,id.po,,id,,indonesian,,,id

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/hu.po,1516,9796,9661,35,360,15,104,1566,10260,hu.po,,hu,,hungarian,,,hu

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/fr.po,1564,10240,13359,1,4,1,16,1566,10260,fr.po,,fr,,french,,,fr

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/fi.po,241,1074,898,106,528,1219,8658,1566,10260,fi.po,,fi,,finnish,,,fi

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/es.po,1564,10240,14124,1,4,1,16,1566,10260,es.po,,es,,spanish,,,es

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/eo.po,918,5210,5268,152,897,496,4153,1566,10260,eo.po,,eo,,esperanto,,,eo

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/de.po,1516,9796,10937,35,360,15,104,1566,10260,de.po,,de,,german,,,de

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/da.po,1365,8206,8136,1,4,200,2050,1566,10260,da.po,,da,,danish,,,da

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/cs.po,1564,10240,10616,1,4,1,16,1566,10260,cs.po,,cs,,czech,,,cs

+ e2fsprogs-1.44.6-1.fc30.src.rpm.stats.csv,po/ca.po,1253,7784,11026,186,1409,127,1067,1566,10260,ca.po,,ca,,catalan,,,ca

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/de.po,226,875,847,177,886,838,6725,1241,8486,de.po,,de,,german,,,de

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/es.po,899,5985,7201,240,1671,102,830,1241,8486,es.po,,es,,spanish,,,es

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/ja.po,513,2958,1529,246,1402,482,4126,1241,8486,ja.po,,ja,,japanese,,,ja

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/pl.po,1125,7486,7859,99,847,17,153,1241,8486,pl.po,,pl,,polish,,,pl

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/uk.po,1085,7158,7796,126,1030,30,298,1241,8486,uk.po,,uk,,ukrainian,,,uk

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/en@quot.po,1241,8486,8486,0,0,0,0,1241,8486,en@quot.po,quot,en,,english,,,en@quot

+ elfutils-0.176-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,1241,8486,8487,0,0,0,0,1241,8486,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,115,1550,373,0,0,19,39,134,1589,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,99,327,186,134,1203,151,3019,384,4549,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/uk/uk.po,234,3273,2766,0,0,0,0,234,3273,uk.po,,uk,,ukrainian,,,uk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/th/th.po,75,763,298,0,0,159,2504,234,3267,th.po,,th,,thai,,,th

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,38,41,45,0,0,346,4497,384,4538,te.po,,te,,telugu,,,te

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,395,4727,4347,0,0,0,0,395,4727,sv.po,,sv,,swedish,,,sv

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,430,5061,4248,0,0,0,0,430,5061,sl.po,,sl,,slovenian,,,sl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,419,4931,4187,0,0,11,130,430,5061,ru.po,,ru,,russian,,,ru

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,56,256,273,0,0,360,4620,416,4876,ro.po,,ro,,romanian,,,ro

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,396,4697,5113,0,0,0,0,396,4697,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,395,4750,3801,0,0,0,0,395,4750,pl.po,,pl,,polish,,,pl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/pa/pa.po,174,1453,1506,0,0,60,1820,234,3273,pa.po,,pa,,punjabi,,,pa

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/oc/oc.po,69,162,193,0,0,165,3107,234,3269,oc.po,,oc,,occitan,,,oc

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/lv/lv.po,398,4739,3657,0,0,0,0,398,4739,lv.po,,lv,,latvian,,,lv

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,416,4876,3439,0,0,0,0,416,4876,ko.po,,ko,,korean,,,ko

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,414,4866,885,2,10,0,0,416,4876,ja.po,,ja,,japanese,,,ja

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/it/it.po,234,3273,3350,0,0,0,0,234,3273,it.po,,it,,italian,,,it

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,395,4750,3918,0,0,0,0,395,4750,hu.po,,hu,,hungarian,,,hu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,430,5061,5061,0,0,0,0,430,5061,gl.po,,gl,,galician,,,gl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,396,4699,5219,0,0,0,0,396,4699,fr.po,,fr,,french,,,fr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,404,4805,3018,2,31,10,40,416,4876,fi.po,,fi,,finnish,,,fi

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/eu/eu.po,217,3053,2295,0,0,0,0,217,3053,eu.po,,eu,,basque,,,eu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,396,4697,4915,0,0,0,0,396,4697,es.po,,es,,spanish,,,es

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,234,3273,3285,0,0,0,0,234,3273,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,416,4876,4841,0,0,0,0,416,4876,el.po,,el,,greek,,,el

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,395,4727,4507,0,0,0,0,395,4727,de.po,,de,,german,,,de

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/da/da.po,234,3273,3018,0,0,0,0,234,3273,da.po,,da,,danish,,,da

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,395,4727,4177,0,0,0,0,395,4727,cs.po,,cs,,czech,,,cs

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,245,3008,3110,100,1269,53,462,398,4739,ca.po,,ca,,catalan,,,ca

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,help/ar/ar.po,228,2853,2290,0,0,6,420,234,3273,ar.po,,ar,,arabic,,,ar

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,290,1144,961,5,40,26,416,321,1600,zu.po,,zu,,zulu,,,zu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,327,1680,457,0,0,0,0,327,1680,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,339,1746,485,0,0,0,0,339,1746,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,327,1675,486,0,0,0,0,327,1675,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,293,1140,993,7,37,20,412,320,1589,xh.po,,xh,,xhosa,,,xh

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,190,819,1091,0,0,0,0,190,819,wa.po,,wa,,walloon,,,wa

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,327,1680,2018,0,0,0,0,327,1680,vi.po,,vi,,vietnamese,,,vi

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,235,727,658,0,0,46,474,281,1201,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,235,727,658,0,0,46,474,281,1201,uz.po,,uz,,uzbek,,,uz

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,324,1672,1459,0,0,0,0,324,1672,uk.po,,uk,,ukrainian,,,uk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,327,1616,1263,0,0,0,0,327,1616,ug.po,,ug,,uyghur,,,ug

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ts.po,320,1589,1886,0,0,0,0,320,1589,ts.po,,ts,,tsonga,,,ts

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,327,1680,1366,0,0,0,0,327,1680,tr.po,,tr,,turkish,,,tr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,60,143,139,24,79,66,335,150,557,tk.po,,tk,,turkmen,,,tk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,323,1675,545,0,0,0,0,323,1675,th.po,,th,,thai,,,th

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,292,1559,1578,0,0,0,0,292,1559,tg.po,,tg,,tajik,,,tg

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,327,1616,1331,0,0,0,0,327,1616,te.po,,te,,telugu,,,te

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,327,1616,1334,0,0,0,0,327,1616,ta.po,,ta,,tamil,,,ta

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,327,1680,1547,0,0,0,0,327,1680,sv.po,,sv,,swedish,,,sv

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,327,1675,1754,0,0,0,0,327,1675,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,327,1680,1758,0,0,0,0,327,1680,sr.po,,sr,,serbian,,,sr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,282,1223,1354,0,0,0,0,282,1223,sq.po,,sq,,albanian,,,sq

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,327,1680,1607,0,0,0,0,327,1680,sl.po,,sl,,slovenian,,,sl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,327,1680,1575,0,0,0,0,327,1680,sk.po,,sk,,slovak,,,sk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,156,349,392,0,0,75,607,231,956,si.po,,si,,sinhala,,,si

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,35,36,39,108,568,35,63,178,667,rw.po,,rw,,kinyarwanda,,,rw

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,327,1680,1512,0,0,0,0,327,1680,ru.po,,ru,,russian,,,ru

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,327,1680,1841,0,0,0,0,327,1680,ro.po,,ro,,romanian,,,ro

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,327,1680,1953,0,0,0,0,327,1680,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,323,1675,1843,0,0,0,0,323,1675,pt.po,,pt,,portuguese,,,pt

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,252,750,824,0,0,26,443,278,1193,ps.po,,ps,,pashto,,,ps

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,327,1680,1563,0,0,0,0,327,1680,pl.po,,pl,,polish,,,pl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,326,1674,1767,0,0,0,0,326,1674,pa.po,,pa,,punjabi,,,pa

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,244,1200,1193,53,242,7,81,304,1523,or.po,,or,,odia,,,or

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,316,1606,1796,2,8,5,63,323,1677,oc.po,,oc,,occitan,,,oc

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,149,554,815,2,5,7,55,158,614,nso.po,,nso,,northern sotho,,,nso

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,270,1152,1146,0,0,0,0,270,1152,nn.po,,nn,,norwegian nynorsk,,,nn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,327,1680,1626,0,0,0,0,327,1680,nl.po,,nl,,dutch,,,nl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,263,938,945,47,292,29,516,339,1746,ne.po,,ne,,nepali,,,ne

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,143,293,274,0,0,160,1220,303,1513,nds.po,,nds,,low german,,,nds

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,327,1675,1537,0,0,0,0,327,1675,nb.po,,nb,,norwegian bokmål,,,nb

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,126,225,222,0,0,190,1400,316,1625,my.po,,my,,burmese,,,my

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,141,481,460,3,41,6,35,150,557,ms.po,,ms,,malay,,,ms

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,339,1746,1605,0,0,0,0,339,1746,mr.po,,mr,,marathi,,,mr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,88,324,280,30,143,32,90,150,557,mn.po,,mn,,mongolian,,,mn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,327,1675,1278,0,0,0,0,327,1675,ml.po,,ml,,malayalam,,,ml

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,323,1607,1700,0,0,0,0,323,1607,mk.po,,mk,,macedonian,,,mk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,192,821,887,0,0,0,0,192,821,mg.po,,mg,,malagasy,,,mg

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,180,676,752,0,0,105,579,285,1255,mai.po,,mai,,maithili,,,mai

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,327,1680,1432,0,0,0,0,327,1680,lv.po,,lv,,latvian,,,lv

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,327,1680,1441,0,0,0,0,327,1680,lt.po,,lt,,lithuanian,,,lt

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,180,445,479,11,51,56,502,247,998,ku.po,,ku,,kurdish,,,ku

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ks.po,246,953,1020,4,16,28,224,278,1193,ks.po,,ks,,kashmiri,,,ks

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,327,1680,1275,0,0,0,0,327,1680,ko.po,,ko,,korean,,,ko

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,327,1616,1368,0,0,0,0,327,1616,kn.po,,kn,,kannada,,,kn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,324,1603,625,2,10,1,3,327,1616,km.po,,km,,khmer,,,km

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,327,1680,1392,0,0,0,0,327,1680,kk.po,,kk,,kazakh,,,kk

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,187,695,598,0,0,0,0,187,695,ka.po,,ka,,georgian,,,ka

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,327,1680,475,0,0,0,0,327,1680,ja.po,,ja,,japanese,,,ja

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,327,1680,1703,0,0,0,0,327,1680,it.po,,it,,italian,,,it

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,327,1675,1590,0,0,0,0,327,1675,is.po,,is,,icelandic,,,is

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,327,1680,1602,0,0,0,0,327,1680,id.po,,id,,indonesian,,,id

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,327,1680,1440,0,0,0,0,327,1680,hu.po,,hu,,hungarian,,,hu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,324,1675,1580,0,0,0,0,324,1675,hr.po,,hr,,croatian,,,hr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,327,1616,1857,0,0,0,0,327,1616,hi.po,,hi,,hindi,,,hi

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,323,1675,1577,0,0,0,0,323,1675,he.po,,he,,hebrew,,,he

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,326,1615,1689,0,0,0,0,326,1615,gu.po,,gu,,gujarati,,,gu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,327,1680,1966,0,0,0,0,327,1680,gl.po,,gl,,galician,,,gl

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,327,1675,2167,0,0,0,0,327,1675,gd.po,,gd,,scottish gaelic,,,gd

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,190,410,506,41,172,102,1083,333,1665,ga.po,,ga,,irish,,,ga

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,119,210,218,0,0,193,1395,312,1605,fy.po,,fy,,western frisian,,,fy

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,327,1680,1953,0,0,0,0,327,1680,fur.po,,fur,,friulian,,,fur

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,327,1680,1916,0,0,0,0,327,1680,fr.po,,fr,,french,,,fr

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,327,1680,1255,0,0,0,0,327,1680,fi.po,,fi,,finnish,,,fi

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,327,1675,1782,0,0,0,0,327,1675,fa.po,,fa,,persian,,,fa

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,327,1675,1364,0,0,0,0,327,1675,eu.po,,eu,,basque,,,eu

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,288,1502,1215,0,0,0,0,288,1502,et.po,,et,,estonian,,,et

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,327,1680,1944,0,0,0,0,327,1680,es.po,,es,,spanish,,,es

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,327,1680,1587,0,0,0,0,327,1680,eo.po,,eo,,esperanto,,,eo

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,326,1674,1706,0,0,0,0,326,1674,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,323,1607,1610,0,0,0,0,323,1607,en_ca.po,,en,ca,english,,canada,en_ca

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,304,1523,1523,0,0,0,0,304,1523,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,327,1680,1762,0,0,0,0,327,1680,el.po,,el,,greek,,,el

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,270,1152,585,0,0,0,0,270,1152,dz.po,,dz,,dzongkha,,,dz

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,327,1680,1653,0,0,0,0,327,1680,de.po,,de,,german,,,de

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,324,1675,1549,0,0,0,0,324,1675,da.po,,da,,danish,,,da

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,187,706,807,0,0,0,0,187,706,cy.po,,cy,,welsh,,,cy

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,327,1680,1566,0,0,0,0,327,1680,cs.po,,cs,,czech,,,cs

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,327,1675,1964,0,0,0,0,327,1675,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,327,1680,1975,0,0,0,0,327,1680,ca.po,,ca,,catalan,,,ca

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,288,1502,1472,0,0,0,0,288,1502,bs.po,,bs,,bosnian,,,bs

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,183,467,555,0,0,111,973,294,1440,br.po,,br,,breton,,,br

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,312,1566,1757,0,0,0,0,312,1566,bn_in.po,,bn,in,bangla,,india,bn_in

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,305,1527,1615,0,0,0,0,305,1527,bn.po,,bn,,bangla,,,bn

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,327,1675,1733,0,0,0,0,327,1675,bg.po,,bg,,bulgarian,,,bg

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,285,1255,1103,0,0,0,0,285,1255,be@latin.po,latin,be,,belarusian,,,be@latin

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,327,1675,1559,0,0,0,0,327,1675,be.po,,be,,belarusian,,,be

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,87,324,297,28,141,35,92,150,557,az.po,,az,,azerbaijani,,,az

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,320,1589,1753,0,0,0,0,320,1589,ast.po,,ast,,asturian,,,ast

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,339,1746,1770,0,0,0,0,339,1746,as.po,,as,,assamese,,,as

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,323,1539,1491,0,0,4,141,327,1680,ar.po,,ar,,arabic,,,ar

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,288,1502,1637,0,0,0,0,288,1502,an.po,,an,,aragonese,,,an

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,30,80,68,42,94,78,383,150,557,am.po,,am,,amharic,,,am

+ eog-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,318,1404,1393,0,0,9,271,327,1675,af.po,,af,,afrikaans,,,af

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/sv/sv.po,249,2476,2320,0,0,0,0,249,2476,sv.po,,sv,,swedish,,,sv

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/ru/ru.po,51,568,471,10,69,126,1998,187,2635,ru.po,,ru,,russian,,,ru

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,249,2476,2527,0,0,0,0,249,2476,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/pl/pl.po,249,2476,1795,0,0,0,0,249,2476,pl.po,,pl,,polish,,,pl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/ko/ko.po,249,2476,1817,0,0,0,0,249,2476,ko.po,,ko,,korean,,,ko

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/hu/hu.po,249,2476,2064,0,0,0,0,249,2476,hu.po,,hu,,hungarian,,,hu

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/gl/gl.po,91,215,224,0,0,158,2261,249,2476,gl.po,,gl,,galician,,,gl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/fr/fr.po,291,3054,3247,0,0,0,0,291,3054,fr.po,,fr,,french,,,fr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/es/es.po,249,2476,2522,0,0,0,0,249,2476,es.po,,es,,spanish,,,es

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/el/el.po,291,3054,3142,0,0,0,0,291,3054,el.po,,el,,greek,,,el

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/de/de.po,249,2476,2302,0,0,0,0,249,2476,de.po,,de,,german,,,de

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,help/cs/cs.po,249,2476,1983,0,0,0,0,249,2476,cs.po,,cs,,czech,,,cs

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,717,3876,1088,0,0,0,0,717,3876,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_hk.po,593,2564,827,0,0,0,0,593,2564,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,708,3808,1064,0,0,0,0,708,3808,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/yo.po,479,1553,1795,95,276,87,533,661,2362,yo.po,,yo,,yoruba,,,yo

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/wa.po,528,1137,1371,0,0,237,1595,765,2732,wa.po,,wa,,walloon,,,wa

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/vi.po,495,1757,2381,0,0,0,0,495,1757,vi.po,,vi,,vietnamese,,,vi

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,539,1807,1653,4,17,121,1049,664,2873,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uz.po,681,2405,2215,0,0,71,599,752,3004,uz.po,,uz,,uzbek,,,uz

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/uk.po,633,3278,2764,0,0,0,0,633,3278,uk.po,,uk,,ukrainian,,,uk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ug.po,570,2461,2118,0,0,0,0,570,2461,ug.po,,ug,,uyghur,,,ug

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tr.po,738,4012,3467,0,0,0,0,738,4012,tr.po,,tr,,turkish,,,tr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tk.po,573,1702,1598,0,0,207,1080,780,2782,tk.po,,tk,,turkmen,,,tk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/th.po,597,2618,969,0,0,0,0,597,2618,th.po,,th,,thai,,,th

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/tg.po,172,265,309,6,10,399,2219,577,2494,tg.po,,tg,,tajik,,,tg

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/te.po,574,2413,2121,0,0,0,0,574,2413,te.po,,te,,telugu,,,te

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ta.po,570,2461,2259,0,0,0,0,570,2461,ta.po,,ta,,tamil,,,ta

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sv.po,738,4012,3736,0,0,0,0,738,4012,sv.po,,sv,,swedish,,,sv

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sr@latin.po,697,3599,3601,0,0,0,0,697,3599,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sr.po,738,4012,4045,0,0,0,0,738,4012,sr.po,,sr,,serbian,,,sr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sq.po,755,3011,3382,0,0,0,0,755,3011,sq.po,,sq,,albanian,,,sq

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sl.po,738,4012,3811,0,0,0,0,738,4012,sl.po,,sl,,slovenian,,,sl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/sk.po,613,2652,2594,21,122,74,996,708,3770,sk.po,,sk,,slovak,,,sk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/si.po,127,197,282,0,0,756,3864,883,4061,si.po,,si,,sinhala,,,si

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/rw.po,141,251,230,588,2753,109,216,838,3220,rw.po,,rw,,kinyarwanda,,,rw

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ru.po,738,4012,3601,0,0,0,0,738,4012,ru.po,,ru,,russian,,,ru

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ro.po,738,4012,4187,0,0,0,0,738,4012,ro.po,,ro,,romanian,,,ro

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,738,4012,4501,0,0,0,0,738,4012,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pt.po,652,2826,2953,1,3,11,44,664,2873,pt.po,,pt,,portuguese,,,pt

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ps.po,219,401,412,8,12,502,2469,729,2882,ps.po,,ps,,pashto,,,ps

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pl.po,738,4012,3632,0,0,0,0,738,4012,pl.po,,pl,,polish,,,pl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/pa.po,609,2013,2217,2,54,52,804,663,2871,pa.po,,pa,,punjabi,,,pa

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/or.po,469,1495,1695,40,184,79,860,588,2539,or.po,,or,,odia,,,or

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/oc.po,701,3593,4087,0,0,15,180,716,3773,oc.po,,oc,,occitan,,,oc

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nn.po,753,3006,2822,0,0,0,0,753,3006,nn.po,,nn,,norwegian nynorsk,,,nn

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nl.po,738,4012,3995,0,0,0,0,738,4012,nl.po,,nl,,dutch,,,nl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ne.po,369,865,917,147,632,125,1816,641,3313,ne.po,,ne,,nepali,,,ne

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nds.po,468,1047,987,15,52,257,1954,740,3053,nds.po,,nds,,low german,,,nds

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/nb.po,676,3166,3010,1,14,35,577,712,3757,nb.po,,nb,,norwegian bokmål,,,nb

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ms.po,467,1537,1438,181,669,93,867,741,3073,ms.po,,ms,,malay,,,ms

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mr.po,574,2413,2356,0,0,0,0,574,2413,mr.po,,mr,,marathi,,,mr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mn.po,758,3054,2643,0,0,0,0,758,3054,mn.po,,mn,,mongolian,,,mn

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ml.po,360,988,894,150,763,187,1848,697,3599,ml.po,,ml,,malayalam,,,ml

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mk.po,613,2199,2300,0,0,0,0,613,2199,mk.po,,mk,,macedonian,,,mk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mi.po,98,114,166,76,122,591,2496,765,2732,mi.po,,mi,,maori,,,mi

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mg.po,830,3684,4108,12,99,1,15,843,3798,mg.po,,mg,,malagasy,,,mg

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/mai.po,657,2530,2728,0,0,83,501,740,3031,mai.po,,mai,,maithili,,,mai

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/lv.po,738,4012,3489,0,0,0,0,738,4012,lv.po,,lv,,latvian,,,lv

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/lt.po,738,4012,3360,0,0,0,0,738,4012,lt.po,,lt,,lithuanian,,,lt

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/li.po,406,1057,1002,223,718,136,957,765,2732,li.po,,li,,limburgish,,,li

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ku.po,433,1078,1126,40,165,280,1762,753,3005,ku.po,,ku,,kurdish,,,ku

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ko.po,734,3931,3110,0,0,0,0,734,3931,ko.po,,ko,,korean,,,ko

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/kn.po,574,2413,2097,0,0,0,0,574,2413,kn.po,,kn,,kannada,,,kn

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/km.po,599,2072,991,2,35,12,92,613,2199,km.po,,km,,khmer,,,km

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/kk.po,447,1116,1095,0,0,287,2818,734,3934,kk.po,,kk,,kazakh,,,kk

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ka.po,729,3010,2578,0,0,2,37,731,3047,ka.po,,ka,,georgian,,,ka

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ja.po,611,2749,919,0,0,0,0,611,2749,ja.po,,ja,,japanese,,,ja

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/it.po,738,4012,4313,0,0,0,0,738,4012,it.po,,it,,italian,,,it

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/is.po,266,518,517,28,83,301,1988,595,2589,is.po,,is,,icelandic,,,is

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ig.po,536,1949,2038,146,511,70,544,752,3004,ig.po,,ig,,igbo,,,ig

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/id.po,738,4012,3816,0,0,0,0,738,4012,id.po,,id,,indonesian,,,id

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hy.po,367,1241,1046,0,0,385,1760,752,3001,hy.po,,hy,,armenian,,,hy

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hu.po,738,4012,3650,0,0,0,0,738,4012,hu.po,,hu,,hungarian,,,hu

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hr.po,717,3876,3561,0,0,0,0,717,3876,hr.po,,hr,,croatian,,,hr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/hi.po,570,2461,2958,0,0,0,0,570,2461,hi.po,,hi,,hindi,,,hi

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/he.po,578,2810,2649,0,0,0,0,578,2810,he.po,,he,,hebrew,,,he

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gv.po,666,2764,3387,44,198,21,82,731,3044,gv.po,,gv,,manx,,,gv

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gu.po,499,1423,1645,22,167,72,974,593,2564,gu.po,,gu,,gujarati,,,gu

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/gl.po,734,3931,4482,0,0,0,0,734,3931,gl.po,,gl,,galician,,,gl

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ga.po,413,1062,1264,32,97,133,1336,578,2495,ga.po,,ga,,irish,,,ga

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fur.po,734,3931,4646,0,0,0,0,734,3931,fur.po,,fur,,friulian,,,fur

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fr.po,738,4012,4826,0,0,0,0,738,4012,fr.po,,fr,,french,,,fr

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fi.po,678,2950,2288,4,17,52,964,734,3931,fi.po,,fi,,finnish,,,fi

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/fa.po,664,2873,3187,0,0,0,0,664,2873,fa.po,,fa,,persian,,,fa

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/eu.po,734,3931,3468,0,0,0,0,734,3931,eu.po,,eu,,basque,,,eu

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/et.po,496,1758,1541,0,0,0,0,496,1758,et.po,,et,,estonian,,,et

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/es.po,738,4012,4540,0,0,0,0,738,4012,es.po,,es,,spanish,,,es

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/eo.po,662,2828,2638,1,3,0,0,663,2831,eo.po,,eo,,esperanto,,,eo

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,738,4012,4032,0,0,0,0,738,4012,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en_ca.po,651,2291,2298,0,0,0,0,651,2291,en_ca.po,,en,ca,english,,canada,en_ca

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/en@shaw.po,692,2644,2645,41,408,0,0,733,3052,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/el.po,712,3843,4176,20,92,16,105,748,4040,el.po,,el,,greek,,,el

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/dz.po,918,4246,2200,0,0,0,0,918,4246,dz.po,,dz,,dzongkha,,,dz

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/de.po,738,4012,3905,0,0,0,0,738,4012,de.po,,de,,german,,,de

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/da.po,738,4012,3769,0,0,0,0,738,4012,da.po,,da,,danish,,,da

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/cy.po,844,3788,4130,0,0,0,0,844,3788,cy.po,,cy,,welsh,,,cy

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/cs.po,738,4012,3853,0,0,0,0,738,4012,cs.po,,cs,,czech,,,cs

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,696,3589,4224,0,0,0,0,696,3589,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ca.po,714,3697,4316,5,37,19,278,738,4012,ca.po,,ca,,catalan,,,ca

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bs.po,596,2615,2505,0,0,0,0,596,2615,bs.po,,bs,,bosnian,,,bs

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/br.po,574,1751,1984,0,0,163,1250,737,3001,br.po,,br,,breton,,,br

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bn_in.po,643,2291,2660,0,0,0,0,643,2291,bn_in.po,,bn,in,bangla,,india,bn_in

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bn.po,352,1132,1375,101,382,142,1075,595,2589,bn.po,,bn,,bangla,,,bn

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/bg.po,613,2698,2900,2,54,3,35,618,2787,bg.po,,bg,,bulgarian,,,bg

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/be@latin.po,918,4246,3748,0,0,0,0,918,4246,be@latin.po,latin,be,,belarusian,,,be@latin

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/be.po,717,3876,3421,0,0,0,0,717,3876,be.po,,be,,belarusian,,,be

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/az.po,780,2782,2711,0,0,0,0,780,2782,az.po,,az,,azerbaijani,,,az

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ast.po,741,3073,3335,0,0,0,0,741,3073,ast.po,,ast,,asturian,,,ast

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/as.po,594,2592,2854,0,0,0,0,594,2592,as.po,,as,,assamese,,,as

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/ar.po,584,2328,2196,0,0,32,454,616,2782,ar.po,,ar,,arabic,,,ar

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/an.po,495,1757,1920,0,0,0,0,495,1757,an.po,,an,,aragonese,,,an

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/am.po,197,288,350,251,522,317,1922,765,2732,am.po,,am,,amharic,,,am

+ epiphany-3.32.1.2-1.fc30.src.rpm.stats.csv,po/af.po,604,1952,1976,0,0,144,2088,748,4040,af.po,,af,,afrikaans,,,af

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,673,7537,6491,0,0,0,0,673,7537,cs.po,,cs,,czech,,,cs

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,667,7513,5095,6,24,0,0,673,7537,ko.po,,ko,,korean,,,ko

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,41,64,73,0,0,111,1703,152,1767,oc.po,,oc,,occitan,,,oc

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,670,7525,7379,3,12,0,0,673,7537,de.po,,de,,german,,,de

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,581,6465,4127,39,707,12,99,632,7271,fi.po,,fi,,finnish,,,fi

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,631,6952,5880,0,0,0,0,631,6952,ru.po,,ru,,russian,,,ru

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,673,7537,8160,0,0,0,0,673,7537,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,653,7485,6925,0,0,0,0,653,7485,da.po,,da,,danish,,,da

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,630,6994,5974,0,0,0,0,630,6994,sl.po,,sl,,slovenian,,,sl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,399,3713,3629,0,0,240,3669,639,7382,nl.po,,nl,,dutch,,,nl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,629,6990,1689,0,0,1,4,630,6994,ja.po,,ja,,japanese,,,ja

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,677,7562,5958,0,0,0,0,677,7562,pl.po,,pl,,polish,,,pl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,152,1767,1341,0,0,0,0,152,1767,eu.po,,eu,,basque,,,eu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,653,7485,7389,0,0,0,0,653,7485,el.po,,el,,greek,,,el

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,630,6994,7043,0,0,0,0,630,6994,gl.po,,gl,,galician,,,gl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/lv/lv.po,636,7089,5666,0,0,0,0,636,7089,lv.po,,lv,,latvian,,,lv

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/vi/vi.po,204,1651,2028,0,0,9,268,213,1919,vi.po,,vi,,vietnamese,,,vi

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,151,1742,1365,1,25,0,0,152,1767,uk.po,,uk,,ukrainian,,,uk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,636,7323,6463,0,0,0,0,636,7323,id.po,,id,,indonesian,,,id

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,154,1753,1691,0,0,0,0,154,1753,bg.po,,bg,,bulgarian,,,bg

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,238,1639,1810,0,0,398,5450,636,7089,ca.po,,ca,,catalan,,,ca

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,639,7382,8238,0,0,0,0,639,7382,fr.po,,fr,,french,,,fr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,213,1919,373,0,0,0,0,213,1919,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,321,4017,3994,245,2608,82,842,648,7467,ro.po,,ro,,romanian,,,ro

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,212,1918,1926,0,0,0,0,212,1918,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,212,1918,1975,0,0,0,0,212,1918,it.po,,it,,italian,,,it

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sr/sr.po,48,521,485,0,0,108,1247,156,1768,sr.po,,sr,,serbian,,,sr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,665,7346,7762,8,173,4,43,677,7562,es.po,,es,,spanish,,,es

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,213,1919,373,0,0,0,0,213,1919,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,595,6634,1808,0,0,0,0,595,6634,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,677,7562,7047,0,0,0,0,677,7562,sv.po,,sv,,swedish,,,sv

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,677,7562,6330,0,0,0,0,677,7562,hu.po,,hu,,hungarian,,,hu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,23,81,82,0,0,575,6554,598,6635,te.po,,te,,telugu,,,te

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,416,1654,1545,0,0,0,0,416,1654,ru.po,,ru,,russian,,,ru

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,247,838,936,24,91,24,91,295,1020,mg.po,,mg,,malagasy,,,mg

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,204,429,492,8,44,147,1115,359,1588,ga.po,,ga,,irish,,,ga

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,368,1523,1599,0,0,0,0,368,1523,or.po,,or,,odia,,,or

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,354,1518,522,0,0,0,0,354,1518,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,400,1595,620,0,0,0,0,400,1595,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,333,1392,1342,0,0,0,0,333,1392,mn.po,,mn,,mongolian,,,mn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,364,1435,1434,0,0,0,0,364,1435,nn.po,,nn,,norwegian nynorsk,,,nn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,355,1525,1375,0,0,0,0,355,1525,kn.po,,kn,,kannada,,,kn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,392,1664,2129,0,0,0,0,392,1664,gd.po,,gd,,scottish gaelic,,,gd

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,392,1662,1647,0,0,0,0,392,1662,nb.po,,nb,,norwegian bokmål,,,nb

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,392,1664,1961,0,0,0,0,392,1664,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,218,730,767,0,0,0,0,218,730,cy.po,,cy,,welsh,,,cy

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,416,1654,2047,0,0,0,0,416,1654,fr.po,,fr,,french,,,fr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,242,621,626,6,38,76,603,324,1262,nds.po,,nds,,low german,,,nds

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,392,1560,1578,0,0,0,0,392,1560,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,355,1525,1620,0,0,0,0,355,1525,as.po,,as,,assamese,,,as

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,366,1437,1574,0,0,0,0,366,1437,mk.po,,mk,,macedonian,,,mk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,397,1701,1517,0,0,0,0,397,1701,uk.po,,uk,,ukrainian,,,uk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,410,1650,571,0,0,0,0,410,1650,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,291,1048,1192,0,0,0,0,291,1048,sq.po,,sq,,albanian,,,sq

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,366,1437,1618,0,0,0,0,366,1437,ast.po,,ast,,asturian,,,ast

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,416,1654,1610,0,0,0,0,416,1654,pl.po,,pl,,polish,,,pl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,416,1654,1456,0,0,0,0,416,1654,hu.po,,hu,,hungarian,,,hu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,416,1654,1600,0,0,0,0,416,1654,id.po,,id,,indonesian,,,id

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,416,1654,1452,0,0,0,0,416,1654,lt.po,,lt,,lithuanian,,,lt

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,23,25,28,95,522,30,52,148,599,rw.po,,rw,,kinyarwanda,,,rw

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,355,1525,1678,0,0,0,0,355,1525,gu.po,,gu,,gujarati,,,gu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,416,1654,1824,0,0,0,0,416,1654,ro.po,,ro,,romanian,,,ro

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,392,1664,1553,0,0,0,0,392,1664,ne.po,,ne,,nepali,,,ne

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,410,1650,1673,0,0,0,0,410,1650,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,125,219,267,0,0,167,785,292,1004,si.po,,si,,sinhala,,,si

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,355,1525,1369,0,0,0,0,355,1525,te.po,,te,,telugu,,,te

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,416,1654,1674,0,0,0,0,416,1654,sr.po,,sr,,serbian,,,sr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,368,1523,1269,0,0,0,0,368,1523,ml.po,,ml,,malayalam,,,ml

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,149,601,800,0,0,0,0,149,601,wa.po,,wa,,walloon,,,wa

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,416,1654,1930,0,0,0,0,416,1654,fur.po,,fur,,friulian,,,fur

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,358,1287,1092,4,119,0,0,362,1406,zu.po,,zu,,zulu,,,zu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,248,746,780,0,0,30,243,278,989,ps.po,,ps,,pashto,,,ps

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,312,1155,1084,0,0,0,0,312,1155,be@latin.po,latin,be,,belarusian,,,be@latin

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,416,1654,1681,0,0,0,0,416,1654,de.po,,de,,german,,,de

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,251,842,685,0,0,0,0,251,842,ka.po,,ka,,georgian,,,ka

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,416,1654,1617,0,0,0,0,416,1654,cs.po,,cs,,czech,,,cs

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,397,1701,1920,0,0,0,0,397,1701,pa.po,,pa,,punjabi,,,pa

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,416,1654,1464,0,0,0,0,416,1654,eu.po,,eu,,basque,,,eu

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,416,1654,1463,0,0,0,0,416,1654,kk.po,,kk,,kazakh,,,kk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,378,1624,1928,0,0,17,76,395,1700,oc.po,,oc,,occitan,,,oc

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,366,1437,1355,0,0,0,0,366,1437,ms.po,,ms,,malay,,,ms

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,410,1650,1527,0,0,0,0,410,1650,be.po,,be,,belarusian,,,be

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,360,1532,1473,0,0,0,0,360,1532,bs.po,,bs,,bosnian,,,bs

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,416,1654,1980,0,0,0,0,416,1654,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,345,1429,1469,0,0,10,96,355,1525,af.po,,af,,afrikaans,,,af

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,416,1654,1344,0,0,0,0,416,1654,fi.po,,fi,,finnish,,,fi

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,392,1664,1765,0,0,0,0,392,1664,bg.po,,bg,,bulgarian,,,bg

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,393,1698,641,0,0,0,0,393,1698,th.po,,th,,thai,,,th

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,355,1525,1311,0,0,0,0,355,1525,ta.po,,ta,,tamil,,,ta

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ks.po,231,789,821,38,166,9,34,278,989,ks.po,,ks,,kashmiri,,,ks

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,410,1631,1574,0,0,0,0,410,1631,sl.po,,sl,,slovenian,,,sl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,366,1437,1440,0,0,0,0,366,1437,en_ca.po,,en,ca,english,,canada,en_ca

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,416,1654,1916,0,0,0,0,416,1654,es.po,,es,,spanish,,,es

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,296,872,946,7,37,62,544,365,1453,ku.po,,ku,,kurdish,,,ku

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,410,1650,1551,0,0,0,0,410,1650,ar.po,,ar,,arabic,,,ar

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,416,1654,1563,0,0,0,0,416,1654,da.po,,da,,danish,,,da

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,400,1598,1539,6,19,4,33,410,1650,sk.po,,sk,,slovak,,,sk

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,382,1520,660,0,0,0,0,382,1520,km.po,,km,,khmer,,,km

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,248,872,942,0,0,64,283,312,1155,mai.po,,mai,,maithili,,,mai

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,393,1698,1881,0,0,0,0,393,1698,pt.po,,pt,,portuguese,,,pt

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,405,1589,585,1,4,4,38,410,1631,ja.po,,ja,,japanese,,,ja

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,392,1560,1581,0,0,0,0,392,1560,is.po,,is,,icelandic,,,is

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,410,1631,1765,0,0,0,0,410,1631,el.po,,el,,greek,,,el

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,355,1525,1688,0,0,0,0,355,1525,bn_in.po,,bn,in,bangla,,india,bn_in

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,393,1698,1544,0,0,0,0,393,1698,he.po,,he,,hebrew,,,he

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,333,1392,1523,0,0,0,0,333,1392,bn.po,,bn,,bangla,,,bn

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,416,1654,1642,0,0,0,0,416,1654,eo.po,,eo,,esperanto,,,eo

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,392,1664,1817,0,0,0,0,392,1664,fa.po,,fa,,persian,,,fa

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,355,1525,1817,0,0,0,0,355,1525,hi.po,,hi,,hindi,,,hi

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,360,1589,1278,0,0,0,0,360,1589,et.po,,et,,estonian,,,et

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,324,1084,722,6,31,41,378,371,1493,my.po,,my,,burmese,,,my

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,416,1654,1444,0,0,0,0,416,1654,lv.po,,lv,,latvian,,,lv

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,360,1527,1563,0,0,0,0,360,1527,tg.po,,tg,,tajik,,,tg

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,199,572,677,4,15,122,673,325,1260,br.po,,br,,breton,,,br

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,292,1002,467,0,0,0,0,292,1002,dz.po,,dz,,dzongkha,,,dz

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,410,1650,1582,0,0,0,0,410,1650,hr.po,,hr,,croatian,,,hr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,416,1654,1671,0,0,0,0,416,1654,nl.po,,nl,,dutch,,,nl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,410,1650,2196,0,0,0,0,410,1650,vi.po,,vi,,vietnamese,,,vi

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,410,1631,1608,0,0,0,0,410,1631,sv.po,,sv,,swedish,,,sv

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,416,1654,1993,0,0,0,0,416,1654,gl.po,,gl,,galician,,,gl

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,416,1654,1446,0,0,0,0,416,1654,tr.po,,tr,,turkish,,,tr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,416,1654,1968,0,0,0,0,416,1654,ca.po,,ca,,catalan,,,ca

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,303,1180,1181,28,200,0,0,331,1380,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,355,1525,1480,0,0,0,0,355,1525,mr.po,,mr,,marathi,,,mr

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,356,1521,1690,3,7,0,0,359,1528,an.po,,an,,aragonese,,,an

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,416,1654,1806,0,0,0,0,416,1654,it.po,,it,,italian,,,it

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,368,1523,1298,0,0,0,0,368,1523,ug.po,,ug,,uyghur,,,ug

+ evince-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,416,1654,1390,0,0,0,0,416,1654,ko.po,,ko,,korean,,,ko

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1442,7607,2643,0,0,0,0,1442,7607,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1076,5406,1974,0,0,0,0,1076,5406,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,999,4444,1786,176,1505,7,108,1182,6057,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,956,4657,4632,3,19,3,16,962,4692,xh.po,,xh,,xhosa,,,xh

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,651,866,953,554,1199,2928,15005,4133,17070,wa.po,,wa,,walloon,,,wa

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,1127,5365,7655,0,0,36,302,1163,5667,vi.po,,vi,,vietnamese,,,vi

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,1074,5398,5219,0,0,0,0,1074,5398,uk.po,,uk,,ukrainian,,,uk

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,1157,5571,5390,0,0,6,96,1163,5667,ug.po,,ug,,uyghur,,,ug

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,1443,7608,6394,0,0,0,0,1443,7608,tr.po,,tr,,turkish,,,tr

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,1129,5489,2522,0,0,12,40,1141,5529,th.po,,th,,thai,,,th

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,1,1,1,0,0,1163,5679,1164,5680,tg.po,,tg,,tajik,,,tg

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,1104,5314,4640,10,79,6,70,1120,5463,te.po,,te,,telugu,,,te

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,1074,5400,4899,0,0,0,0,1074,5400,ta.po,,ta,,tamil,,,ta

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,1443,7608,7200,0,0,0,0,1443,7608,sv.po,,sv,,swedish,,,sv

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1263,6683,7068,0,0,0,0,1263,6683,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,1443,7608,7948,0,0,0,0,1443,7608,sr.po,,sr,,serbian,,,sr

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,1042,5021,6248,0,0,0,0,1042,5021,sq.po,,sq,,albanian,,,sq

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,1443,7608,7953,0,0,0,0,1443,7608,sl.po,,sl,,slovenian,,,sl

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,1238,6321,6617,4,33,10,80,1252,6434,sk.po,,sk,,slovak,,,sk

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,113,149,203,0,0,927,4891,1040,5040,si.po,,si,,sinhala,,,si

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,57,68,73,702,4191,203,433,962,4692,rw.po,,rw,,kinyarwanda,,,rw

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,1147,5716,5689,0,0,0,0,1147,5716,ru.po,,ru,,russian,,,ru

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,766,3660,4362,318,1707,359,2241,1443,7608,ro.po,,ro,,romanian,,,ro

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,1443,7608,9125,0,0,0,0,1443,7608,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,1158,5824,6731,0,0,0,0,1158,5824,pt.po,,pt,,portuguese,,,pt

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,1443,7608,7747,0,0,0,0,1443,7608,pl.po,,pl,,polish,,,pl

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,808,3479,4177,302,1734,332,2394,1442,7607,pa.po,,pa,,punjabi,,,pa

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,1074,5398,5609,0,0,0,0,1074,5398,or.po,,or,,odia,,,or

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,1449,7493,9115,0,0,0,0,1449,7493,oc.po,,oc,,occitan,,,oc

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,1033,4985,4924,0,0,1,3,1034,4988,nn.po,,nn,,norwegian nynorsk,,,nn

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,1443,7608,7556,0,0,0,0,1443,7608,nl.po,,nl,,dutch,,,nl

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,703,2797,2973,399,2116,150,1521,1252,6434,ne.po,,ne,,nepali,,,ne

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,1227,6088,6004,0,0,26,352,1253,6440,nb.po,,nb,,norwegian bokmål,,,nb

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,597,3008,3200,211,1120,69,376,877,4504,ms.po,,ms,,malay,,,ms

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,1074,5396,5486,0,0,0,0,1074,5396,mr.po,,mr,,marathi,,,mr

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,202,585,581,139,737,536,3182,877,4504,mn.po,,mn,,mongolian,,,mn

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,699,2924,2671,338,1691,215,1819,1252,6434,ml.po,,ml,,malayalam,,,ml

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,1042,5021,5892,0,0,0,0,1042,5021,mk.po,,mk,,macedonian,,,mk

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,106,157,172,0,0,935,4937,1041,5094,mai.po,,mai,,maithili,,,mai

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,1264,6686,6127,0,0,0,0,1264,6686,lv.po,,lv,,latvian,,,lv

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,1443,7608,6633,0,0,0,0,1443,7608,lt.po,,lt,,lithuanian,,,lt

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,3,3,5,56,67,953,4796,1012,4866,ku.po,,ku,,kurdish,,,ku

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,1442,7607,6661,0,0,0,0,1442,7607,ko.po,,ko,,korean,,,ko

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,1164,5673,5091,0,0,0,0,1164,5673,kn.po,,kn,,kannada,,,kn

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,992,4693,2572,0,0,0,0,992,4693,km.po,,km,,khmer,,,km

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,532,1636,1596,0,0,910,5971,1442,7607,kk.po,,kk,,kazakh,,,kk

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,160,295,287,519,3000,339,1611,1018,4906,ka.po,,ka,,georgian,,,ka

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,1023,5039,2210,76,388,48,289,1147,5716,ja.po,,ja,,japanese,,,ja

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,1264,6686,7461,0,0,0,0,1264,6686,it.po,,it,,italian,,,it

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,314,766,686,46,154,737,4502,1097,5422,is.po,,is,,icelandic,,,is

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,1443,7608,7474,0,0,0,0,1443,7608,id.po,,id,,indonesian,,,id

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,1443,7608,7303,0,0,0,0,1443,7608,hu.po,,hu,,hungarian,,,hu

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,887,4051,4136,87,584,90,479,1064,5114,hr.po,,hr,,croatian,,,hr

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,1074,5396,6550,0,0,0,0,1074,5396,hi.po,,hi,,hindi,,,hi

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,846,3709,3883,0,0,117,875,963,4584,he.po,,he,,hebrew,,,he

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,1163,5667,6278,0,0,0,0,1163,5667,gu.po,,gu,,gujarati,,,gu

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,1443,7608,9754,0,0,0,0,1443,7608,gl.po,,gl,,galician,,,gl

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,290,785,905,134,489,560,3285,984,4559,ga.po,,ga,,irish,,,ga

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,1443,7608,9311,0,0,0,0,1443,7608,fur.po,,fur,,friulian,,,fur

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,1449,7493,9165,0,0,0,0,1449,7493,fr.po,,fr,,french,,,fr

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,1045,4326,3455,233,1488,171,1679,1449,7493,fi.po,,fi,,finnish,,,fi

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,768,3317,3977,147,945,133,803,1048,5065,fa.po,,fa,,persian,,,fa

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,1355,6654,6282,0,0,88,954,1443,7608,eu.po,,eu,,basque,,,eu

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,985,4681,4249,0,0,0,0,985,4681,et.po,,et,,estonian,,,et

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,1443,7608,9375,0,0,0,0,1443,7608,es.po,,es,,spanish,,,es

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,860,3108,2994,51,288,480,3454,1391,6850,eo.po,,eo,,esperanto,,,eo

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,1449,7493,7492,0,0,0,0,1449,7493,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,1041,5044,5044,0,0,0,0,1041,5044,en_ca.po,,en,ca,english,,canada,en_ca

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en_au.po,29,166,187,175,1000,673,3338,877,4504,en_au.po,,en,au,english,,australia,en_au

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,716,3166,3167,210,1238,0,0,926,4404,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,1401,6930,7314,17,252,31,311,1449,7493,el.po,,el,,greek,,,el

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,1042,5021,2638,0,0,0,0,1042,5021,dz.po,,dz,,dzongkha,,,dz

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,1443,7608,7539,0,0,0,0,1443,7608,de.po,,de,,german,,,de

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,1443,7608,7026,0,0,0,0,1443,7608,da.po,,da,,danish,,,da

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,1018,4906,5441,0,0,0,0,1018,4906,cy.po,,cy,,welsh,,,cy

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,1443,7608,7369,0,0,0,0,1443,7608,cs.po,,cs,,czech,,,cs

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1252,6434,8901,0,0,0,0,1252,6434,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,1441,7441,9946,0,0,0,0,1441,7441,ca.po,,ca,,catalan,,,ca

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,1082,5383,5461,0,0,0,0,1082,5383,bs.po,,bs,,bosnian,,,bs

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,1074,5398,5905,0,0,0,0,1074,5398,bn_in.po,,bn,in,bangla,,india,bn_in

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,997,4910,5506,0,0,0,0,997,4910,bn.po,,bn,,bangla,,,bn

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,1141,5529,6391,0,0,0,0,1141,5529,bg.po,,bg,,bulgarian,,,bg

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,1166,5681,5467,0,0,0,0,1166,5681,be.po,,be,,belarusian,,,be

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,717,3438,3215,101,528,59,538,877,4504,az.po,,az,,azerbaijani,,,az

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,982,4619,5531,0,0,0,0,982,4619,ast.po,,ast,,asturian,,,ast

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,1074,5398,5855,0,0,0,0,1074,5398,as.po,,as,,assamese,,,as

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,755,3632,3702,197,862,32,177,984,4671,ar.po,,ar,,arabic,,,ar

+ evolution-data-server-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,73,99,104,137,672,667,3733,877,4504,am.po,,am,,amharic,,,am

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/fi.po,207,419,324,1783,4259,4096,33334,6086,38012,fi.po,,fi,,finnish,,,fi

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ms.po,4877,28305,25657,677,2977,532,6730,6086,38012,ms.po,,ms,,malay,,,ms

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ru.po,729,3302,2861,3196,9739,2161,24971,6086,38012,ru.po,,ru,,russian,,,ru

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/pt.po,1853,11784,13364,2073,6846,2160,19382,6086,38012,pt.po,,pt,,portuguese,,,pt

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/pl.po,2604,12391,11584,1983,6457,1499,19164,6086,38012,pl.po,,pl,,polish,,,pl

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/gl.po,3879,18175,21481,1098,4311,1109,15526,6086,38012,gl.po,,gl,,galician,,,gl

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/vi.po,1133,3333,5045,1979,5636,2974,29043,6086,38012,vi.po,,vi,,vietnamese,,,vi

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ug.po,2058,4663,4763,1644,4415,2384,28934,6086,38012,ug.po,,ug,,uyghur,,,ug

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/de.po,2563,13583,12358,2068,6889,1455,17540,6086,38012,de.po,,de,,german,,,de

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/ca.po,3542,13166,17734,1,3,2543,24843,6086,38012,ca.po,,ca,,catalan,,,ca

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/es.po,4297,26869,31146,327,1668,1462,9475,6086,38012,es.po,,es,,spanish,,,es

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/sk.po,2003,9069,8406,2335,7381,1748,21562,6086,38012,sk.po,,sk,,slovak,,,sk

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/sv.po,5602,35017,27785,345,1703,139,1292,6086,38012,sv.po,,sv,,swedish,,,sv

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/bs.po,4390,23653,21639,939,3796,757,10563,6086,38012,bs.po,,bs,,bosnian,,,bs

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/fr.po,1414,4976,5716,2708,8431,1964,24605,6086,38012,fr.po,,fr,,french,,,fr

+ exiv2-0.27.0-3.fc30.src.rpm.stats.csv,po/uk.po,2102,7418,7022,1764,5067,2220,25527,6086,38012,uk.po,,uk,,ukrainian,,,uk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,191,1742,267,2,8,0,0,193,1750,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,28,192,158,0,0,3,143,31,335,te.po,,te,,telugu,,,te

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,181,1641,1477,0,0,0,0,181,1641,sv.po,,sv,,swedish,,,sv

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,191,1830,1542,0,0,0,0,191,1830,sl.po,,sl,,slovenian,,,sl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,191,1829,1517,0,0,0,0,191,1829,ru.po,,ru,,russian,,,ru

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,181,1641,1746,0,0,0,0,181,1641,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,181,1641,1209,0,0,0,0,181,1641,pl.po,,pl,,polish,,,pl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,181,1641,1273,0,0,0,0,181,1641,ko.po,,ko,,korean,,,ko

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,191,1829,272,0,0,0,0,191,1829,ja.po,,ja,,japanese,,,ja

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/id/id.po,181,1641,1491,0,0,0,0,181,1641,id.po,,id,,indonesian,,,id

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,181,1641,1344,0,0,0,0,181,1641,hu.po,,hu,,hungarian,,,hu

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,181,1641,1622,0,0,0,0,181,1641,gl.po,,gl,,galician,,,gl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,181,1641,1878,0,0,0,0,181,1641,fr.po,,fr,,french,,,fr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,166,1346,846,11,221,4,74,181,1641,fi.po,,fi,,finnish,,,fi

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,181,1641,1728,0,0,0,0,181,1641,es.po,,es,,spanish,,,es

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,181,1641,1768,0,0,0,0,181,1641,el.po,,el,,greek,,,el

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,181,1641,1564,0,0,0,0,181,1641,de.po,,de,,german,,,de

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/da/da.po,181,1641,1522,0,0,0,0,181,1641,da.po,,da,,danish,,,da

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,181,1641,1370,0,0,0,0,181,1641,cs.po,,cs,,czech,,,cs

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,194,1836,1941,0,0,0,0,194,1836,ca.po,,ca,,catalan,,,ca

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,297,1254,1058,5,20,33,245,335,1519,zu.po,,zu,,zulu,,,zu

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,276,1207,335,0,0,0,0,276,1207,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,268,1195,326,0,0,0,0,268,1195,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,275,1201,349,0,0,0,0,275,1201,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,238,928,788,4,29,2,14,244,971,xh.po,,xh,,xhosa,,,xh

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,276,1207,1591,0,0,0,0,276,1207,vi.po,,vi,,vietnamese,,,vi

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ur.po,259,1159,1332,0,0,0,0,259,1159,ur.po,,ur,,urdu,,,ur

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,269,1181,1017,0,0,0,0,269,1181,uk.po,,uk,,ukrainian,,,uk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,292,1325,996,0,0,0,0,292,1325,ug.po,,ug,,uyghur,,,ug

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,276,1207,979,0,0,0,0,276,1207,tr.po,,tr,,turkish,,,tr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,194,702,608,13,77,37,192,244,971,tk.po,,tk,,turkmen,,,tk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,267,1187,428,0,0,0,0,267,1187,th.po,,th,,thai,,,th

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,268,1195,1160,0,0,0,0,268,1195,tg.po,,tg,,tajik,,,tg

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,268,1195,1015,0,0,0,0,268,1195,te.po,,te,,telugu,,,te

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,268,1195,1039,0,0,0,0,268,1195,ta.po,,ta,,tamil,,,ta

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,276,1207,1151,0,0,0,0,276,1207,sv.po,,sv,,swedish,,,sv

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,275,1201,1229,0,0,0,0,275,1201,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@ije.po,205,799,766,32,138,7,34,244,971,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,276,1207,1237,0,0,0,0,276,1207,sr.po,,sr,,serbian,,,sr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,270,1205,1292,0,0,0,0,270,1205,sq.po,,sq,,albanian,,,sq

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,276,1207,1152,0,0,0,0,276,1207,sl.po,,sl,,slovenian,,,sl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,276,1207,1129,0,0,0,0,276,1207,sk.po,,sk,,slovak,,,sk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,206,651,716,0,0,42,417,248,1068,si.po,,si,,sinhala,,,si

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,19,20,21,171,838,54,113,244,971,rw.po,,rw,,kinyarwanda,,,rw

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,276,1207,1045,0,0,0,0,276,1207,ru.po,,ru,,russian,,,ru

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,276,1207,1258,0,0,0,0,276,1207,ro.po,,ro,,romanian,,,ro

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,276,1207,1327,0,0,0,0,276,1207,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,275,1206,1244,0,0,0,0,275,1206,pt.po,,pt,,portuguese,,,pt

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,270,1200,1258,1,6,0,0,271,1206,ps.po,,ps,,pashto,,,ps

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,276,1207,1130,0,0,0,0,276,1207,pl.po,,pl,,polish,,,pl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,274,1200,1327,0,0,0,0,274,1200,pa.po,,pa,,punjabi,,,pa

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,270,1198,1305,0,0,0,0,270,1198,or.po,,or,,odia,,,or

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,270,1198,1351,0,0,0,0,270,1198,oc.po,,oc,,occitan,,,oc

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,338,1525,1451,1,1,0,0,339,1526,nn.po,,nn,,norwegian nynorsk,,,nn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,276,1207,1185,0,0,0,0,276,1207,nl.po,,nl,,dutch,,,nl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,196,616,610,49,272,23,307,268,1195,ne.po,,ne,,nepali,,,ne

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,146,352,339,0,0,145,966,291,1318,nds.po,,nds,,low german,,,nds

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,274,1200,1148,0,0,0,0,274,1200,nb.po,,nb,,norwegian bokmål,,,nb

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,267,1035,440,0,0,38,348,305,1383,my.po,,my,,burmese,,,my

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,228,872,781,13,77,3,22,244,971,ms.po,,ms,,malay,,,ms

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,268,1195,1167,0,0,0,0,268,1195,mr.po,,mr,,marathi,,,mr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,203,785,658,34,152,7,34,244,971,mn.po,,mn,,mongolian,,,mn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,292,1325,1034,0,0,0,0,292,1325,ml.po,,ml,,malayalam,,,ml

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,337,1548,1603,0,0,0,0,337,1548,mk.po,,mk,,macedonian,,,mk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,226,886,935,31,117,6,175,263,1178,mg.po,,mg,,malagasy,,,mg

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,235,898,982,0,0,49,369,284,1267,mai.po,,mai,,maithili,,,mai

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,276,1207,1029,0,0,0,0,276,1207,lv.po,,lv,,latvian,,,lv

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,276,1207,973,0,0,0,0,276,1207,lt.po,,lt,,lithuanian,,,lt

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,233,903,995,2,15,8,29,243,947,ku.po,,ku,,kurdish,,,ku

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,276,1207,975,0,0,0,0,276,1207,ko.po,,ko,,korean,,,ko

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,268,1195,1057,0,0,0,0,268,1195,kn.po,,kn,,kannada,,,kn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,334,1484,620,0,0,3,64,337,1548,km.po,,km,,khmer,,,km

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,276,1207,987,0,0,0,0,276,1207,kk.po,,kk,,kazakh,,,kk

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,239,952,760,0,0,0,0,239,952,ka.po,,ka,,georgian,,,ka

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,276,1207,367,0,0,0,0,276,1207,ja.po,,ja,,japanese,,,ja

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,276,1207,1219,0,0,0,0,276,1207,it.po,,it,,italian,,,it

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,275,1201,1158,0,0,0,0,275,1201,is.po,,is,,icelandic,,,is

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,276,1207,1129,0,0,0,0,276,1207,id.po,,id,,indonesian,,,id

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,239,955,837,0,0,2,3,241,958,hy.po,,hy,,armenian,,,hy

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,276,1207,1066,0,0,0,0,276,1207,hu.po,,hu,,hungarian,,,hu

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,275,1204,1118,0,0,0,0,275,1204,hr.po,,hr,,croatian,,,hr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,268,1195,1409,0,0,0,0,268,1195,hi.po,,hi,,hindi,,,hi

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,269,1181,1086,0,0,0,0,269,1181,he.po,,he,,hebrew,,,he

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,270,1198,1319,0,0,0,0,270,1198,gu.po,,gu,,gujarati,,,gu

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,276,1207,1360,0,0,0,0,276,1207,gl.po,,gl,,galician,,,gl

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,274,1200,1551,0,0,0,0,274,1200,gd.po,,gd,,scottish gaelic,,,gd

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,150,412,484,18,75,123,838,291,1325,ga.po,,ga,,irish,,,ga

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,152,470,483,0,0,153,913,305,1383,fy.po,,fy,,western frisian,,,fy

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,276,1207,1391,0,0,0,0,276,1207,fur.po,,fur,,friulian,,,fur

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,276,1207,1404,0,0,0,0,276,1207,fr.po,,fr,,french,,,fr

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,276,1207,920,0,0,0,0,276,1207,fi.po,,fi,,finnish,,,fi

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,274,1200,1273,0,0,0,0,274,1200,fa.po,,fa,,persian,,,fa

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,274,1200,999,0,0,0,0,274,1200,eu.po,,eu,,basque,,,eu

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,276,1201,1011,0,0,0,0,276,1201,et.po,,et,,estonian,,,et

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,276,1207,1303,0,0,0,0,276,1207,es.po,,es,,spanish,,,es

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,276,1207,1146,0,0,0,0,276,1207,eo.po,,eo,,esperanto,,,eo

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,275,1201,1228,0,0,0,0,275,1201,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,253,1084,1093,0,0,0,0,253,1084,en_ca.po,,en,ca,english,,canada,en_ca

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,243,1043,1043,56,335,0,0,299,1378,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,276,1207,1291,0,0,0,0,276,1207,el.po,,el,,greek,,,el

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,259,1159,570,0,0,0,0,259,1159,dz.po,,dz,,dzongkha,,,dz

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,276,1207,1244,0,0,0,0,276,1207,de.po,,de,,german,,,de

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,275,1204,1122,0,0,0,0,275,1204,da.po,,da,,danish,,,da

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,242,957,941,0,0,0,0,242,957,cy.po,,cy,,welsh,,,cy

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/csb.po,21,41,45,0,0,319,1514,340,1555,csb.po,,csb,,kashubian,,,csb

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,276,1207,1116,0,0,0,0,276,1207,cs.po,,cs,,czech,,,cs

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,274,1200,1384,0,0,0,0,274,1200,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,276,1207,1393,0,0,0,0,276,1207,ca.po,,ca,,catalan,,,ca

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,268,1195,1160,0,0,0,0,268,1195,bs.po,,bs,,bosnian,,,bs

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,264,1007,1200,0,0,28,318,292,1325,br.po,,br,,breton,,,br

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,268,1195,1330,0,0,0,0,268,1195,bn_in.po,,bn,in,bangla,,india,bn_in

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,297,1370,1466,0,0,0,0,297,1370,bn.po,,bn,,bangla,,,bn

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,274,1200,1245,0,0,0,0,274,1200,bg.po,,bg,,bulgarian,,,bg

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,284,1267,1127,0,0,0,0,284,1267,be@latin.po,latin,be,,belarusian,,,be@latin

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,274,1200,1101,0,0,0,0,274,1200,be.po,,be,,belarusian,,,be

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,228,872,771,13,77,3,22,244,971,az.po,,az,,azerbaijani,,,az

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,335,1519,1536,0,0,0,0,335,1519,ast.po,,ast,,asturian,,,ast

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,270,1198,1309,0,0,0,0,270,1198,as.po,,as,,assamese,,,as

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,275,1201,1101,0,0,0,0,275,1201,ar.po,,ar,,arabic,,,ar

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,270,1198,1238,0,0,0,0,270,1198,an.po,,an,,aragonese,,,an

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,66,110,142,53,145,125,716,244,971,am.po,,am,,amharic,,,am

+ file-roller-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,275,1201,1278,0,0,0,0,275,1201,af.po,,af,,afrikaans,,,af

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/lt.po,54,405,378,31,237,154,1926,239,2568,lt.po,,lt,,lithuanian,,,lt

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/hu.po,235,2545,2410,4,23,0,0,239,2568,hu.po,,hu,,hungarian,,,hu

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sl.po,235,2545,2473,4,23,0,0,239,2568,sl.po,,sl,,slovenian,,,sl

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/nl.po,230,2510,2419,6,38,3,20,239,2568,nl.po,,nl,,dutch,,,nl

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/vi.po,235,2545,3335,3,16,1,7,239,2568,vi.po,,vi,,vietnamese,,,vi

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/be.po,23,82,78,33,306,183,2180,239,2568,be.po,,be,,belarusian,,,be

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ko.po,21,86,91,30,228,188,2254,239,2568,ko.po,,ko,,korean,,,ko

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/rw.po,2,2,2,80,699,157,1867,239,2568,rw.po,,rw,,kinyarwanda,,,rw

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ms.po,16,55,58,9,54,214,2459,239,2568,ms.po,,ms,,malay,,,ms

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/hr.po,178,1856,1729,20,220,41,492,239,2568,hr.po,,hr,,croatian,,,hr

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/fi.po,230,2510,2022,7,45,2,13,239,2568,fi.po,,fi,,finnish,,,fi

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/zh_tw.po,42,447,224,57,598,140,1523,239,2568,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ca.po,56,583,704,63,747,120,1238,239,2568,ca.po,,ca,,catalan,,,ca

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/zh_cn.po,194,2063,798,15,129,30,376,239,2568,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sv.po,235,2545,2420,3,16,1,7,239,2568,sv.po,,sv,,swedish,,,sv

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/eo.po,230,2510,2438,7,45,2,13,239,2568,eo.po,,eo,,esperanto,,,eo

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/uk.po,235,2545,2505,3,16,1,7,239,2568,uk.po,,uk,,ukrainian,,,uk

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sk.po,49,508,510,61,689,129,1371,239,2568,sk.po,,sk,,slovak,,,sk

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ja.po,180,1866,809,18,208,41,494,239,2568,ja.po,,ja,,japanese,,,ja

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/fr.po,235,2545,2880,4,23,0,0,239,2568,fr.po,,fr,,french,,,fr

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ga.po,145,1474,1697,40,504,54,590,239,2568,ga.po,,ga,,irish,,,ga

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/tr.po,222,2422,2054,13,119,4,27,239,2568,tr.po,,tr,,turkish,,,tr

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pt.po,123,1094,1176,61,877,55,597,239,2568,pt.po,,pt,,portuguese,,,pt

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/nb.po,235,2545,2432,3,16,1,7,239,2568,nb.po,,nb,,norwegian bokmål,,,nb

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pl.po,235,2545,2423,3,16,1,7,239,2568,pl.po,,pl,,polish,,,pl

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/de.po,230,2510,2486,7,45,2,13,239,2568,de.po,,de,,german,,,de

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ru.po,235,2545,2424,3,16,1,7,239,2568,ru.po,,ru,,russian,,,ru

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/et.po,235,2545,2079,3,16,1,7,239,2568,et.po,,et,,estonian,,,et

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/lg.po,27,103,129,34,315,178,2150,239,2568,lg.po,,lg,,ganda,,,lg

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/id.po,145,1474,1477,40,504,54,590,239,2568,id.po,,id,,indonesian,,,id

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/el.po,230,2510,2568,6,38,3,20,239,2568,el.po,,el,,greek,,,el

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/bg.po,118,1223,1378,49,603,72,742,239,2568,bg.po,,bg,,bulgarian,,,bg

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/es.po,171,1768,2151,5,32,63,768,239,2568,es.po,,es,,spanish,,,es

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/sr.po,235,2545,2542,3,16,1,7,239,2568,sr.po,,sr,,serbian,,,sr

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/ro.po,51,515,534,62,705,126,1348,239,2568,ro.po,,ro,,romanian,,,ro

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/da.po,235,2545,2409,3,16,1,7,239,2568,da.po,,da,,danish,,,da

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/it.po,222,2422,2635,13,119,4,27,239,2568,it.po,,it,,italian,,,it

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/pt_br.po,235,2545,2918,3,16,1,7,239,2568,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ findutils-4.6.0-22.fc30.src.rpm.stats.csv,po/cs.po,235,2545,2385,4,23,0,0,239,2568,cs.po,,cs,,czech,,,cs

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/zh_tw.po,415,2217,620,0,0,0,0,415,2217,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/zh_cn.po,391,2082,643,2,13,22,122,415,2217,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/uk.po,415,2217,2139,0,0,0,0,415,2217,uk.po,,uk,,ukrainian,,,uk

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/tr.po,129,568,542,0,0,286,1649,415,2217,tr.po,,tr,,turkish,,,tr

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/te.po,293,1496,1267,0,0,122,721,415,2217,te.po,,te,,telugu,,,te

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ta.po,293,1496,1238,0,0,122,721,415,2217,ta.po,,ta,,tamil,,,ta

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sv.po,415,2217,2024,0,0,0,0,415,2217,sv.po,,sv,,swedish,,,sv

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sr@latin.po,34,212,207,0,0,381,2005,415,2217,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sr.po,297,1507,1455,0,0,118,710,415,2217,sr.po,,sr,,serbian,,,sr

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sq.po,86,141,152,0,0,329,2076,415,2217,sq.po,,sq,,albanian,,,sq

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/sk.po,415,2217,2029,0,0,0,0,415,2217,sk.po,,sk,,slovak,,,sk

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ru.po,402,2167,1814,0,0,13,50,415,2217,ru.po,,ru,,russian,,,ru

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pt_br.po,414,2209,2474,0,0,1,8,415,2217,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pt.po,290,1453,1544,0,0,125,764,415,2217,pt.po,,pt,,portuguese,,,pt

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pl.po,415,2217,2098,0,0,0,0,415,2217,pl.po,,pl,,polish,,,pl

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/pa.po,295,1496,1624,0,0,120,721,415,2217,pa.po,,pa,,punjabi,,,pa

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/or.po,293,1496,1492,0,0,122,721,415,2217,or.po,,or,,odia,,,or

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/nl.po,415,2217,2199,0,0,0,0,415,2217,nl.po,,nl,,dutch,,,nl

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/mr.po,293,1496,1407,0,0,122,721,415,2217,mr.po,,mr,,marathi,,,mr

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ml.po,293,1496,1168,0,0,122,721,415,2217,ml.po,,ml,,malayalam,,,ml

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/lt.po,169,436,402,0,0,246,1781,415,2217,lt.po,,lt,,lithuanian,,,lt

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ko.po,382,2054,1669,0,0,33,163,415,2217,ko.po,,ko,,korean,,,ko

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/kn.po,293,1496,1253,0,0,122,721,415,2217,kn.po,,kn,,kannada,,,kn

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ka.po,82,180,170,0,0,333,2037,415,2217,ka.po,,ka,,georgian,,,ka

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ja.po,403,2168,671,0,0,12,49,415,2217,ja.po,,ja,,japanese,,,ja

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/it.po,406,2142,2229,1,43,8,32,415,2217,it.po,,it,,italian,,,it

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/id.po,36,135,137,0,0,379,2082,415,2217,id.po,,id,,indonesian,,,id

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ia.po,4,9,13,0,0,411,2208,415,2217,ia.po,,ia,,interlingua,,,ia

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/hu.po,415,2217,2067,0,0,0,0,415,2217,hu.po,,hu,,hungarian,,,hu

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/hi.po,293,1496,1676,0,0,122,721,415,2217,hi.po,,hi,,hindi,,,hi

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/gu.po,293,1496,1558,0,0,122,721,415,2217,gu.po,,gu,,gujarati,,,gu

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/gl.po,108,434,547,0,0,307,1783,415,2217,gl.po,,gl,,galician,,,gl

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/fr.po,415,2217,2571,0,0,0,0,415,2217,fr.po,,fr,,french,,,fr

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/fi.po,302,1124,879,0,0,113,1093,415,2217,fi.po,,fi,,finnish,,,fi

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/eu.po,64,116,118,0,0,351,2101,415,2217,eu.po,,eu,,basque,,,eu

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/et.po,93,216,206,0,0,322,2001,415,2217,et.po,,et,,estonian,,,et

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/es.po,415,2217,2440,0,0,0,0,415,2217,es.po,,es,,spanish,,,es

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/en_us.po,293,1496,1496,67,314,55,407,415,2217,en_us.po,,en,us,english,,united states,en_us

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/en_gb.po,203,819,819,0,0,212,1398,415,2217,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/el.po,125,584,647,0,0,290,1633,415,2217,el.po,,el,,greek,,,el

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/de.po,403,2168,2005,0,0,12,49,415,2217,de.po,,de,,german,,,de

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/da.po,415,2217,1939,0,0,0,0,415,2217,da.po,,da,,danish,,,da

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/cs.po,414,2209,2018,0,0,1,8,415,2217,cs.po,,cs,,czech,,,cs

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ca.po,415,2217,2631,0,0,0,0,415,2217,ca.po,,ca,,catalan,,,ca

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/bn_in.po,293,1496,1517,0,0,122,721,415,2217,bn_in.po,,bn,in,bangla,,india,bn_in

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/bg.po,134,622,664,0,0,281,1595,415,2217,bg.po,,bg,,bulgarian,,,bg

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/as.po,293,1496,1515,0,0,122,721,415,2217,as.po,,as,,assamese,,,as

+ firewalld-0.6.3-2.fc30.src.rpm.stats.csv,po/ar.po,34,212,171,0,0,381,2005,415,2217,ar.po,,ar,,arabic,,,ar

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,816,3989,1533,104,476,38,267,958,4732,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/uk.po,820,4015,4209,98,434,40,283,958,4732,uk.po,,uk,,ukrainian,,,uk

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/tr.po,397,1875,1688,309,1434,252,1423,958,4732,tr.po,,tr,,turkish,,,tr

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/sv.po,515,2372,2282,287,1379,156,981,958,4732,sv.po,,sv,,swedish,,,sv

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/sk.po,140,509,535,286,1245,532,2978,958,4732,sk.po,,sk,,slovak,,,sk

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/ru.po,519,2377,2338,253,1202,186,1153,958,4732,ru.po,,ru,,russian,,,ru

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,657,3109,3574,201,940,100,683,958,4732,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/pl.po,958,4732,4769,0,0,0,0,958,4732,pl.po,,pl,,polish,,,pl

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/id.po,908,4451,4442,34,131,16,150,958,4732,id.po,,id,,indonesian,,,id

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/hu.po,527,2452,2443,280,1332,151,948,958,4732,hu.po,,hu,,hungarian,,,hu

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/gl.po,445,2091,2499,303,1399,210,1242,958,4732,gl.po,,gl,,galician,,,gl

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/es.po,435,2027,2573,316,1469,207,1236,958,4732,es.po,,es,,spanish,,,es

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/de.po,455,2103,2117,289,1367,214,1262,958,4732,de.po,,de,,german,,,de

+ flatpak-1.2.4-2.fc30.src.rpm.stats.csv,po/cs.po,871,4061,3965,0,0,87,671,958,4732,cs.po,,cs,,czech,,,cs

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/nl.po,130,1056,1023,0,0,0,0,130,1056,nl.po,,nl,,dutch,,,nl

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/el.po,130,1056,1177,0,0,0,0,130,1056,el.po,,el,,greek,,,el

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/vi.po,130,1056,1422,0,0,0,0,130,1056,vi.po,,vi,,vietnamese,,,vi

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fa.po,130,1056,1113,0,0,0,0,130,1056,fa.po,,fa,,persian,,,fa

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_cn.po,130,1056,224,0,0,0,0,130,1056,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/be.po,130,1056,1001,0,0,0,0,130,1056,be.po,,be,,belarusian,,,be

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ml.po,111,858,676,0,0,0,0,111,858,ml.po,,ml,,malayalam,,,ml

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/tr.po,130,1056,880,0,0,0,0,130,1056,tr.po,,tr,,turkish,,,tr

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/he.po,80,517,558,0,0,30,334,110,851,he.po,,he,,hebrew,,,he

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/de.po,130,1056,1058,0,0,0,0,130,1056,de.po,,de,,german,,,de

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/as.po,123,1003,966,0,0,0,0,123,1003,as.po,,as,,assamese,,,as

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fr.po,130,1056,1341,0,0,0,0,130,1056,fr.po,,fr,,french,,,fr

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/eo.po,36,203,198,5,34,89,819,130,1056,eo.po,,eo,,esperanto,,,eo

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bs.po,124,1011,953,0,0,0,0,124,1011,bs.po,,bs,,bosnian,,,bs

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ko.po,130,1056,909,0,0,0,0,130,1056,ko.po,,ko,,korean,,,ko

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pl.po,130,1056,1067,0,0,0,0,130,1056,pl.po,,pl,,polish,,,pl

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ug.po,111,858,778,0,0,0,0,111,858,ug.po,,ug,,uyghur,,,ug

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/lv.po,130,1056,925,0,0,0,0,130,1056,lv.po,,lv,,latvian,,,lv

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hu.po,130,1056,953,0,0,0,0,130,1056,hu.po,,hu,,hungarian,,,hu

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ca.po,130,1056,1414,0,0,0,0,130,1056,ca.po,,ca,,catalan,,,ca

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/kk.po,8,10,14,0,0,122,1046,130,1056,kk.po,,kk,,kazakh,,,kk

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/da.po,130,1056,980,0,0,0,0,130,1056,da.po,,da,,danish,,,da

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sr.po,130,1056,1072,0,0,0,0,130,1056,sr.po,,sr,,serbian,,,sr

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bn_in.po,123,1003,1004,0,0,0,0,123,1003,bn_in.po,,bn,in,bangla,,india,bn_in

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sv.po,130,1056,997,0,0,0,0,130,1056,sv.po,,sv,,swedish,,,sv

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ar.po,13,41,40,0,0,96,810,109,851,ar.po,,ar,,arabic,,,ar

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pa.po,123,1003,1122,0,0,0,0,123,1003,pa.po,,pa,,punjabi,,,pa

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/te.po,123,1003,812,0,0,0,0,123,1003,te.po,,te,,telugu,,,te

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/uk.po,114,947,843,0,0,0,0,114,947,uk.po,,uk,,ukrainian,,,uk

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/cs.po,130,1056,1049,0,0,0,0,130,1056,cs.po,,cs,,czech,,,cs

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/kn.po,123,1003,845,0,0,0,0,123,1003,kn.po,,kn,,kannada,,,kn

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/nb.po,113,793,767,2,18,15,245,130,1056,nb.po,,nb,,norwegian bokmål,,,nb

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/tg.po,6,6,6,0,0,105,852,111,858,tg.po,,tg,,tajik,,,tg

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hi.po,123,1003,1165,0,0,0,0,123,1003,hi.po,,hi,,hindi,,,hi

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/it.po,130,1056,1217,0,0,0,0,130,1056,it.po,,it,,italian,,,it

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/en_gb.po,130,1056,1056,0,0,0,0,130,1056,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/es.po,130,1056,1344,0,0,0,0,130,1056,es.po,,es,,spanish,,,es

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ro.po,78,611,778,12,103,33,289,123,1003,ro.po,,ro,,romanian,,,ro

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/oc.po,130,1056,1333,0,0,0,0,130,1056,oc.po,,oc,,occitan,,,oc

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pt_br.po,130,1056,1252,0,0,0,0,130,1056,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ja.po,109,843,315,0,0,1,8,110,851,ja.po,,ja,,japanese,,,ja

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/eu.po,130,1056,965,0,0,0,0,130,1056,eu.po,,eu,,basque,,,eu

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_tw.po,130,1056,263,0,0,0,0,130,1056,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fi.po,34,196,181,1,6,95,854,130,1056,fi.po,,fi,,finnish,,,fi

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/zh_hk.po,123,1003,257,0,0,0,0,123,1003,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ta.po,123,1003,886,0,0,0,0,123,1003,ta.po,,ta,,tamil,,,ta

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/or.po,123,1003,952,0,0,0,0,123,1003,or.po,,or,,odia,,,or

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/pt.po,130,1056,1181,0,0,0,0,130,1056,pt.po,,pt,,portuguese,,,pt

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ca@valencia.po,123,1003,1322,0,0,0,0,123,1003,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/gu.po,123,1003,1052,0,0,0,0,123,1003,gu.po,,gu,,gujarati,,,gu

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/ru.po,130,1056,995,0,0,0,0,130,1056,ru.po,,ru,,russian,,,ru

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sk.po,130,1056,1093,0,0,0,0,130,1056,sk.po,,sk,,slovak,,,sk

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/bg.po,110,851,1037,0,0,0,0,110,851,bg.po,,bg,,bulgarian,,,bg

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/lt.po,130,1056,868,0,0,0,0,130,1056,lt.po,,lt,,lithuanian,,,lt

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/gl.po,130,1056,1366,0,0,0,0,130,1056,gl.po,,gl,,galician,,,gl

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/id.po,130,1056,1026,0,0,0,0,130,1056,id.po,,id,,indonesian,,,id

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/mr.po,123,1003,876,0,0,0,0,123,1003,mr.po,,mr,,marathi,,,mr

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sr@latin.po,130,1056,1072,0,0,0,0,130,1056,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/sl.po,130,1056,1022,0,0,0,0,130,1056,sl.po,,sl,,slovenian,,,sl

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/fur.po,130,1056,1319,0,0,0,0,130,1056,fur.po,,fur,,friulian,,,fur

+ folks-0.11.4-15.fc30.src.rpm.stats.csv,po/hr.po,95,735,667,3,37,32,284,130,1056,hr.po,,hr,,croatian,,,hr

+ fontconfig-2.13.1-6.fc30.src.rpm.stats.csv,po-conf/zh_cn.po,29,157,66,0,0,0,0,29,157,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ fontconfig-2.13.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,106,756,375,0,0,0,0,106,756,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pt_br.po,57,419,452,0,0,0,0,57,419,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ja.po,57,419,79,0,0,0,0,57,419,ja.po,,ja,,japanese,,,ja

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/da.po,57,419,347,0,0,0,0,57,419,da.po,,da,,danish,,,da

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nl.po,57,419,412,0,0,0,0,57,419,nl.po,,nl,,dutch,,,nl

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,57,419,57,419,he.po,,he,,hebrew,,,he

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,57,419,57,419,sq.po,,sq,,albanian,,,sq

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/tr.po,57,419,352,0,0,0,0,57,419,tr.po,,tr,,turkish,,,tr

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,57,419,57,419,mr.po,,mr,,marathi,,,mr

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_cn.po,57,419,90,0,0,0,0,57,419,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/de.po,57,419,454,0,0,0,0,57,419,de.po,,de,,german,,,de

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,57,419,57,419,be.po,,be,,belarusian,,,be

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/it.po,57,419,376,0,0,0,0,57,419,it.po,,it,,italian,,,it

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,57,419,57,419,bn_in.po,,bn,in,bangla,,india,bn_in

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,57,419,57,419,te.po,,te,,telugu,,,te

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,57,419,57,419,vi.po,,vi,,vietnamese,,,vi

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/cs.po,57,419,384,0,0,0,0,57,419,cs.po,,cs,,czech,,,cs

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,57,419,57,419,ka.po,,ka,,georgian,,,ka

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,57,419,57,419,ast.po,,ast,,asturian,,,ast

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,57,419,57,419,kk.po,,kk,,kazakh,,,kk

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/eo.po,23,151,144,0,0,34,268,57,419,eo.po,,eo,,esperanto,,,eo

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hr.po,57,419,395,0,0,0,0,57,419,hr.po,,hr,,croatian,,,hr

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,57,419,57,419,cy.po,,cy,,welsh,,,cy

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/bg.po,25,163,164,0,0,32,256,57,419,bg.po,,bg,,bulgarian,,,bg

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,57,419,57,419,ms.po,,ms,,malay,,,ms

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,57,419,57,419,hi.po,,hi,,hindi,,,hi

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/oc.po,57,419,411,0,0,0,0,57,419,oc.po,,oc,,occitan,,,oc

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sr.po,57,419,408,0,0,0,0,57,419,sr.po,,sr,,serbian,,,sr

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,57,419,57,419,az.po,,az,,azerbaijani,,,az

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pt.po,57,419,435,0,0,0,0,57,419,pt.po,,pt,,portuguese,,,pt

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ko.po,57,419,259,0,0,0,0,57,419,ko.po,,ko,,korean,,,ko

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ro.po,23,151,183,0,0,34,268,57,419,ro.po,,ro,,romanian,,,ro

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pl.po,57,419,398,0,0,0,0,57,419,pl.po,,pl,,polish,,,pl

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,57,419,57,419,th.po,,th,,thai,,,th

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,57,419,57,419,ga.po,,ga,,irish,,,ga

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,57,419,57,419,ta.po,,ta,,tamil,,,ta

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_tw.po,57,419,90,0,0,0,0,57,419,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/lv.po,57,419,359,0,0,0,0,57,419,lv.po,,lv,,latvian,,,lv

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sk.po,57,419,337,0,0,0,0,57,419,sk.po,,sk,,slovak,,,sk

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,57,419,57,419,or.po,,or,,odia,,,or

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,57,419,57,419,eu.po,,eu,,basque,,,eu

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ar.po,23,151,113,0,0,34,268,57,419,ar.po,,ar,,arabic,,,ar

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fur.po,57,419,577,0,0,0,0,57,419,fur.po,,fur,,friulian,,,fur

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,57,419,57,419,lt.po,,lt,,lithuanian,,,lt

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fi.po,28,205,127,0,0,29,214,57,419,fi.po,,fi,,finnish,,,fi

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fo.po,23,151,138,0,0,34,268,57,419,fo.po,,fo,,faroese,,,fo

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ca.po,57,419,417,0,0,0,0,57,419,ca.po,,ca,,catalan,,,ca

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/en_gb.po,57,419,419,0,0,0,0,57,419,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,57,419,57,419,fa.po,,fa,,persian,,,fa

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,57,419,57,419,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/id.po,57,419,403,0,0,0,0,57,419,id.po,,id,,indonesian,,,id

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,57,419,57,419,kn.po,,kn,,kannada,,,kn

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,57,419,57,419,ml.po,,ml,,malayalam,,,ml

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,57,419,57,419,wa.po,,wa,,walloon,,,wa

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,57,419,57,419,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/el.po,57,419,500,0,0,0,0,57,419,el.po,,el,,greek,,,el

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,57,419,57,419,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sv.po,57,419,344,0,0,0,0,57,419,sv.po,,sv,,swedish,,,sv

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/uk.po,57,419,412,0,0,0,0,57,419,uk.po,,uk,,ukrainian,,,uk

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,57,419,57,419,et.po,,et,,estonian,,,et

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,57,419,57,419,nb.po,,nb,,norwegian bokmål,,,nb

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,57,419,57,419,gu.po,,gu,,gujarati,,,gu

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/es.po,57,419,461,0,0,0,0,57,419,es.po,,es,,spanish,,,es

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/pa.po,28,183,193,0,0,29,236,57,419,pa.po,,pa,,punjabi,,,pa

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,57,419,57,419,as.po,,as,,assamese,,,as

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/gl.po,57,419,515,0,0,0,0,57,419,gl.po,,gl,,galician,,,gl

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,57,419,57,419,nn.po,,nn,,norwegian nynorsk,,,nn

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ia.po,57,419,448,0,0,0,0,57,419,ia.po,,ia,,interlingua,,,ia

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/fr.po,57,419,435,0,0,0,0,57,419,fr.po,,fr,,french,,,fr

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/hu.po,57,419,364,0,0,0,0,57,419,hu.po,,hu,,hungarian,,,hu

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/sl.po,57,419,367,0,0,0,0,57,419,sl.po,,sl,,slovenian,,,sl

+ fprintd-0.8.1-4.fc30.src.rpm.stats.csv,po/ru.po,57,419,393,0,0,0,0,57,419,ru.po,,ru,,russian,,,ru

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,229,1115,309,0,0,0,0,229,1115,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,280,1371,362,0,0,0,0,280,1371,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/uk.po,286,1389,1436,0,0,0,0,286,1389,uk.po,,uk,,ukrainian,,,uk

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/tr.po,53,164,183,0,0,0,0,53,164,tr.po,,tr,,turkish,,,tr

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sv.po,242,1169,1162,0,0,0,0,242,1169,sv.po,,sv,,swedish,,,sv

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sr.po,181,724,723,0,0,0,0,181,724,sr.po,,sr,,serbian,,,sr

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/sk.po,91,386,389,0,0,0,0,91,386,sk.po,,sk,,slovak,,,sk

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ru.po,154,591,568,0,0,0,0,154,591,ru.po,,ru,,russian,,,ru

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,286,1389,1603,0,0,0,0,286,1389,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/pl.po,286,1389,1440,0,0,0,0,286,1389,pl.po,,pl,,polish,,,pl

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/oc.po,36,99,138,0,0,0,0,36,99,oc.po,,oc,,occitan,,,oc

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/nl.po,103,439,468,0,0,0,0,103,439,nl.po,,nl,,dutch,,,nl

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/lt.po,276,1211,1272,0,0,0,0,276,1211,lt.po,,lt,,lithuanian,,,lt

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ky.po,13,15,15,0,0,0,0,13,15,ky.po,,ky,,kyrgyz,,,ky

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ko.po,280,1371,1130,0,0,0,0,280,1371,ko.po,,ko,,korean,,,ko

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/kk.po,8,8,9,0,0,0,0,8,8,kk.po,,kk,,kazakh,,,kk

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/it.po,286,1389,1526,0,0,0,0,286,1389,it.po,,it,,italian,,,it

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/id.po,181,724,713,0,0,0,0,181,724,id.po,,id,,indonesian,,,id

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hu.po,284,1371,1237,0,0,0,0,284,1371,hu.po,,hu,,hungarian,,,hu

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hr.po,182,732,705,0,0,0,0,182,732,hr.po,,hr,,croatian,,,hr

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/hi.po,18,88,115,0,0,0,0,18,88,hi.po,,hi,,hindi,,,hi

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/he.po,25,102,97,0,0,0,0,25,102,he.po,,he,,hebrew,,,he

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fur.po,159,656,865,0,0,0,0,159,656,fur.po,,fur,,friulian,,,fur

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fr.po,18,88,126,0,0,0,0,18,88,fr.po,,fr,,french,,,fr

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/fi.po,145,722,529,0,0,0,0,145,722,fi.po,,fi,,finnish,,,fi

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/eu.po,10,12,13,0,0,0,0,10,12,eu.po,,eu,,basque,,,eu

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/eo.po,19,24,23,0,0,0,0,19,24,eo.po,,eo,,esperanto,,,eo

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,247,1205,1205,0,0,0,0,247,1205,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/de.po,214,1003,949,0,0,0,0,214,1003,de.po,,de,,german,,,de

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/da.po,286,1389,1297,0,0,0,0,286,1389,da.po,,da,,danish,,,da

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/cs.po,229,1115,1126,0,0,0,0,229,1115,cs.po,,cs,,czech,,,cs

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ca.po,280,1371,1774,0,0,0,0,280,1371,ca.po,,ca,,catalan,,,ca

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/ast.po,15,16,17,0,0,0,0,15,16,ast.po,,ast,,asturian,,,ast

+ fwupd-1.2.7-2.fc30.src.rpm.stats.csv,po/af.po,94,205,242,0,0,0,0,94,205,af.po,,af,,afrikaans,,,af

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ms.po,5,36,32,6,41,734,4684,745,4761,ms.po,,ms,,malay,,,ms

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,745,4761,1552,0,0,0,0,745,4761,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/sv.po,745,4761,4845,0,0,0,0,745,4761,sv.po,,sv,,swedish,,,sv

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/pl.po,564,3425,3588,64,474,117,862,745,4761,pl.po,,pl,,polish,,,pl

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/pt_br.po,745,4761,5405,0,0,0,0,745,4761,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/id.po,658,4100,4143,69,517,18,144,745,4761,id.po,,id,,indonesian,,,id

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/vi.po,745,4761,7301,0,0,0,0,745,4761,vi.po,,vi,,vietnamese,,,vi

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/es.po,359,2356,3101,165,994,221,1411,745,4761,es.po,,es,,spanish,,,es

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/fi.po,727,4591,3943,12,114,6,56,745,4761,fi.po,,fi,,finnish,,,fi

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/da.po,451,2813,2820,95,609,199,1339,745,4761,da.po,,da,,danish,,,da

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/fr.po,745,4761,5553,0,0,0,0,745,4761,fr.po,,fr,,french,,,fr

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/de.po,743,4709,5241,2,52,0,0,745,4761,de.po,,de,,german,,,de

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ja.po,389,2507,1273,125,782,231,1472,745,4761,ja.po,,ja,,japanese,,,ja

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/ca.po,681,4272,5542,52,399,12,90,745,4761,ca.po,,ca,,catalan,,,ca

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/nl.po,681,4272,4319,52,399,12,90,745,4761,nl.po,,nl,,dutch,,,nl

+ gawk-4.2.1-6.fc30.src.rpm.stats.csv,po/it.po,745,4761,5251,0,0,0,0,745,4761,it.po,,it,,italian,,,it

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/cs.po,30,127,133,0,0,0,0,30,127,cs.po,,cs,,czech,,,cs

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/eu.po,33,159,159,0,0,0,0,33,159,eu.po,,eu,,basque,,,eu

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/hu.po,30,127,134,0,0,0,0,30,127,hu.po,,hu,,hungarian,,,hu

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/zh_cn.po,32,154,72,0,0,0,0,32,154,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/nb.po,20,76,80,0,0,12,78,32,154,nb.po,,nb,,norwegian bokmål,,,nb

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/sr.po,34,162,173,0,0,0,0,34,162,sr.po,,sr,,serbian,,,sr

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/gl.po,32,154,202,0,0,0,0,32,154,gl.po,,gl,,galician,,,gl

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/sr@latin.po,34,162,173,0,0,0,0,34,162,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/lt.po,34,162,148,0,0,0,0,34,162,lt.po,,lt,,lithuanian,,,lt

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/da.po,34,162,168,0,0,0,0,34,162,da.po,,da,,danish,,,da

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/oc.po,33,159,200,0,0,0,0,33,159,oc.po,,oc,,occitan,,,oc

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/ru.po,34,162,164,0,0,0,0,34,162,ru.po,,ru,,russian,,,ru

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/fr.po,30,127,161,0,0,0,0,30,127,fr.po,,fr,,french,,,fr

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/tr.po,34,162,147,0,0,0,0,34,162,tr.po,,tr,,turkish,,,tr

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/es.po,30,127,159,0,0,0,0,30,127,es.po,,es,,spanish,,,es

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/pt_br.po,30,127,147,0,0,0,0,30,127,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/fur.po,34,162,198,0,0,0,0,34,162,fur.po,,fur,,friulian,,,fur

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/pl.po,30,127,140,0,0,0,0,30,127,pl.po,,pl,,polish,,,pl

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/id.po,30,127,137,0,0,0,0,30,127,id.po,,id,,indonesian,,,id

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/sl.po,34,162,181,0,0,0,0,34,162,sl.po,,sl,,slovenian,,,sl

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/tg.po,32,152,171,0,0,0,0,32,152,tg.po,,tg,,tajik,,,tg

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/bs.po,32,154,150,0,0,0,0,32,154,bs.po,,bs,,bosnian,,,bs

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/el.po,34,162,178,0,0,0,0,34,162,el.po,,el,,greek,,,el

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/lv.po,32,154,146,0,0,0,0,32,154,lv.po,,lv,,latvian,,,lv

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/de.po,30,127,141,0,0,0,0,30,127,de.po,,de,,german,,,de

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/pt.po,34,162,179,0,0,0,0,34,162,pt.po,,pt,,portuguese,,,pt

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/sv.po,30,127,126,0,0,0,0,30,127,sv.po,,sv,,swedish,,,sv

+ gcab-1.1-6.fc30.src.rpm.stats.csv,po/fi.po,24,101,83,0,0,6,26,30,127,fi.po,,fi,,finnish,,,fi

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/vi.po,4685,27633,39374,1422,10155,7223,67638,13330,105426,vi.po,,vi,,vietnamese,,,vi

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/ja.po,2444,14520,7092,5109,35405,5777,55501,13330,105426,ja.po,,ja,,japanese,,,ja

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/hr.po,123,527,499,189,926,13018,103973,13330,105426,hr.po,,hr,,croatian,,,hr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/sv.po,12396,97476,90747,689,5428,245,2522,13330,105426,sv.po,,sv,,swedish,,,sv

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/sr.po,2728,18280,17693,6640,48523,3962,38623,13330,105426,sr.po,,sr,,serbian,,,sr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/el.po,42,172,188,4216,25475,9072,79779,13330,105426,el.po,,el,,greek,,,el

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/es.po,9669,71464,89919,2820,25141,841,8821,13330,105426,es.po,,es,,spanish,,,es

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/zh_cn.po,4695,31747,10198,6953,55791,1682,17888,13330,105426,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/nl.po,837,4443,4498,5926,41350,6567,59633,13330,105426,nl.po,,nl,,dutch,,,nl

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/fr.po,13330,105426,131010,0,0,0,0,13330,105426,fr.po,,fr,,french,,,fr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/id.po,3219,22150,22362,6810,51253,3301,32023,13330,105426,id.po,,id,,indonesian,,,id

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/fi.po,2076,12614,9796,8552,63831,2702,28981,13330,105426,fi.po,,fi,,finnish,,,fi

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/tr.po,2543,16562,14477,6962,51058,3825,37806,13330,105426,tr.po,,tr,,turkish,,,tr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/da.po,1990,11888,10897,6216,43252,5124,50286,13330,105426,da.po,,da,,danish,,,da

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/zh_tw.po,2313,14698,6463,8955,69940,2062,20788,13330,105426,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/de.po,12396,97476,90762,690,5433,244,2517,13330,105426,de.po,,de,,german,,,de

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/uk.po,1020,4810,4901,0,0,12310,100616,13330,105426,uk.po,,uk,,ukrainian,,,uk

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/be.po,65,222,216,2346,13376,10919,91828,13330,105426,be.po,,be,,belarusian,,,be

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,gcc/po/ru.po,11321,86870,82235,674,5287,1335,13269,13330,105426,ru.po,,ru,,russian,,,ru

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/vi.po,211,1340,2142,1,5,4,18,216,1363,vi.po,,vi,,vietnamese,,,vi

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ja.po,188,1148,556,20,167,8,48,216,1363,ja.po,,ja,,japanese,,,ja

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/pt_br.po,216,1363,1575,0,0,0,0,216,1363,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/sv.po,216,1363,1300,0,0,0,0,216,1363,sv.po,,sv,,swedish,,,sv

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/sr.po,207,1309,1286,4,30,5,24,216,1363,sr.po,,sr,,serbian,,,sr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/el.po,5,13,16,73,380,138,970,216,1363,el.po,,el,,greek,,,el

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/es.po,211,1340,1677,1,5,4,18,216,1363,es.po,,es,,spanish,,,es

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/zh_cn.po,183,1112,440,22,175,11,76,216,1363,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/nl.po,205,1299,1352,5,37,6,27,216,1363,nl.po,,nl,,dutch,,,nl

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/fr.po,216,1363,1717,0,0,0,0,216,1363,fr.po,,fr,,french,,,fr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/id.po,182,1105,1114,23,182,11,76,216,1363,id.po,,id,,indonesian,,,id

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/fi.po,216,1363,1079,0,0,0,0,216,1363,fi.po,,fi,,finnish,,,fi

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/tr.po,185,1122,986,22,187,9,54,216,1363,tr.po,,tr,,turkish,,,tr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/da.po,216,1363,1304,0,0,0,0,216,1363,da.po,,da,,danish,,,da

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/zh_tw.po,203,1282,480,6,46,7,35,216,1363,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/eo.po,216,1363,1396,0,0,0,0,216,1363,eo.po,,eo,,esperanto,,,eo

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/de.po,216,1363,1256,0,0,0,0,216,1363,de.po,,de,,german,,,de

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/uk.po,216,1363,1345,0,0,0,0,216,1363,uk.po,,uk,,ukrainian,,,uk

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/be.po,4,12,12,27,139,185,1212,216,1363,be.po,,be,,belarusian,,,be

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ca.po,151,932,1126,41,264,24,167,216,1363,ca.po,,ca,,catalan,,,ca

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libcpp/po/ru.po,216,1363,1320,0,0,0,0,216,1363,ru.po,,ru,,russian,,,ru

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libstdc++-v3/po/fr.po,4,5,6,0,0,0,0,4,5,fr.po,,fr,,french,,,fr

+ gcc-9.0.1-0.10.fc30.src.rpm.stats.csv,libstdc++-v3/po/de.po,4,5,4,0,0,0,0,4,5,de.po,,de,,german,,,de

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ca.po,496,4074,5384,0,0,0,0,496,4074,ca.po,,ca,,catalan,,,ca

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/cs.po,497,4088,3994,0,0,0,0,497,4088,cs.po,,cs,,czech,,,cs

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/uk.po,497,4088,3802,0,0,0,0,497,4088,uk.po,,uk,,ukrainian,,,uk

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sr@latin.po,497,4088,4232,0,0,0,0,497,4088,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sq.po,485,4024,4807,0,0,0,0,485,4024,sq.po,,sq,,albanian,,,sq

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en_gb.po,497,4088,4088,0,0,0,0,497,4088,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ms.po,345,2295,2161,33,242,83,1417,461,3954,ms.po,,ms,,malay,,,ms

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/tr.po,497,4088,3404,0,0,0,0,497,4088,tr.po,,tr,,turkish,,,tr

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ar.po,474,3940,3574,9,91,1,4,484,4035,ar.po,,ar,,arabic,,,ar

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ja.po,496,4074,1646,0,0,0,0,496,4074,ja.po,,ja,,japanese,,,ja

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sl.po,497,4088,4084,0,0,0,0,497,4088,sl.po,,sl,,slovenian,,,sl

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/he.po,497,4088,4087,0,0,0,0,497,4088,he.po,,he,,hebrew,,,he

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pa.po,497,4088,4701,0,0,0,0,497,4088,pa.po,,pa,,punjabi,,,pa

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/de.po,497,4088,4533,0,0,0,0,497,4088,de.po,,de,,german,,,de

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/az.po,397,3479,3208,31,234,33,241,461,3954,az.po,,az,,azerbaijani,,,az

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ast.po,497,4088,4700,0,0,0,0,497,4088,ast.po,,ast,,asturian,,,ast

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/eu.po,497,4088,3796,0,0,0,0,497,4088,eu.po,,eu,,basque,,,eu

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bs.po,443,3832,3670,11,72,7,50,461,3954,bs.po,,bs,,bosnian,,,bs

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bn.po,485,4024,4139,0,0,0,0,485,4024,bn.po,,bn,,bangla,,,bn

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fr.po,497,4088,5075,0,0,0,0,497,4088,fr.po,,fr,,french,,,fr

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hr.po,415,3478,3446,6,52,51,432,472,3962,hr.po,,hr,,croatian,,,hr

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/gu.po,497,4088,4445,0,0,0,0,497,4088,gu.po,,gu,,gujarati,,,gu

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sv.po,497,4088,3991,0,0,0,0,497,4088,sv.po,,sv,,swedish,,,sv

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pl.po,496,4074,4023,0,0,0,0,496,4074,pl.po,,pl,,polish,,,pl

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_hk.po,497,4088,1300,0,0,0,0,497,4088,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/or.po,497,4088,4141,0,0,0,0,497,4088,or.po,,or,,odia,,,or

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/te.po,497,4088,3604,0,0,0,0,497,4088,te.po,,te,,telugu,,,te

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fi.po,497,4088,3293,0,0,0,0,497,4088,fi.po,,fi,,finnish,,,fi

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_tw.po,497,4088,1300,0,0,0,0,497,4088,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/yi.po,1,1,1,0,0,460,3953,461,3954,yi.po,,yi,,yiddish,,,yi

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mk.po,477,4004,4344,0,0,0,0,477,4004,mk.po,,mk,,macedonian,,,mk

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ne.po,480,4026,3967,0,0,1,6,481,4032,ne.po,,ne,,nepali,,,ne

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/be.po,497,4088,3838,0,0,0,0,497,4088,be.po,,be,,belarusian,,,be

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/lv.po,496,4074,3481,0,0,0,0,496,4074,lv.po,,lv,,latvian,,,lv

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/th.po,497,4088,1820,0,0,0,0,497,4088,th.po,,th,,thai,,,th

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/id.po,497,4088,4008,0,0,0,0,497,4088,id.po,,id,,indonesian,,,id

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/es.po,496,4074,5057,0,0,0,0,496,4074,es.po,,es,,spanish,,,es

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nl.po,497,4088,4205,0,0,0,0,497,4088,nl.po,,nl,,dutch,,,nl

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/fa.po,444,3752,4159,4,24,13,178,461,3954,fa.po,,fa,,persian,,,fa

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hu.po,497,4088,4032,0,0,0,0,497,4088,hu.po,,hu,,hungarian,,,hu

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/xh.po,443,3832,3244,11,72,7,50,461,3954,xh.po,,xh,,xhosa,,,xh

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/da.po,497,4088,3891,0,0,0,0,497,4088,da.po,,da,,danish,,,da

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pt_br.po,497,4088,4748,0,0,0,0,497,4088,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bn_in.po,485,4024,4183,0,0,0,0,485,4024,bn_in.po,,bn,in,bangla,,india,bn_in

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mr.po,485,4024,3849,0,0,0,0,485,4024,mr.po,,mr,,marathi,,,mr

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hi.po,496,4074,4733,0,0,0,0,496,4074,hi.po,,hi,,hindi,,,hi

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/lt.po,497,4088,3544,0,0,0,0,497,4088,lt.po,,lt,,lithuanian,,,lt

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/kn.po,484,4035,3566,0,0,0,0,484,4035,kn.po,,kn,,kannada,,,kn

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/vi.po,485,4024,5953,5,25,7,39,497,4088,vi.po,,vi,,vietnamese,,,vi

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ug.po,497,4088,3801,0,0,0,0,497,4088,ug.po,,ug,,uyghur,,,ug

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/rw.po,3,3,3,428,3832,30,119,461,3954,rw.po,,rw,,kinyarwanda,,,rw

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/km.po,497,4088,1957,0,0,0,0,497,4088,km.po,,km,,khmer,,,km

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ca@valencia.po,496,4074,5380,0,0,0,0,496,4074,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/cy.po,484,4035,4233,0,0,0,0,484,4035,cy.po,,cy,,welsh,,,cy

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nn.po,477,4004,4022,0,0,0,0,477,4004,nn.po,,nn,,norwegian nynorsk,,,nn

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ku.po,9,10,12,0,0,452,3944,461,3954,ku.po,,ku,,kurdish,,,ku

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/as.po,497,4088,4103,0,0,0,0,497,4088,as.po,,as,,assamese,,,as

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/eo.po,114,553,576,2,19,380,3502,496,4074,eo.po,,eo,,esperanto,,,eo

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mai.po,429,3565,3838,0,0,47,421,476,3986,mai.po,,mai,,maithili,,,mai

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/nb.po,497,4088,4003,0,0,0,0,497,4088,nb.po,,nb,,norwegian bokmål,,,nb

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/el.po,496,4074,4400,0,0,0,0,496,4074,el.po,,el,,greek,,,el

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mn.po,443,3832,3414,11,72,7,50,461,3954,mn.po,,mn,,mongolian,,,mn

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ta.po,497,4088,3251,0,0,0,0,497,4088,ta.po,,ta,,tamil,,,ta

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ro.po,485,4024,4546,0,0,0,0,485,4024,ro.po,,ro,,romanian,,,ro

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/si.po,11,22,29,0,0,470,4010,481,4032,si.po,,si,,sinhala,,,si

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/hy.po,483,4025,3888,0,0,0,0,483,4025,hy.po,,hy,,armenian,,,hy

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/zh_cn.po,497,4088,1124,0,0,0,0,497,4088,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ka.po,481,4032,3302,0,0,0,0,481,4032,ka.po,,ka,,georgian,,,ka

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en_ca.po,481,4032,4030,0,0,0,0,481,4032,en_ca.po,,en,ca,english,,canada,en_ca

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/am.po,19,40,40,2,9,440,3905,461,3954,am.po,,am,,amharic,,,am

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/gl.po,497,4088,5218,0,0,0,0,497,4088,gl.po,,gl,,galician,,,gl

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sk.po,461,3957,3742,0,0,16,47,477,4004,sk.po,,sk,,slovak,,,sk

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/dz.po,477,4004,2148,0,0,0,0,477,4004,dz.po,,dz,,dzongkha,,,dz

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/it.po,497,4088,4609,0,0,0,0,497,4088,it.po,,it,,italian,,,it

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/sr.po,497,4088,4232,0,0,0,0,497,4088,sr.po,,sr,,serbian,,,sr

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/oc.po,45,188,228,0,0,426,3767,471,3955,oc.po,,oc,,occitan,,,oc

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ml.po,496,4074,3459,0,0,0,0,496,4074,ml.po,,ml,,malayalam,,,ml

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ru.po,497,4088,3972,0,0,0,0,497,4088,ru.po,,ru,,russian,,,ru

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/pt.po,497,4088,4675,0,0,0,0,497,4088,pt.po,,pt,,portuguese,,,pt

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/is.po,178,1159,1217,22,133,261,2662,461,3954,is.po,,is,,icelandic,,,is

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ga.po,61,264,277,16,89,384,3601,461,3954,ga.po,,ga,,irish,,,ga

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/et.po,393,2728,2310,0,0,90,1286,483,4014,et.po,,et,,estonian,,,et

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/mg.po,477,3998,4428,2,19,0,0,479,4017,mg.po,,mg,,malagasy,,,mg

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/ko.po,497,4088,3534,0,0,0,0,497,4088,ko.po,,ko,,korean,,,ko

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/bg.po,497,4088,4854,0,0,0,0,497,4088,bg.po,,bg,,bulgarian,,,bg

+ gconf2-3.2.6-25.fc30.src.rpm.stats.csv,po/en@shaw.po,484,4035,4035,0,0,0,0,484,4035,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/lt.po,255,704,617,0,0,0,0,255,704,lt.po,,lt,,lithuanian,,,lt

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ca.po,254,700,870,0,0,0,0,254,700,ca.po,,ca,,catalan,,,ca

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pl.po,255,704,665,0,0,0,0,255,704,pl.po,,pl,,polish,,,pl

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/kn.po,59,115,110,71,205,97,302,227,622,kn.po,,kn,,kannada,,,kn

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ast.po,64,141,170,71,193,92,288,227,622,ast.po,,ast,,asturian,,,ast

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/cs.po,255,704,672,0,0,0,0,255,704,cs.po,,cs,,czech,,,cs

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,254,700,872,0,0,0,0,254,700,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ne.po,67,105,118,160,449,27,146,254,700,ne.po,,ne,,nepali,,,ne

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en_ca.po,0,0,0,10,35,217,587,227,622,en_ca.po,,en,ca,english,,canada,en_ca

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/de.po,255,704,666,0,0,0,0,255,704,de.po,,de,,german,,,de

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/lv.po,255,704,644,0,0,0,0,255,704,lv.po,,lv,,latvian,,,lv

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sq.po,6,11,10,48,159,173,452,227,622,sq.po,,sq,,albanian,,,sq

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/te.po,181,468,412,17,50,44,160,242,678,te.po,,te,,telugu,,,te

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/si.po,0,0,0,5,9,222,613,227,622,si.po,,si,,sinhala,,,si

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/da.po,255,704,640,0,0,0,0,255,704,da.po,,da,,danish,,,da

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/oc.po,254,700,809,0,0,0,0,254,700,oc.po,,oc,,occitan,,,oc

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sl.po,255,704,687,0,0,0,0,255,704,sl.po,,sl,,slovenian,,,sl

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/id.po,255,704,716,0,0,0,0,255,704,id.po,,id,,indonesian,,,id

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/gl.po,255,704,828,0,0,0,0,255,704,gl.po,,gl,,galician,,,gl

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ru.po,254,700,645,0,0,0,0,254,700,ru.po,,ru,,russian,,,ru

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sk.po,255,704,679,0,0,0,0,255,704,sk.po,,sk,,slovak,,,sk

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/uk.po,242,678,602,0,0,0,0,242,678,uk.po,,uk,,ukrainian,,,uk

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hr.po,255,704,656,0,0,0,0,255,704,hr.po,,hr,,croatian,,,hr

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_tw.po,255,704,317,0,0,0,0,255,704,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pt_br.po,255,704,812,0,0,0,0,255,704,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bg.po,241,677,767,0,0,0,0,241,677,bg.po,,bg,,bulgarian,,,bg

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_hk.po,254,700,315,0,0,0,0,254,700,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/he.po,254,700,676,0,0,0,0,254,700,he.po,,he,,hebrew,,,he

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/tr.po,255,704,662,0,0,0,0,255,704,tr.po,,tr,,turkish,,,tr

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/be@latin.po,59,115,105,71,205,97,302,227,622,be@latin.po,latin,be,,belarusian,,,be@latin

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ga.po,7,15,15,15,45,205,562,227,622,ga.po,,ga,,irish,,,ga

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bn_in.po,59,115,113,71,205,97,302,227,622,bn_in.po,,bn,in,bangla,,india,bn_in

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sr@latin.po,255,704,685,0,0,0,0,255,704,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mr.po,59,115,113,71,205,97,302,227,622,mr.po,,mr,,marathi,,,mr

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ta.po,242,678,630,0,0,0,0,242,678,ta.po,,ta,,tamil,,,ta

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,5,9,222,613,227,622,cy.po,,cy,,welsh,,,cy

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/or.po,60,116,117,70,201,97,305,227,622,or.po,,or,,odia,,,or

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nb.po,254,700,682,0,0,0,0,254,700,nb.po,,nb,,norwegian bokmål,,,nb

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/it.po,255,704,751,0,0,0,0,255,704,it.po,,it,,italian,,,it

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,1,4,226,618,227,622,rw.po,,rw,,kinyarwanda,,,rw

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ar.po,143,375,369,48,162,36,85,227,622,ar.po,,ar,,arabic,,,ar

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/az.po,0,0,0,3,7,224,615,227,622,az.po,,az,,azerbaijani,,,az

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bn.po,79,175,183,64,184,84,263,227,622,bn.po,,bn,,bangla,,,bn

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fr.po,255,704,841,0,0,0,0,255,704,fr.po,,fr,,french,,,fr

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ml.po,195,461,415,9,43,38,174,242,678,ml.po,,ml,,malayalam,,,ml

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fi.po,208,531,444,8,42,39,131,255,704,fi.po,,fi,,finnish,,,fi

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pa.po,254,700,759,0,0,0,0,254,700,pa.po,,pa,,punjabi,,,pa

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/pt.po,254,700,787,0,0,0,0,254,700,pt.po,,pt,,portuguese,,,pt

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,5,9,222,613,227,622,mn.po,,mn,,mongolian,,,mn

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nl.po,255,704,669,0,0,0,0,255,704,nl.po,,nl,,dutch,,,nl

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hi.po,242,677,798,0,0,0,0,242,677,hi.po,,hi,,hindi,,,hi

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/hu.po,255,704,617,0,0,0,0,255,704,hu.po,,hu,,hungarian,,,hu

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/be.po,254,700,663,0,0,0,0,254,700,be.po,,be,,belarusian,,,be

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mk.po,6,11,10,48,159,173,452,227,622,mk.po,,mk,,macedonian,,,mk

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fur.po,255,704,789,0,0,0,0,255,704,fur.po,,fur,,friulian,,,fur

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en_gb.po,255,704,706,0,0,0,0,255,704,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/es.po,255,704,873,0,0,0,0,255,704,es.po,,es,,spanish,,,es

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,254,700,329,0,0,0,0,254,700,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/th.po,254,700,327,0,0,0,0,254,700,th.po,,th,,thai,,,th

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,3,7,224,615,227,622,xh.po,,xh,,xhosa,,,xh

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/af.po,72,157,136,66,186,89,279,227,622,af.po,,af,,afrikaans,,,af

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/vi.po,254,700,982,0,0,0,0,254,700,vi.po,,vi,,vietnamese,,,vi

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ja.po,240,669,295,0,0,2,2,242,671,ja.po,,ja,,japanese,,,ja

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ro.po,255,704,793,0,0,0,0,255,704,ro.po,,ro,,romanian,,,ro

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/tg.po,62,77,88,1,4,179,596,242,677,tg.po,,tg,,tajik,,,tg

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/bs.po,254,700,676,0,0,0,0,254,700,bs.po,,bs,,bosnian,,,bs

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/en@shaw.po,52,99,99,81,229,94,294,227,622,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/nn.po,76,161,142,66,199,85,262,227,622,nn.po,,nn,,norwegian nynorsk,,,nn

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/eo.po,177,431,400,11,41,66,228,254,700,eo.po,,eo,,esperanto,,,eo

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/kk.po,95,189,175,0,0,159,511,254,700,kk.po,,kk,,kazakh,,,kk

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ko.po,254,700,648,0,0,0,0,254,700,ko.po,,ko,,korean,,,ko

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/as.po,254,700,719,0,0,0,0,254,700,as.po,,as,,assamese,,,as

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/et.po,79,178,160,61,176,87,268,227,622,et.po,,et,,estonian,,,et

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/fa.po,254,700,779,0,0,0,0,254,700,fa.po,,fa,,persian,,,fa

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,227,622,227,622,is.po,,is,,icelandic,,,is

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,2,3,225,619,227,622,ka.po,,ka,,georgian,,,ka

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/gu.po,76,157,172,64,197,87,268,227,622,gu.po,,gu,,gujarati,,,gu

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,5,9,222,613,227,622,mg.po,,mg,,malagasy,,,mg

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/el.po,255,704,738,0,0,0,0,255,704,el.po,,el,,greek,,,el

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/eu.po,254,700,642,0,0,0,0,254,700,eu.po,,eu,,basque,,,eu

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ug.po,242,677,643,0,0,0,0,242,677,ug.po,,ug,,uyghur,,,ug

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/mai.po,25,33,33,22,38,180,551,227,622,mai.po,,mai,,maithili,,,mai

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/ms.po,54,106,100,66,172,107,344,227,622,ms.po,,ms,,malay,,,ms

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/dz.po,1,1,1,21,67,205,554,227,622,dz.po,,dz,,dzongkha,,,dz

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sv.po,255,704,608,0,0,0,0,255,704,sv.po,,sv,,swedish,,,sv

+ gcr-3.28.1-3.fc30.src.rpm.stats.csv,po/sr.po,255,704,685,0,0,0,0,255,704,sr.po,,sr,,serbian,,,sr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/uk.po,1692,11391,12006,0,0,0,0,1692,11391,uk.po,,uk,,ukrainian,,,uk

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ja.po,1013,6811,4307,0,0,286,1419,1299,8230,ja.po,,ja,,japanese,,,ja

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/sr.po,1398,9119,9435,0,0,0,0,1398,9119,sr.po,,sr,,serbian,,,sr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/fr.po,1692,11391,13903,0,0,0,0,1692,11391,fr.po,,fr,,french,,,fr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ro.po,592,4098,4407,0,0,0,0,592,4098,ro.po,,ro,,romanian,,,ro

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/id.po,1312,8369,8501,0,0,0,0,1312,8369,id.po,,id,,indonesian,,,id

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/da.po,1398,9119,8504,0,0,0,0,1398,9119,da.po,,da,,danish,,,da

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/fi.po,1398,9119,7687,0,0,0,0,1398,9119,fi.po,,fi,,finnish,,,fi

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/pt.po,1692,11391,12183,0,0,0,0,1692,11391,pt.po,,pt,,portuguese,,,pt

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/tr.po,592,4098,3794,0,0,0,0,592,4098,tr.po,,tr,,turkish,,,tr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/sv.po,1398,9119,8364,0,0,0,0,1398,9119,sv.po,,sv,,swedish,,,sv

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/hr.po,79,195,199,0,0,1233,8174,1312,8369,hr.po,,hr,,croatian,,,hr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/es.po,1771,11953,13950,0,0,0,0,1771,11953,es.po,,es,,spanish,,,es

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/rw.po,1,2,2,508,3879,83,217,592,4098,rw.po,,rw,,kinyarwanda,,,rw

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/zh_cn.po,214,935,437,521,2842,663,5342,1398,9119,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/ru.po,1692,11391,11334,0,0,0,0,1692,11391,ru.po,,ru,,russian,,,ru

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,bfd/po/vi.po,1312,8369,12106,0,0,0,0,1312,8369,vi.po,,vi,,vietnamese,,,vi

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/uk.po,453,2685,2795,0,0,0,0,453,2685,uk.po,,uk,,ukrainian,,,uk

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/it.po,234,1371,1595,0,0,0,0,234,1371,it.po,,it,,italian,,,it

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/ga.po,287,1602,1830,0,0,0,0,287,1602,ga.po,,ga,,irish,,,ga

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/de.po,453,2685,2640,0,0,0,0,453,2685,de.po,,de,,german,,,de

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/sr.po,287,1602,1611,0,0,0,0,287,1602,sr.po,,sr,,serbian,,,sr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/fr.po,362,2108,2378,0,0,0,0,362,2108,fr.po,,fr,,french,,,fr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/ro.po,148,863,909,0,0,0,0,148,863,ro.po,,ro,,romanian,,,ro

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/id.po,292,1632,1687,0,0,0,0,292,1632,id.po,,id,,indonesian,,,id

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/nl.po,234,1371,1419,0,0,0,0,234,1371,nl.po,,nl,,dutch,,,nl

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/da.po,179,968,946,0,0,55,403,234,1371,da.po,,da,,danish,,,da

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/fi.po,287,1602,1393,0,0,0,0,287,1602,fi.po,,fi,,finnish,,,fi

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/tr.po,148,863,783,0,0,0,0,148,863,tr.po,,tr,,turkish,,,tr

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/sv.po,453,2685,2485,0,0,0,0,453,2685,sv.po,,sv,,swedish,,,sv

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/es.po,370,2145,2527,0,0,0,0,370,2145,es.po,,es,,spanish,,,es

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/zh_cn.po,219,1192,525,108,650,43,303,370,2145,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/pt_br.po,453,2685,3051,0,0,0,0,453,2685,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gdb-8.2.91.20190401-23.fc30.src.rpm.stats.csv,opcodes/po/vi.po,292,1632,2494,0,0,0,0,292,1632,vi.po,,vi,,vietnamese,,,vi

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/da.po,205,739,686,4,19,14,55,223,813,da.po,,da,,danish,,,da

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/ja.po,78,246,143,53,224,92,343,223,813,ja.po,,ja,,japanese,,,ja

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/fr.po,205,739,982,4,19,14,55,223,813,fr.po,,fr,,french,,,fr

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/pt_br.po,220,800,1003,1,7,2,6,223,813,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/fi.po,165,582,512,30,134,28,97,223,813,fi.po,,fi,,finnish,,,fi

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/uk.po,220,800,903,1,7,2,6,223,813,uk.po,,uk,,ukrainian,,,uk

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/sv.po,205,739,747,4,19,14,55,223,813,sv.po,,sv,,swedish,,,sv

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/de.po,165,582,585,30,134,28,97,223,813,de.po,,de,,german,,,de

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/vi.po,220,800,1292,1,7,2,6,223,813,vi.po,,vi,,vietnamese,,,vi

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/eo.po,205,739,749,4,19,14,55,223,813,eo.po,,eo,,esperanto,,,eo

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/pl.po,220,800,861,1,7,2,6,223,813,pl.po,,pl,,polish,,,pl

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/sr.po,205,739,810,4,19,14,55,223,813,sr.po,,sr,,serbian,,,sr

+ gdbm-1.18-4.fc30.src.rpm.stats.csv,po/es.po,205,739,813,4,19,14,55,223,813,es.po,,es,,spanish,,,es

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,212,1415,488,0,0,0,0,212,1415,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,203,1360,484,0,0,0,0,203,1360,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,208,1393,482,0,0,0,0,208,1393,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/yi.po,118,792,751,73,466,11,90,202,1348,yi.po,,yi,,yiddish,,,yi

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/xh.po,151,987,880,45,294,6,67,202,1348,xh.po,,xh,,xhosa,,,xh

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/wa.po,134,910,1377,32,181,36,257,202,1348,wa.po,,wa,,walloon,,,wa

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/vi.po,202,1351,1831,0,0,0,0,202,1351,vi.po,,vi,,vietnamese,,,vi

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,28,158,137,6,30,168,1160,202,1348,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uz.po,28,158,137,6,30,168,1160,202,1348,uz.po,,uz,,uzbek,,,uz

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/uk.po,203,1360,1432,0,0,0,0,203,1360,uk.po,,uk,,ukrainian,,,uk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ug.po,202,1354,1107,0,0,0,0,202,1354,ug.po,,ug,,uyghur,,,ug

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tt.po,67,388,269,25,118,110,842,202,1348,tt.po,,tt,,tatar,,,tt

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tr.po,212,1415,1157,0,0,0,0,212,1415,tr.po,,tr,,turkish,,,tr

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tk.po,18,92,81,26,119,158,1137,202,1348,tk.po,,tk,,turkmen,,,tk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/th.po,203,1360,553,0,0,0,0,203,1360,th.po,,th,,thai,,,th

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/tg.po,2,9,12,0,0,200,1345,202,1354,tg.po,,tg,,tajik,,,tg

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/te.po,202,1354,1098,0,0,0,0,202,1354,te.po,,te,,telugu,,,te

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ta.po,197,1288,1079,5,60,0,0,202,1348,ta.po,,ta,,tamil,,,ta

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sv.po,212,1415,1355,0,0,0,0,212,1415,sv.po,,sv,,swedish,,,sv

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,211,1409,1518,0,0,0,0,211,1409,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr@ije.po,137,915,884,59,376,6,57,202,1348,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sr.po,212,1415,1527,0,0,0,0,212,1415,sr.po,,sr,,serbian,,,sr

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sq.po,185,1208,1474,12,89,5,51,202,1348,sq.po,,sq,,albanian,,,sq

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sl.po,212,1415,1486,0,0,0,0,212,1415,sl.po,,sl,,slovenian,,,sl

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/sk.po,212,1415,1417,0,0,0,0,212,1415,sk.po,,sk,,slovak,,,sk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/si.po,151,995,995,35,204,16,149,202,1348,si.po,,si,,sinhala,,,si

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ru.po,208,1393,1505,0,0,0,0,208,1393,ru.po,,ru,,russian,,,ru

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ro.po,212,1415,1671,0,0,0,0,212,1415,ro.po,,ro,,romanian,,,ro

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,212,1415,1765,0,0,0,0,212,1415,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pt.po,207,1382,1537,0,0,0,0,207,1382,pt.po,,pt,,portuguese,,,pt

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ps.po,25,120,137,4,19,173,1209,202,1348,ps.po,,ps,,pashto,,,ps

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pl.po,212,1415,1491,0,0,0,0,212,1415,pl.po,,pl,,polish,,,pl

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/pa.po,203,1360,1608,0,0,0,0,203,1360,pa.po,,pa,,punjabi,,,pa

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/or.po,201,1345,1293,0,0,0,0,201,1345,or.po,,or,,odia,,,or

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/oc.po,211,1409,1808,0,0,0,0,211,1409,oc.po,,oc,,occitan,,,oc

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nso.po,137,915,1487,59,376,6,57,202,1348,nso.po,,nso,,northern sotho,,,nso

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nn.po,185,1208,1176,12,89,5,51,202,1348,nn.po,,nn,,norwegian nynorsk,,,nn

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nl.po,212,1415,1357,0,0,0,0,212,1415,nl.po,,nl,,dutch,,,nl

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ne.po,158,1061,1021,39,236,5,51,202,1348,ne.po,,ne,,nepali,,,ne

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nds.po,49,257,283,1,3,152,1088,202,1348,nds.po,,nds,,low german,,,nds

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/nb.po,211,1409,1351,0,0,0,0,211,1409,nb.po,,nb,,norwegian bokmål,,,nb

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/my.po,184,1192,942,12,89,6,67,202,1348,my.po,,my,,burmese,,,my

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ms.po,132,870,827,56,355,14,123,202,1348,ms.po,,ms,,malay,,,ms

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mr.po,197,1288,1322,5,60,0,0,202,1348,mr.po,,mr,,marathi,,,mr

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mn.po,137,915,859,59,376,6,57,202,1348,mn.po,,mn,,mongolian,,,mn

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ml.po,202,1354,1111,0,0,0,0,202,1354,ml.po,,ml,,malayalam,,,ml

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mk.po,163,1102,1311,34,195,5,51,202,1348,mk.po,,mk,,macedonian,,,mk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mi.po,118,741,839,58,359,26,248,202,1348,mi.po,,mi,,maori,,,mi

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/mai.po,184,1192,1283,12,89,6,67,202,1348,mai.po,,mai,,maithili,,,mai

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/lv.po,212,1415,1262,0,0,0,0,212,1415,lv.po,,lv,,latvian,,,lv

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/lt.po,212,1415,1239,0,0,0,0,212,1415,lt.po,,lt,,lithuanian,,,lt

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/li.po,118,792,749,73,466,11,90,202,1348,li.po,,li,,limburgish,,,li

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ku.po,177,1171,1263,20,126,5,51,202,1348,ku.po,,ku,,kurdish,,,ku

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ko.po,212,1415,1217,0,0,0,0,212,1415,ko.po,,ko,,korean,,,ko

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/kn.po,186,1213,1047,11,84,5,51,202,1348,kn.po,,kn,,kannada,,,kn

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/km.po,192,1245,598,4,27,4,66,200,1338,km.po,,km,,khmer,,,km

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/kk.po,61,267,257,0,0,151,1148,212,1415,kk.po,,kk,,kazakh,,,kk

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ka.po,185,1208,995,12,89,5,51,202,1348,ka.po,,ka,,georgian,,,ka

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ja.po,202,1354,518,0,0,0,0,202,1354,ja.po,,ja,,japanese,,,ja

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/it.po,212,1415,1608,0,0,0,0,212,1415,it.po,,it,,italian,,,it

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/is.po,212,1415,1376,0,0,0,0,212,1415,is.po,,is,,icelandic,,,is

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/io.po,57,299,276,25,117,120,932,202,1348,io.po,,io,,ido,,,io

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/id.po,212,1415,1401,0,0,0,0,212,1415,id.po,,id,,indonesian,,,id

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ia.po,6,49,42,29,173,167,1126,202,1348,ia.po,,ia,,interlingua,,,ia

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hy.po,194,1250,1187,8,98,0,0,202,1348,hy.po,,hy,,armenian,,,hy

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hu.po,212,1415,1300,0,0,0,0,212,1415,hu.po,,hu,,hungarian,,,hu

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hr.po,212,1415,1351,0,0,0,0,212,1415,hr.po,,hr,,croatian,,,hr

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/hi.po,202,1354,1605,0,0,0,0,202,1354,hi.po,,hi,,hindi,,,hi

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/he.po,211,1409,1349,0,0,0,0,211,1409,he.po,,he,,hebrew,,,he

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/gu.po,184,1192,1226,12,89,6,67,202,1348,gu.po,,gu,,gujarati,,,gu

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/gl.po,212,1415,1920,0,0,0,0,212,1415,gl.po,,gl,,galician,,,gl

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ga.po,172,1060,1278,5,50,25,238,202,1348,ga.po,,ga,,irish,,,ga

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fur.po,212,1415,1851,0,0,0,0,212,1415,fur.po,,fur,,friulian,,,fur

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fr.po,212,1415,1797,0,0,0,0,212,1415,fr.po,,fr,,french,,,fr

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fi.po,148,872,665,42,420,21,117,211,1409,fi.po,,fi,,finnish,,,fi

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/fa.po,150,991,1035,45,294,7,63,202,1348,fa.po,,fa,,persian,,,fa

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/eu.po,212,1415,1358,0,0,0,0,212,1415,eu.po,,eu,,basque,,,eu

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/et.po,203,1360,1095,0,0,0,0,203,1360,et.po,,et,,estonian,,,et

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/es.po,212,1415,1924,0,0,0,0,212,1415,es.po,,es,,spanish,,,es

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/eo.po,163,1201,1057,4,41,41,151,208,1393,eo.po,,eo,,esperanto,,,eo

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,211,1409,1409,0,0,0,0,211,1409,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,175,1166,1168,22,131,5,51,202,1348,en_ca.po,,en,ca,english,,canada,en_ca

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,174,1158,1158,28,190,0,0,202,1348,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/el.po,212,1415,1660,0,0,0,0,212,1415,el.po,,el,,greek,,,el

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/dz.po,162,1095,573,35,202,5,51,202,1348,dz.po,,dz,,dzongkha,,,dz

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/de.po,212,1415,1398,0,0,0,0,212,1415,de.po,,de,,german,,,de

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/da.po,212,1415,1314,0,0,0,0,212,1415,da.po,,da,,danish,,,da

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/cy.po,175,1162,1357,22,135,5,51,202,1348,cy.po,,cy,,welsh,,,cy

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/csb.po,66,481,474,4,43,131,821,201,1345,csb.po,,csb,,kashubian,,,csb

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/cs.po,212,1415,1450,0,0,0,0,212,1415,cs.po,,cs,,czech,,,cs

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/crh.po,202,1354,1118,0,0,0,0,202,1354,crh.po,,crh,,crimean turkish,,,crh

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,211,1409,1916,0,0,0,0,211,1409,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ca.po,211,1409,1917,0,0,0,0,211,1409,ca.po,,ca,,catalan,,,ca

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bs.po,228,1478,1532,0,0,0,0,228,1478,bs.po,,bs,,bosnian,,,bs

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/br.po,53,264,326,7,39,142,1045,202,1348,br.po,,br,,breton,,,br

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,197,1288,1310,5,60,0,0,202,1348,bn_in.po,,bn,in,bangla,,india,bn_in

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bn.po,195,1266,1254,7,82,0,0,202,1348,bn.po,,bn,,bangla,,,bn

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/bg.po,205,1372,1774,0,0,0,0,205,1372,bg.po,,bg,,bulgarian,,,bg

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,185,1208,1205,12,89,5,51,202,1348,be@latin.po,latin,be,,belarusian,,,be@latin

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/be.po,211,1409,1436,0,0,0,0,211,1409,be.po,,be,,belarusian,,,be

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/az.po,137,915,795,59,376,6,57,202,1348,az.po,,az,,azerbaijani,,,az

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ast.po,197,1288,1581,5,60,0,0,202,1348,ast.po,,ast,,asturian,,,ast

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/as.po,203,1360,1264,0,0,0,0,203,1360,as.po,,as,,assamese,,,as

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ar.po,195,1266,1236,7,82,0,0,202,1348,ar.po,,ar,,arabic,,,ar

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/ang.po,42,223,183,32,163,128,962,202,1348,ang.po,,ang,,old english,,,ang

+ gdk-pixbuf2-2.38.1-1.fc30.src.rpm.stats.csv,po/af.po,183,1180,1152,8,72,11,96,202,1348,af.po,,af,,afrikaans,,,af

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/id/id.po,355,9360,8302,0,0,0,0,355,9360,id.po,,id,,indonesian,,,id

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/pt_br/pt_br.po,35,114,137,3,30,316,9161,354,9305,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/de/de.po,355,9360,8559,0,0,0,0,355,9360,de.po,,de,,german,,,de

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/sl/sl.po,39,51,51,0,0,329,9133,368,9184,sl.po,,sl,,slovenian,,,sl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/gl/gl.po,287,6022,6295,0,0,68,3338,355,9360,gl.po,,gl,,galician,,,gl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ca/ca.po,354,9346,9902,1,14,0,0,355,9360,ca.po,,ca,,catalan,,,ca

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/el/el.po,355,9360,9757,0,0,0,0,355,9360,el.po,,el,,greek,,,el

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/oc/oc.po,5,5,5,0,0,1229,30404,1234,30409,oc.po,,oc,,occitan,,,oc

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/es/es.po,355,9360,10345,0,0,0,0,355,9360,es.po,,es,,spanish,,,es

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/sv/sv.po,355,9360,8129,0,0,0,0,355,9360,sv.po,,sv,,swedish,,,sv

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/uk/uk.po,863,14012,11584,127,4651,95,5569,1085,24232,uk.po,,uk,,ukrainian,,,uk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/tr/tr.po,41,156,151,0,0,314,9204,355,9360,tr.po,,tr,,turkish,,,tr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/cs/cs.po,355,9360,8300,0,0,0,0,355,9360,cs.po,,cs,,czech,,,cs

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/zh_cn/zh_cn.po,355,9360,1812,0,0,0,0,355,9360,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/it/it.po,68,1304,1351,0,0,248,6350,316,7654,it.po,,it,,italian,,,it

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ko/ko.po,411,502,503,11,24,788,28731,1210,29257,ko.po,,ko,,korean,,,ko

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/en_gb/en_gb.po,333,7968,7974,0,0,0,0,333,7968,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/fr/fr.po,355,9360,10190,0,0,0,0,355,9360,fr.po,,fr,,french,,,fr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ru/ru.po,293,6757,5318,17,946,44,1595,354,9298,ru.po,,ru,,russian,,,ru

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/te/te.po,22,52,52,0,0,348,9227,370,9279,te.po,,te,,telugu,,,te

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/ro/ro.po,355,9360,9532,0,0,0,0,355,9360,ro.po,,ro,,romanian,,,ro

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,docs/hu/hu.po,30,645,504,0,0,325,8715,355,9360,hu.po,,hu,,hungarian,,,hu

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en_gb.po,84,622,622,0,0,0,0,84,622,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/da.po,88,629,558,0,0,0,0,88,629,da.po,,da,,danish,,,da

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zu.po,7,21,22,35,224,45,405,87,650,zu.po,,zu,,zulu,,,zu

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/he.po,84,622,607,0,0,0,0,84,622,he.po,,he,,hebrew,,,he

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ko.po,88,629,478,0,0,0,0,88,629,ko.po,,ko,,korean,,,ko

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mai.po,42,205,220,19,145,26,300,87,650,mai.po,,mai,,maithili,,,mai

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kn.po,78,566,445,3,15,6,69,87,650,kn.po,,kn,,kannada,,,kn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fa.po,85,626,734,0,0,0,0,85,626,fa.po,,fa,,persian,,,fa

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/be@latin.po,38,171,170,21,129,28,350,87,650,be@latin.po,latin,be,,belarusian,,,be@latin

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ga.po,40,173,218,5,26,42,451,87,650,ga.po,,ga,,irish,,,ga

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kab.po,87,650,752,0,0,0,0,87,650,kab.po,,kab,,kabyle,,,kab

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uk.po,84,622,524,0,0,0,0,84,622,uk.po,,uk,,ukrainian,,,uk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/tg.po,87,650,659,0,0,0,0,87,650,tg.po,,tg,,tajik,,,tg

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bn.po,49,258,280,12,57,26,335,87,650,bn.po,,bn,,bangla,,,bn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/it.po,88,629,702,0,0,0,0,88,629,it.po,,it,,italian,,,it

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/km.po,80,578,216,3,15,4,57,87,650,km.po,,km,,khmer,,,km

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bg.po,85,626,694,0,0,0,0,85,626,bg.po,,bg,,bulgarian,,,bg

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fr.po,88,629,744,0,0,0,0,88,629,fr.po,,fr,,french,,,fr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bs.po,87,650,629,0,0,0,0,87,650,bs.po,,bs,,bosnian,,,bs

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ku.po,31,121,122,16,97,40,432,87,650,ku.po,,ku,,kurdish,,,ku

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/eo.po,88,629,580,0,0,0,0,88,629,eo.po,,eo,,esperanto,,,eo

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/el.po,88,629,684,0,0,0,0,88,629,el.po,,el,,greek,,,el

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gd.po,88,629,851,0,0,0,0,88,629,gd.po,,gd,,scottish gaelic,,,gd

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sv.po,88,629,567,0,0,0,0,88,629,sv.po,,sv,,swedish,,,sv

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fy.po,22,93,80,11,52,54,505,87,650,fy.po,,fy,,western frisian,,,fy

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/xh.po,7,21,26,35,224,45,405,87,650,xh.po,,xh,,xhosa,,,xh

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nso.po,7,21,37,35,224,45,405,87,650,nso.po,,nso,,northern sotho,,,nso

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mg.po,34,159,174,19,142,34,349,87,650,mg.po,,mg,,malagasy,,,mg

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ms.po,81,619,574,4,19,2,12,87,650,ms.po,,ms,,malay,,,ms

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/csb.po,25,112,117,10,46,52,492,87,650,csb.po,,csb,,kashubian,,,csb

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,45,228,184,4,19,38,403,87,650,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gl.po,88,629,817,0,0,0,0,88,629,gl.po,,gl,,galician,,,gl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hi.po,80,578,697,3,15,4,57,87,650,hi.po,,hi,,hindi,,,hi

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/si.po,20,116,110,21,143,46,391,87,650,si.po,,si,,sinhala,,,si

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ta.po,81,619,488,3,15,3,16,87,650,ta.po,,ta,,tamil,,,ta

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hu.po,88,629,555,0,0,0,0,88,629,hu.po,,hu,,hungarian,,,hu

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/eu.po,88,629,557,0,0,0,0,88,629,eu.po,,eu,,basque,,,eu

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mr.po,81,619,533,3,15,3,16,87,650,mr.po,,mr,,marathi,,,mr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/lt.po,88,629,512,0,0,0,0,88,629,lt.po,,lt,,lithuanian,,,lt

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/af.po,88,629,627,0,0,0,0,88,629,af.po,,af,,afrikaans,,,af

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sr.po,88,629,656,0,0,0,0,88,629,sr.po,,sr,,serbian,,,sr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/es.po,88,629,811,0,0,0,0,88,629,es.po,,es,,spanish,,,es

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ky.po,67,524,422,7,41,13,85,87,650,ky.po,,ky,,kyrgyz,,,ky

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/uz.po,8,17,15,4,21,75,612,87,650,uz.po,,uz,,uzbek,,,uz

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sk.po,88,629,609,0,0,0,0,88,629,sk.po,,sk,,slovak,,,sk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/be.po,88,629,577,0,0,0,0,88,629,be.po,,be,,belarusian,,,be

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/id.po,88,629,592,0,0,0,0,88,629,id.po,,id,,indonesian,,,id

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sq.po,37,175,207,23,176,27,299,87,650,sq.po,,sq,,albanian,,,sq

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/is.po,88,629,636,0,0,0,0,88,629,is.po,,is,,icelandic,,,is

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en@shaw.po,28,119,119,33,196,26,335,87,650,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ro.po,88,629,667,0,0,0,0,88,629,ro.po,,ro,,romanian,,,ro

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/rw.po,1,1,2,39,239,47,410,87,650,rw.po,,rw,,kinyarwanda,,,rw

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ne.po,85,626,520,0,0,0,0,85,626,ne.po,,ne,,nepali,,,ne

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/crh.po,73,514,437,5,64,9,72,87,650,crh.po,,crh,,crimean turkish,,,crh

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/de.po,88,629,617,0,0,0,0,88,629,de.po,,de,,german,,,de

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/tr.po,88,629,549,0,0,0,0,88,629,tr.po,,tr,,turkish,,,tr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sl.po,88,629,612,0,0,0,0,88,629,sl.po,,sl,,slovenian,,,sl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nl.po,88,629,571,0,0,0,0,88,629,nl.po,,nl,,dutch,,,nl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/az.po,7,21,27,35,224,45,405,87,650,az.po,,az,,azerbaijani,,,az

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_hk.po,87,650,161,0,0,0,0,87,650,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hr.po,88,629,577,0,0,0,0,88,629,hr.po,,hr,,croatian,,,hr

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/th.po,87,650,197,0,0,0,0,87,650,th.po,,th,,thai,,,th

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/br.po,44,218,269,17,97,26,335,87,650,br.po,,br,,breton,,,br

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/et.po,88,629,505,0,0,0,0,88,629,et.po,,et,,estonian,,,et

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mn.po,7,21,21,35,224,45,405,87,650,mn.po,,mn,,mongolian,,,mn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/wa.po,3,8,17,16,74,68,568,87,650,wa.po,,wa,,walloon,,,wa

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ug.po,75,558,454,4,23,8,69,87,650,ug.po,,ug,,uyghur,,,ug

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/vi.po,88,629,879,0,0,0,0,88,629,vi.po,,vi,,vietnamese,,,vi

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/sr@latin.po,88,629,656,0,0,0,0,88,629,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/an.po,87,650,790,0,0,0,0,87,650,an.po,,an,,aragonese,,,an

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/kk.po,88,629,539,0,0,0,0,88,629,kk.po,,kk,,kazakh,,,kk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,88,629,788,0,0,0,0,88,629,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,88,629,157,0,0,0,0,88,629,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/oc.po,88,629,734,0,0,0,0,88,629,oc.po,,oc,,occitan,,,oc

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gv.po,41,206,246,16,91,30,353,87,650,gv.po,,gv,,manx,,,gv

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/cy.po,8,30,33,33,217,46,403,87,650,cy.po,,cy,,welsh,,,cy

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pt.po,84,622,711,0,0,0,0,84,622,pt.po,,pt,,portuguese,,,pt

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nb.po,85,626,577,0,0,0,0,85,626,nb.po,,nb,,norwegian bokmål,,,nb

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/bn_in.po,80,578,602,3,15,4,57,87,650,bn_in.po,,bn,in,bangla,,india,bn_in

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ml.po,88,629,480,0,0,0,0,88,629,ml.po,,ml,,malayalam,,,ml

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,1,2,86,648,87,650,mi.po,,mi,,maori,,,mi

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nds.po,24,87,87,6,26,57,537,87,650,nds.po,,nds,,low german,,,nds

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ja.po,87,626,171,0,0,1,3,88,629,ja.po,,ja,,japanese,,,ja

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ar.po,87,620,531,1,9,0,0,88,629,ar.po,,ar,,arabic,,,ar

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/gu.po,84,622,636,0,0,0,0,84,622,gu.po,,gu,,gujarati,,,gu

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fur.po,88,629,764,0,0,0,0,88,629,fur.po,,fur,,friulian,,,fur

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/lv.po,88,629,527,0,0,0,0,88,629,lv.po,,lv,,latvian,,,lv

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/hy.po,1,1,1,9,40,77,609,87,650,hy.po,,hy,,armenian,,,hy

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ka.po,4,6,7,38,212,45,432,87,650,ka.po,,ka,,georgian,,,ka

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,85,626,799,0,0,0,0,85,626,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/cs.po,88,629,557,0,0,0,0,88,629,cs.po,,cs,,czech,,,cs

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/en_ca.po,8,30,31,33,217,46,403,87,650,en_ca.po,,en,ca,english,,canada,en_ca

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ast.po,57,352,403,13,89,17,209,87,650,ast.po,,ast,,asturian,,,ast

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/mk.po,60,422,490,14,95,13,133,87,650,mk.po,,mk,,macedonian,,,mk

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/fi.po,88,629,441,0,0,0,0,88,629,fi.po,,fi,,finnish,,,fi

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pl.po,88,629,585,0,0,0,0,88,629,pl.po,,pl,,polish,,,pl

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ca.po,88,629,802,0,0,0,0,88,629,ca.po,,ca,,catalan,,,ca

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/pa.po,88,629,722,0,0,0,0,88,629,pa.po,,pa,,punjabi,,,pa

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/dz.po,12,50,22,37,236,38,364,87,650,dz.po,,dz,,dzongkha,,,dz

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/te.po,81,619,487,3,15,3,16,87,650,te.po,,te,,telugu,,,te

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/as.po,81,619,593,3,15,3,16,87,650,as.po,,as,,assamese,,,as

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/or.po,81,619,585,3,15,3,16,87,650,or.po,,or,,odia,,,or

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/nn.po,50,299,265,17,85,20,266,87,650,nn.po,,nn,,norwegian nynorsk,,,nn

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ru.po,88,629,574,0,0,0,0,88,629,ru.po,,ru,,russian,,,ru

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,88,629,160,0,0,0,0,88,629,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/ps.po,27,109,124,12,76,48,465,87,650,ps.po,,ps,,pashto,,,ps

+ gdm-3.32.0-3.fc30.src.rpm.stats.csv,po/am.po,2,2,3,5,9,80,639,87,650,am.po,,am,,amharic,,,am

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,433,5312,1030,0,0,0,0,433,5312,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,436,5390,1035,0,0,0,0,436,5390,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,581,6612,1204,0,0,0,0,581,6612,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,552,6577,5320,0,0,0,0,552,6577,uk.po,,uk,,ukrainian,,,uk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/th/th.po,219,2555,778,0,0,456,5022,675,7577,th.po,,th,,thai,,,th

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,15,29,30,0,0,580,7436,595,7465,te.po,,te,,telugu,,,te

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,580,6562,6086,0,0,0,0,580,6562,sv.po,,sv,,swedish,,,sv

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,600,7570,6316,0,0,0,0,600,7570,sl.po,,sl,,slovenian,,,sl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,580,6559,5328,0,0,0,0,580,6559,ru.po,,ru,,russian,,,ru

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,580,6559,6440,0,0,0,0,580,6559,ro.po,,ro,,romanian,,,ro

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,580,6559,6907,0,0,0,0,580,6559,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,580,6562,5098,0,0,0,0,580,6562,pl.po,,pl,,polish,,,pl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,96,141,165,0,0,592,7615,688,7756,oc.po,,oc,,occitan,,,oc

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/lv/lv.po,581,6603,5046,0,0,0,0,581,6603,lv.po,,lv,,latvian,,,lv

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,692,7740,5726,0,0,0,0,692,7740,ko.po,,ko,,korean,,,ko

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,71,316,168,164,1181,366,6089,601,7586,ja.po,,ja,,japanese,,,ja

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,675,7613,7707,0,0,0,0,675,7613,it.po,,it,,italian,,,it

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,581,6603,5951,0,0,0,0,581,6603,id.po,,id,,indonesian,,,id

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,580,6562,5469,0,0,0,0,580,6562,hu.po,,hu,,hungarian,,,hu

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,580,6559,6456,0,0,0,0,580,6559,gl.po,,gl,,galician,,,gl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,580,6559,7117,0,0,0,0,580,6559,fr.po,,fr,,french,,,fr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,211,2280,1403,133,1567,208,2730,552,6577,fi.po,,fi,,finnish,,,fi

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,675,7577,5738,0,0,0,0,675,7577,eu.po,,eu,,basque,,,eu

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,580,6559,6779,0,0,0,0,580,6559,es.po,,es,,spanish,,,es

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,581,6612,6702,0,0,0,0,581,6612,el.po,,el,,greek,,,el

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,580,6559,6298,0,0,0,0,580,6559,de.po,,de,,german,,,de

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,670,7555,7171,0,0,0,0,670,7555,da.po,,da,,danish,,,da

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,580,6559,5867,0,0,0,0,580,6559,cs.po,,cs,,czech,,,cs

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,671,7557,8440,3,13,1,7,675,7577,ca.po,,ca,,catalan,,,ca

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,595,7465,6650,0,0,0,0,595,7465,bg.po,,bg,,bulgarian,,,bg

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,help/ar/ar.po,513,4492,3525,3,62,153,2637,669,7191,ar.po,,ar,,arabic,,,ar

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,727,4279,979,0,0,0,0,727,4279,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,682,4080,930,0,0,0,0,682,4080,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,721,4267,1051,0,0,0,0,721,4267,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,999,4120,3612,17,73,3,12,1019,4205,xh.po,,xh,,xhosa,,,xh

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,501,2030,2528,128,511,391,1665,1020,4206,wa.po,,wa,,walloon,,,wa

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,726,4278,5307,0,0,0,0,726,4278,vi.po,,vi,,vietnamese,,,vi

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,722,4266,3754,0,0,0,0,722,4266,uk.po,,uk,,ukrainian,,,uk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,754,4362,3285,0,0,0,0,754,4362,ug.po,,ug,,uyghur,,,ug

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,727,4279,3412,0,0,0,0,727,4279,tr.po,,tr,,turkish,,,tr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,526,2502,2118,179,906,315,798,1020,4206,tk.po,,tk,,turkmen,,,tk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,722,4266,1225,0,0,0,0,722,4266,th.po,,th,,thai,,,th

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,150,214,257,1,1,603,4147,754,4362,tg.po,,tg,,tajik,,,tg

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,683,4083,3336,0,0,0,0,683,4083,te.po,,te,,telugu,,,te

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,684,4084,3444,0,0,0,0,684,4084,ta.po,,ta,,tamil,,,ta

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,727,4279,4044,0,0,0,0,727,4279,sv.po,,sv,,swedish,,,sv

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,721,4267,4427,0,0,0,0,721,4267,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,726,4278,4434,0,0,0,0,726,4278,sr.po,,sr,,serbian,,,sr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,1093,4942,5720,0,0,0,0,1093,4942,sq.po,,sq,,albanian,,,sq

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,727,4279,4169,0,0,0,0,727,4279,sl.po,,sl,,slovenian,,,sl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,721,4267,4036,0,0,0,0,721,4267,sk.po,,sk,,slovak,,,sk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,659,1941,2161,0,0,443,3122,1102,5063,si.po,,si,,sinhala,,,si

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,202,244,252,648,3615,170,347,1020,4206,rw.po,,rw,,kinyarwanda,,,rw

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,726,4278,3713,0,0,0,0,726,4278,ru.po,,ru,,russian,,,ru

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,727,4279,4696,0,0,0,0,727,4279,ro.po,,ro,,romanian,,,ro

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,726,4278,4795,0,0,0,0,726,4278,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,722,4266,4599,0,0,0,0,722,4266,pt.po,,pt,,portuguese,,,pt

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,622,1929,2072,0,0,475,3081,1097,5010,ps.po,,ps,,pashto,,,ps

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,727,4279,4056,0,0,0,0,727,4279,pl.po,,pl,,polish,,,pl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,720,4220,4558,0,0,0,0,720,4220,pa.po,,pa,,punjabi,,,pa

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,684,4084,4096,0,0,0,0,684,4084,or.po,,or,,odia,,,or

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,721,4267,4839,0,0,0,0,721,4267,oc.po,,oc,,occitan,,,oc

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,655,3549,3368,1,1,92,799,748,4349,nn.po,,nn,,norwegian nynorsk,,,nn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,726,4278,4222,0,0,0,0,726,4278,nl.po,,nl,,dutch,,,nl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,477,2356,2329,219,1497,26,413,722,4266,ne.po,,ne,,nepali,,,ne

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,239,438,408,0,0,861,4515,1100,4953,nds.po,,nds,,low german,,,nds

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,721,4271,4034,0,0,0,0,721,4271,nb.po,,nb,,norwegian bokmål,,,nb

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,475,1513,1137,0,0,633,3491,1108,5004,my.po,,my,,burmese,,,my

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,541,2390,2105,176,884,303,932,1020,4206,ms.po,,ms,,malay,,,ms

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,683,4083,3807,0,0,0,0,683,4083,mr.po,,mr,,marathi,,,mr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,507,2180,1901,211,1293,301,732,1019,4205,mn.po,,mn,,mongolian,,,mn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,721,4271,3425,0,0,0,0,721,4271,ml.po,,ml,,malayalam,,,ml

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,739,4316,4378,0,0,0,0,739,4316,mk.po,,mk,,macedonian,,,mk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,54,68,74,131,232,835,3906,1020,4206,mi.po,,mi,,maori,,,mi

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,1032,4328,4766,14,45,0,0,1046,4373,mg.po,,mg,,malagasy,,,mg

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,1104,4965,5469,0,0,0,0,1104,4965,mai.po,,mai,,maithili,,,mai

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,726,4278,3700,0,0,0,0,726,4278,lv.po,,lv,,latvian,,,lv

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,726,4278,3570,0,0,0,0,726,4278,lt.po,,lt,,lithuanian,,,lt

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ln.po,724,4280,4594,0,0,0,0,724,4280,ln.po,,ln,,lingala,,,ln

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/la.po,8,9,16,0,0,1085,4933,1093,4942,la.po,,la,,latin,,,la

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,297,676,760,19,39,786,4348,1102,5063,ku.po,,ku,,kurdish,,,ku

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,726,4278,3070,0,0,0,0,726,4278,ko.po,,ko,,korean,,,ko

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,684,4084,3430,0,0,0,0,684,4084,kn.po,,kn,,kannada,,,kn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,751,4360,1654,0,0,0,0,751,4360,km.po,,km,,khmer,,,km

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,669,3162,2540,0,0,57,1116,726,4278,kk.po,,kk,,kazakh,,,kk

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,311,491,475,371,1693,352,2099,1034,4283,ka.po,,ka,,georgian,,,ka

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,726,4278,1001,0,0,0,0,726,4278,ja.po,,ja,,japanese,,,ja

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,726,4278,4460,0,0,0,0,726,4278,it.po,,it,,italian,,,it

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,713,3933,3647,0,0,8,338,721,4271,is.po,,is,,icelandic,,,is

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,727,4279,3938,0,0,0,0,727,4279,id.po,,id,,indonesian,,,id

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,156,415,357,0,0,877,3917,1033,4332,hy.po,,hy,,armenian,,,hy

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,727,4279,3670,0,0,0,0,727,4279,hu.po,,hu,,hungarian,,,hu

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,721,4271,4078,0,0,0,0,721,4271,hr.po,,hr,,croatian,,,hr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,683,4083,4844,0,0,0,0,683,4083,hi.po,,hi,,hindi,,,hi

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,722,4266,3803,0,0,0,0,722,4266,he.po,,he,,hebrew,,,he

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,712,4184,4421,0,0,0,0,712,4184,gu.po,,gu,,gujarati,,,gu

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,727,4279,4824,0,0,0,0,727,4279,gl.po,,gl,,galician,,,gl

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,721,4267,6000,0,0,0,0,721,4267,gd.po,,gd,,scottish gaelic,,,gd

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,397,996,1124,35,158,315,3122,747,4276,ga.po,,ga,,irish,,,ga

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,726,4278,4913,0,0,0,0,726,4278,fur.po,,fur,,friulian,,,fur

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,727,4279,4917,0,0,0,0,727,4279,fr.po,,fr,,french,,,fr

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,726,4278,3165,0,0,0,0,726,4278,fi.po,,fi,,finnish,,,fi

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,722,4266,4793,0,0,0,0,722,4266,fa.po,,fa,,persian,,,fa

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,726,4278,3477,0,0,0,0,726,4278,eu.po,,eu,,basque,,,eu

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,747,4276,3369,0,0,0,0,747,4276,et.po,,et,,estonian,,,et

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,727,4279,4808,0,0,0,0,727,4279,es.po,,es,,spanish,,,es

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,710,4084,3756,0,0,0,0,710,4084,eo.po,,eo,,esperanto,,,eo

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,721,4267,4294,0,0,0,0,721,4267,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,1028,4339,4344,0,0,0,0,1028,4339,en_ca.po,,en,ca,english,,canada,en_ca

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,1110,5063,5069,0,0,0,0,1110,5063,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,727,4279,4479,0,0,0,0,727,4279,el.po,,el,,greek,,,el

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,1099,4983,2458,0,0,0,0,1099,4983,dz.po,,dz,,dzongkha,,,dz

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,727,4279,4260,0,0,0,0,727,4279,de.po,,de,,german,,,de

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,726,4278,3909,0,0,0,0,726,4278,da.po,,da,,danish,,,da

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,953,3827,4389,100,747,50,388,1103,4962,cy.po,,cy,,welsh,,,cy

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,726,4278,4091,0,0,0,0,726,4278,cs.po,,cs,,czech,,,cs

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,754,4362,3447,0,0,0,0,754,4362,crh.po,,crh,,crimean turkish,,,crh

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,722,4266,4981,0,0,0,0,722,4266,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,727,4279,4998,0,0,0,0,727,4279,ca.po,,ca,,catalan,,,ca

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,685,4087,4003,0,0,0,0,685,4087,bs.po,,bs,,bosnian,,,bs

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,787,2495,2806,103,787,214,1681,1104,4963,br.po,,br,,breton,,,br

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,684,4084,4396,0,0,0,0,684,4084,bn_in.po,,bn,in,bangla,,india,bn_in

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1107,5003,5417,0,0,0,0,1107,5003,bn.po,,bn,,bangla,,,bn

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,722,4266,4420,0,0,0,0,722,4266,bg.po,,bg,,bulgarian,,,bg

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,1099,4948,4656,0,0,0,0,1099,4948,be@latin.po,latin,be,,belarusian,,,be@latin

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,721,4271,3896,0,0,0,0,721,4271,be.po,,be,,belarusian,,,be

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,548,2626,2196,176,884,296,696,1020,4206,az.po,,az,,azerbaijani,,,az

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,734,4323,4477,0,0,0,0,734,4323,ast.po,,ast,,asturian,,,ast

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,684,4084,4244,0,0,0,0,684,4084,as.po,,as,,assamese,,,as

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,721,4265,4174,0,0,0,0,721,4265,ar.po,,ar,,arabic,,,ar

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,688,4104,4705,0,0,0,0,688,4104,an.po,,an,,aragonese,,,an

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,257,521,547,203,553,560,3132,1020,4206,am.po,,am,,amharic,,,am

+ gedit-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,683,3317,3347,41,824,3,138,727,4279,af.po,,af,,afrikaans,,,af

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sr.po,1504,7291,7040,0,0,0,0,1504,7291,sr.po,,sr,,serbian,,,sr

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/uk.po,1344,4646,4344,149,505,264,3304,1757,8455,uk.po,,uk,,ukrainian,,,uk

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/el.po,1805,8737,8935,0,0,0,0,1805,8737,el.po,,el,,greek,,,el

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/de.po,1609,6737,5861,75,491,121,1509,1805,8737,de.po,,de,,german,,,de

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/zh_cn.po,747,4149,1646,134,460,70,788,951,5397,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/tr.po,614,2379,2085,34,64,765,4492,1413,6935,tr.po,,tr,,turkish,,,tr

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/da.po,1852,9021,8014,0,0,0,0,1852,9021,da.po,,da,,danish,,,da

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sl.po,1566,6646,6275,39,299,189,1749,1794,8694,sl.po,,sl,,slovenian,,,sl

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/it.po,1860,9095,9775,0,0,0,0,1860,9095,it.po,,it,,italian,,,it

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/mr.po,1490,6617,5826,11,51,256,1787,1757,8455,mr.po,,mr,,marathi,,,mr

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pt.po,1504,7265,8037,6,66,7,57,1517,7388,pt.po,,pt,,portuguese,,,pt

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ca.po,1719,8130,9848,0,0,0,0,1719,8130,ca.po,,ca,,catalan,,,ca

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sv.po,1855,9050,7846,0,0,0,0,1855,9050,sv.po,,sv,,swedish,,,sv

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/oc.po,1292,5922,6708,0,0,196,1298,1488,7220,oc.po,,oc,,occitan,,,oc

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/eo.po,127,178,173,106,209,1478,7709,1711,8096,eo.po,,eo,,esperanto,,,eo

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/sk.po,68,151,159,0,0,1416,7018,1484,7169,sk.po,,sk,,slovak,,,sk

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/nb.po,122,187,177,626,1556,747,5495,1495,7238,nb.po,,nb,,norwegian bokmål,,,nb

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/es.po,1860,9095,10856,0,0,0,0,1860,9095,es.po,,es,,spanish,,,es

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pt_br.po,1764,8483,9471,0,0,1,2,1765,8485,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ko.po,148,345,285,105,247,698,4805,951,5397,ko.po,,ko,,korean,,,ko

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/eu.po,1719,8130,6866,0,0,0,0,1719,8130,eu.po,,eu,,basque,,,eu

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/pl.po,1874,9139,8537,0,0,0,0,1874,9139,pl.po,,pl,,polish,,,pl

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/en_gb.po,596,3578,3578,196,913,159,906,951,5397,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/fr.po,1186,5686,6517,2,55,241,1264,1429,7005,fr.po,,fr,,french,,,fr

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/is.po,345,626,600,0,0,1139,6543,1484,7169,is.po,,is,,icelandic,,,is

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/lv.po,1418,5684,5158,111,758,218,1963,1747,8405,lv.po,,lv,,latvian,,,lv

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/id.po,76,115,110,313,714,562,4568,951,5397,id.po,,id,,indonesian,,,id

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/ru.po,1078,2944,2870,124,434,645,5605,1847,8983,ru.po,,ru,,russian,,,ru

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/bs.po,1327,6792,6166,0,0,0,0,1327,6792,bs.po,,bs,,bosnian,,,bs

+ gegl04-0.4.14-1.fc30.src.rpm.stats.csv,po/gl.po,170,283,325,132,287,649,4827,951,5397,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/fi.po,42,514,417,0,0,0,0,42,514,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pt_br.po,42,514,566,0,0,0,0,42,514,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/bg.po,42,514,522,0,0,0,0,42,514,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/it.po,42,514,536,0,0,0,0,42,514,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/da.po,41,509,463,1,5,0,0,42,514,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/uk.po,42,514,490,0,0,0,0,42,514,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/hr.po,42,514,483,0,0,0,0,42,514,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ro.po,25,320,334,14,150,3,44,42,514,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/vi.po,42,514,739,0,0,0,0,42,514,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/de.po,42,514,505,0,0,0,0,42,514,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/en@quot.po,42,514,514,0,0,0,0,42,514,en@quot.po,quot,en,,english,,,en@quot

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pl.po,42,514,477,0,0,0,0,42,514,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/id.po,39,428,406,3,86,0,0,42,514,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/et.po,7,18,20,18,295,17,201,42,514,et.po,,et,,estonian,,,et

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sr.po,42,514,493,0,0,0,0,42,514,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ga.po,28,364,355,14,150,0,0,42,514,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_tw.po,42,514,197,0,0,0,0,42,514,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sv.po,42,514,470,0,0,0,0,42,514,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sk.po,42,514,522,0,0,0,0,42,514,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/el.po,6,16,18,19,297,17,201,42,514,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_hk.po,27,324,126,14,150,1,40,42,514,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/sl.po,42,514,455,0,0,0,0,42,514,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/es.po,42,514,600,0,0,0,0,42,514,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/fr.po,42,514,537,0,0,0,0,42,514,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/pt.po,28,364,424,14,150,0,0,42,514,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ko.po,42,514,411,0,0,0,0,42,514,ko.po,,ko,,korean,,,ko

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/hu.po,42,514,486,0,0,0,0,42,514,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/tr.po,41,509,443,1,5,0,0,42,514,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/gl.po,42,514,551,0,0,0,0,42,514,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nb.po,42,514,479,0,0,0,0,42,514,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/en@boldquot.po,42,514,514,0,0,0,0,42,514,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/cs.po,42,514,492,0,0,0,0,42,514,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nn.po,28,364,363,14,150,0,0,42,514,nn.po,,nn,,norwegian nynorsk,,,nn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ca.po,42,514,553,0,0,0,0,42,514,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/zh_cn.po,41,440,155,1,74,0,0,42,514,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ja.po,42,514,265,0,0,0,0,42,514,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/eo.po,42,514,508,0,0,0,0,42,514,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/be.po,14,150,142,16,161,12,203,42,514,be.po,,be,,belarusian,,,be

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/ru.po,42,514,478,0,0,0,0,42,514,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-runtime/po/nl.po,42,514,508,0,0,0,0,42,514,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/fi.po,4,15,11,0,0,0,0,4,15,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pt_br.po,4,15,16,0,0,0,0,4,15,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/bg.po,4,15,16,0,0,0,0,4,15,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ast.po,4,15,16,0,0,0,0,4,15,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/it.po,4,15,20,0,0,0,0,4,15,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/af.po,4,15,13,0,0,0,0,4,15,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/da.po,4,15,14,0,0,0,0,4,15,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/uk.po,4,15,14,0,0,0,0,4,15,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/hr.po,4,15,15,0,0,0,0,4,15,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ro.po,4,15,14,0,0,0,0,4,15,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/vi.po,4,15,22,0,0,0,0,4,15,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/de.po,4,15,13,0,0,0,0,4,15,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pl.po,4,15,17,0,0,0,0,4,15,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/id.po,4,15,14,0,0,0,0,4,15,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sr.po,4,15,15,0,0,0,0,4,15,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ga.po,4,15,21,0,0,0,0,4,15,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_tw.po,4,15,5,0,0,0,0,4,15,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sv.po,4,15,12,0,0,0,0,4,15,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sk.po,4,15,15,0,0,0,0,4,15,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/el.po,4,15,17,0,0,0,0,4,15,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_hk.po,4,15,5,0,0,0,0,4,15,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/sl.po,4,15,14,0,0,0,0,4,15,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/es.po,4,15,18,0,0,0,0,4,15,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/fr.po,4,15,20,0,0,0,0,4,15,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/pt.po,4,15,19,0,0,0,0,4,15,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/hu.po,4,15,14,0,0,0,0,4,15,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ms.po,4,15,14,0,0,0,0,4,15,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/tr.po,4,15,14,0,0,0,0,4,15,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/gl.po,4,15,16,0,0,0,0,4,15,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/nb.po,4,15,13,0,0,0,0,4,15,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/cs.po,4,15,14,0,0,0,0,4,15,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ca.po,4,15,17,0,0,0,0,4,15,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/zh_cn.po,4,15,6,0,0,0,0,4,15,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ja.po,4,15,8,0,0,0,0,4,15,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/eo.po,4,15,13,0,0,0,0,4,15,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ru.po,4,15,15,0,0,0,0,4,15,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/nl.po,4,15,12,0,0,0,0,4,15,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/ky.po,4,15,15,0,0,0,0,4,15,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/lv.po,4,15,15,0,0,0,0,4,15,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-kde/po/mt.po,4,15,17,0,0,0,0,4,15,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-qt/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++-wxwidgets/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c++/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/fi.po,9,37,27,0,0,0,0,9,37,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pt_br.po,9,37,38,0,0,0,0,9,37,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/bg.po,9,37,39,0,0,0,0,9,37,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ast.po,1,2,2,1,10,7,25,9,37,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/it.po,9,37,42,0,0,0,0,9,37,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/af.po,1,2,2,1,10,7,25,9,37,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/da.po,9,37,32,0,0,0,0,9,37,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/uk.po,9,37,33,0,0,0,0,9,37,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/hr.po,9,37,39,0,0,0,0,9,37,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ro.po,9,37,38,0,0,0,0,9,37,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/vi.po,9,37,50,0,0,0,0,9,37,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/de.po,9,37,35,0,0,0,0,9,37,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pl.po,9,37,35,0,0,0,0,9,37,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/id.po,1,2,2,1,10,7,25,9,37,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sr.po,9,37,41,0,0,0,0,9,37,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ga.po,1,2,4,1,10,7,25,9,37,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_tw.po,9,37,15,0,0,0,0,9,37,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sv.po,9,37,34,0,0,0,0,9,37,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sk.po,9,37,35,0,0,0,0,9,37,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/el.po,1,2,3,1,10,7,25,9,37,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_hk.po,1,2,1,1,10,7,25,9,37,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/sl.po,9,37,32,0,0,0,0,9,37,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/es.po,9,37,38,0,0,0,0,9,37,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/fr.po,9,37,47,0,0,0,0,9,37,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/pt.po,1,2,2,1,10,7,25,9,37,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/hu.po,9,37,31,0,0,0,0,9,37,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ms.po,9,37,37,0,0,0,0,9,37,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/tr.po,1,2,2,1,10,7,25,9,37,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/gl.po,2,4,5,1,10,6,23,9,37,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/nb.po,9,37,34,0,0,0,0,9,37,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/cs.po,9,37,38,0,0,0,0,9,37,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ca.po,9,37,43,0,0,0,0,9,37,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/zh_cn.po,9,37,14,0,0,0,0,9,37,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ja.po,9,37,14,0,0,0,0,9,37,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/eo.po,9,37,39,0,0,0,0,9,37,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ru.po,9,37,33,0,0,0,0,9,37,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/nl.po,9,37,38,0,0,0,0,9,37,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/ky.po,1,2,2,1,10,7,25,9,37,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/lv.po,1,2,2,1,10,7,25,9,37,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c-gnome3/po/mt.po,1,2,3,1,10,7,25,9,37,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-c/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-clisp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp-forms/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-csharp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-gawk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-guile/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-awt/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-qtjambi/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java-swing/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ast.po,1,2,2,1,8,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-java/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-librep/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnome/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc-gnustep/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-objc/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-pascal/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/fi.po,3,18,12,0,0,0,0,3,18,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pt_br.po,3,18,20,0,0,0,0,3,18,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/bg.po,3,18,17,0,0,0,0,3,18,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ast.po,3,18,18,0,0,0,0,3,18,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/it.po,3,18,22,0,0,0,0,3,18,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/af.po,3,18,14,0,0,0,0,3,18,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/da.po,3,18,16,0,0,0,0,3,18,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/uk.po,3,18,18,0,0,0,0,3,18,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/hr.po,3,18,18,0,0,0,0,3,18,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ro.po,3,18,16,0,0,0,0,3,18,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/vi.po,3,18,25,0,0,0,0,3,18,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/de.po,3,18,16,0,0,0,0,3,18,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pl.po,3,18,18,0,0,0,0,3,18,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/id.po,3,18,16,0,0,0,0,3,18,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sr.po,3,18,18,0,0,0,0,3,18,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ga.po,3,18,22,0,0,0,0,3,18,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_tw.po,3,18,5,0,0,0,0,3,18,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sv.po,3,18,16,0,0,0,0,3,18,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sk.po,3,18,18,0,0,0,0,3,18,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/el.po,3,18,19,0,0,0,0,3,18,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_hk.po,3,18,5,0,0,0,0,3,18,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/sl.po,3,18,16,0,0,0,0,3,18,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/es.po,3,18,20,0,0,0,0,3,18,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/fr.po,3,18,23,0,0,0,0,3,18,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/pt.po,3,18,26,0,0,0,0,3,18,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/hu.po,3,18,16,0,0,0,0,3,18,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ms.po,3,18,16,0,0,0,0,3,18,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/tr.po,3,18,16,0,0,0,0,3,18,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/gl.po,3,18,20,0,0,0,0,3,18,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/nb.po,3,18,16,0,0,0,0,3,18,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/cs.po,3,18,16,0,0,0,0,3,18,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ca.po,3,18,22,0,0,0,0,3,18,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/zh_cn.po,3,18,7,0,0,0,0,3,18,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ja.po,3,18,8,0,0,0,0,3,18,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/eo.po,3,18,20,0,0,0,0,3,18,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ru.po,3,18,18,0,0,0,0,3,18,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/nl.po,3,18,16,0,0,0,0,3,18,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/ky.po,3,18,18,0,0,0,0,3,18,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/lv.po,3,18,18,0,0,0,0,3,18,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-perl/po/mt.po,3,18,17,0,0,0,0,3,18,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-php/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-python/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-sh/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-smalltalk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl-tk/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-tcl/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/fi.po,2,10,7,0,0,0,0,2,10,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pt_br.po,2,10,11,0,0,0,0,2,10,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/bg.po,2,10,10,0,0,0,0,2,10,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ast.po,2,10,10,0,0,0,0,2,10,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/it.po,2,10,12,0,0,0,0,2,10,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/af.po,2,10,8,0,0,0,0,2,10,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/da.po,2,10,9,0,0,0,0,2,10,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/uk.po,2,10,10,0,0,0,0,2,10,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/hr.po,2,10,10,0,0,0,0,2,10,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ro.po,2,10,9,0,0,0,0,2,10,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/vi.po,2,10,14,0,0,0,0,2,10,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/de.po,2,10,9,0,0,0,0,2,10,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pl.po,2,10,10,0,0,0,0,2,10,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/id.po,2,10,9,0,0,0,0,2,10,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sr.po,2,10,10,0,0,0,0,2,10,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ga.po,2,10,13,0,0,0,0,2,10,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_tw.po,2,10,3,0,0,0,0,2,10,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sv.po,2,10,9,0,0,0,0,2,10,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sk.po,2,10,10,0,0,0,0,2,10,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/el.po,2,10,11,0,0,0,0,2,10,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_hk.po,2,10,3,0,0,0,0,2,10,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/sl.po,2,10,9,0,0,0,0,2,10,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/es.po,2,10,11,0,0,0,0,2,10,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/fr.po,2,10,13,0,0,0,0,2,10,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/pt.po,2,10,14,0,0,0,0,2,10,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/hu.po,2,10,9,0,0,0,0,2,10,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ms.po,2,10,9,0,0,0,0,2,10,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/tr.po,2,10,9,0,0,0,0,2,10,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/gl.po,2,10,11,0,0,0,0,2,10,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/nb.po,2,10,9,0,0,0,0,2,10,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/cs.po,2,10,9,0,0,0,0,2,10,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ca.po,2,10,12,0,0,0,0,2,10,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/zh_cn.po,2,10,4,0,0,0,0,2,10,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ja.po,2,10,5,0,0,0,0,2,10,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/eo.po,2,10,11,0,0,0,0,2,10,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ru.po,2,10,10,0,0,0,0,2,10,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/nl.po,2,10,9,0,0,0,0,2,10,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/ky.po,2,10,10,0,0,0,0,2,10,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/lv.po,2,10,10,0,0,0,0,2,10,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/hello-ycp/po/mt.po,2,10,10,0,0,0,0,2,10,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/fi.po,18,98,66,0,0,0,0,18,98,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pt_br.po,18,98,106,0,0,0,0,18,98,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/bg.po,18,98,94,0,0,0,0,18,98,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ast.po,10,63,64,1,10,7,25,18,98,ast.po,,ast,,asturian,,,ast

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/it.po,18,98,120,0,0,0,0,18,98,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/af.po,10,63,49,1,10,7,25,18,98,af.po,,af,,afrikaans,,,af

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/da.po,18,98,86,0,0,0,0,18,98,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/uk.po,18,98,93,0,0,0,0,18,98,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/hr.po,18,98,100,0,0,0,0,18,98,hr.po,,hr,,croatian,,,hr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ro.po,18,98,92,0,0,0,0,18,98,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/vi.po,18,98,135,0,0,0,0,18,98,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/de.po,18,98,88,0,0,0,0,18,98,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pl.po,18,98,98,0,0,0,0,18,98,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/id.po,10,63,56,1,10,7,25,18,98,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sr.po,18,98,102,0,0,0,0,18,98,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ga.po,10,63,75,1,10,7,25,18,98,ga.po,,ga,,irish,,,ga

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_tw.po,18,98,31,0,0,0,0,18,98,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sv.po,18,98,86,0,0,0,0,18,98,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sk.po,18,98,96,0,0,0,0,18,98,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/el.po,10,63,65,1,10,7,25,18,98,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_hk.po,10,63,17,1,10,7,25,18,98,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/sl.po,18,98,86,0,0,0,0,18,98,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/es.po,18,98,108,0,0,0,0,18,98,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/fr.po,18,98,124,0,0,0,0,18,98,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/pt.po,10,63,91,1,10,7,25,18,98,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/hu.po,18,98,85,0,0,0,0,18,98,hu.po,,hu,,hungarian,,,hu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ms.po,18,98,91,0,0,0,0,18,98,ms.po,,ms,,malay,,,ms

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/tr.po,10,63,56,1,10,7,25,18,98,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/gl.po,11,65,73,1,10,6,23,18,98,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/nb.po,18,98,87,0,0,0,0,18,98,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/cs.po,18,98,92,0,0,0,0,18,98,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ca.po,18,98,118,0,0,0,0,18,98,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/zh_cn.po,18,98,37,0,0,0,0,18,98,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ja.po,18,98,38,0,0,0,0,18,98,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/eo.po,18,98,104,0,0,0,0,18,98,eo.po,,eo,,esperanto,,,eo

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ru.po,18,98,94,0,0,0,0,18,98,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/nl.po,18,98,90,0,0,0,0,18,98,nl.po,,nl,,dutch,,,nl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/ky.po,10,63,63,1,10,7,25,18,98,ky.po,,ky,,kyrgyz,,,ky

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/lv.po,10,63,63,1,10,7,25,18,98,lv.po,,lv,,latvian,,,lv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/examples/po/mt.po,10,63,59,1,10,7,25,18,98,mt.po,,mt,,maltese,,,mt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/eu.po,380,2940,2707,176,1782,143,2120,699,6842,eu.po,,eu,,basque,,,eu

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/fi.po,633,6487,5031,30,158,36,197,699,6842,fi.po,,fi,,finnish,,,fi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pt_br.po,696,6822,7619,3,20,0,0,699,6842,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/bg.po,699,6842,7154,0,0,0,0,699,6842,bg.po,,bg,,bulgarian,,,bg

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/it.po,627,6444,7016,28,145,44,253,699,6842,it.po,,it,,italian,,,it

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/da.po,548,5535,4932,91,910,60,397,699,6842,da.po,,da,,danish,,,da

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/uk.po,699,6842,6375,0,0,0,0,699,6842,uk.po,,uk,,ukrainian,,,uk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ro.po,396,3765,3989,193,2185,110,892,699,6842,ro.po,,ro,,romanian,,,ro

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/vi.po,699,6842,9852,0,0,0,0,699,6842,vi.po,,vi,,vietnamese,,,vi

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pa.po,210,1136,1271,65,383,424,5323,699,6842,pa.po,,pa,,punjabi,,,pa

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/de.po,633,6487,6420,30,158,36,197,699,6842,de.po,,de,,german,,,de

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/en@quot.po,699,6842,6842,0,0,0,0,699,6842,en@quot.po,quot,en,,english,,,en@quot

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pl.po,699,6842,6467,0,0,0,0,699,6842,pl.po,,pl,,polish,,,pl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/id.po,544,5523,5301,94,923,61,396,699,6842,id.po,,id,,indonesian,,,id

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/et.po,55,332,324,136,1220,508,5290,699,6842,et.po,,et,,estonian,,,et

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sr.po,699,6842,6419,0,0,0,0,699,6842,sr.po,,sr,,serbian,,,sr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/zh_tw.po,402,3657,1503,163,1940,134,1245,699,6842,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sv.po,699,6842,5998,0,0,0,0,699,6842,sv.po,,sv,,swedish,,,sv

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sk.po,699,6842,6453,0,0,0,0,699,6842,sk.po,,sk,,slovak,,,sk

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/el.po,35,184,214,143,1265,521,5393,699,6842,el.po,,el,,greek,,,el

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/sl.po,696,6822,6590,3,20,0,0,699,6842,sl.po,,sl,,slovenian,,,sl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/es.po,696,6822,8306,3,20,0,0,699,6842,es.po,,es,,spanish,,,es

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/fr.po,699,6842,8174,0,0,0,0,699,6842,fr.po,,fr,,french,,,fr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/pt.po,29,151,176,85,757,585,5934,699,6842,pt.po,,pt,,portuguese,,,pt

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ko.po,699,6842,5626,0,0,0,0,699,6842,ko.po,,ko,,korean,,,ko

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/tr.po,493,5031,4203,131,1285,75,526,699,6842,tr.po,,tr,,turkish,,,tr

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/gl.po,199,1349,1624,35,336,465,5157,699,6842,gl.po,,gl,,galician,,,gl

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nb.po,55,332,315,136,1220,508,5290,699,6842,nb.po,,nb,,norwegian bokmål,,,nb

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/en@boldquot.po,699,6842,6869,0,0,0,0,699,6842,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/cs.po,55,332,354,109,1036,535,5474,699,6842,cs.po,,cs,,czech,,,cs

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nn.po,94,881,789,100,903,505,5058,699,6842,nn.po,,nn,,norwegian nynorsk,,,nn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ca.po,633,6487,7775,30,158,36,197,699,6842,ca.po,,ca,,catalan,,,ca

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/zh_cn.po,633,6487,2233,30,158,36,197,699,6842,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ja.po,699,6842,3176,0,0,0,0,699,6842,ja.po,,ja,,japanese,,,ja

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/be.po,151,1154,1104,136,1197,412,4491,699,6842,be.po,,be,,belarusian,,,be

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/ru.po,617,6356,5904,36,205,46,281,699,6842,ru.po,,ru,,russian,,,ru

+ gettext-0.19.8.1-18.fc30.src.rpm.stats.csv,gettext-tools/po/nl.po,422,3220,3070,8,38,269,3584,699,6842,nl.po,,nl,,dutch,,,nl

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/zh_cn.po,366,1755,665,7,18,17,60,390,1833,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/vi.po,543,2517,3958,0,0,0,0,543,2517,vi.po,,vi,,vietnamese,,,vi

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/sv.po,547,2534,2614,0,0,0,0,547,2534,sv.po,,sv,,swedish,,,sv

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/ru.po,520,2359,2239,0,0,0,0,520,2359,ru.po,,ru,,russian,,,ru

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/pt_pt.po,550,2546,2885,0,0,0,0,550,2546,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/pt_br.po,520,2359,2659,0,0,0,0,520,2359,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/nb.po,474,1882,1982,0,0,39,443,513,2325,nb.po,,nb,,norwegian bokmål,,,nb

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/ja.po,546,2532,896,0,0,1,2,547,2534,ja.po,,ja,,japanese,,,ja

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/it.po,519,2358,2830,0,0,1,1,520,2359,it.po,,it,,italian,,,it

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/hu.po,514,2328,2367,0,0,0,0,514,2328,hu.po,,hu,,hungarian,,,hu

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/fr.po,520,2359,2916,0,0,0,0,520,2359,fr.po,,fr,,french,,,fr

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/el.po,381,1827,1982,4,9,6,6,391,1842,el.po,,el,,greek,,,el

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/de.po,520,2359,2430,0,0,0,0,520,2359,de.po,,de,,german,,,de

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/bg.po,565,2607,3145,0,0,0,0,565,2607,bg.po,,bg,,bulgarian,,,bg

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/zh_cn.po,34,70,34,0,0,0,0,34,70,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/pt_pt.po,67,119,127,0,0,0,0,67,119,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/pt_br.po,37,62,54,0,0,1,13,38,75,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/it.po,37,74,195,0,0,0,0,37,74,it.po,,it,,italian,,,it

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/fr.po,36,61,51,0,0,1,13,37,74,fr.po,,fr,,french,,,fr

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/el.po,36,60,57,1,2,1,13,38,75,el.po,,el,,greek,,,el

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/de.po,38,75,159,0,0,0,0,38,75,de.po,,de,,german,,,de

+ git-2.21.0-1.fc30.src.rpm.stats.csv,git-gui/po/glossary/bg.po,67,119,120,0,0,0,0,67,119,bg.po,,bg,,bulgarian,,,bg

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/vi.po,307,1135,1820,0,0,0,0,307,1135,vi.po,,vi,,vietnamese,,,vi

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/sv.po,311,1143,1160,0,0,0,0,311,1143,sv.po,,sv,,swedish,,,sv

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ru.po,317,1167,1198,0,0,0,0,317,1167,ru.po,,ru,,russian,,,ru

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/pt_pt.po,311,1143,1351,0,0,0,0,311,1143,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/pt_br.po,279,970,1113,16,116,12,49,307,1135,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ja.po,311,1143,515,0,0,0,0,311,1143,ja.po,,ja,,japanese,,,ja

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/it.po,274,963,1181,17,119,16,53,307,1135,it.po,,it,,italian,,,it

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/hu.po,277,976,1025,18,121,12,38,307,1135,hu.po,,hu,,hungarian,,,hu

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/fr.po,311,1143,1470,0,0,0,0,311,1143,fr.po,,fr,,french,,,fr

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/es.po,184,634,780,46,179,77,322,307,1135,es.po,,es,,spanish,,,es

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/de.po,307,1135,1107,0,0,0,0,307,1135,de.po,,de,,german,,,de

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/ca.po,307,1135,1494,0,0,0,0,307,1135,ca.po,,ca,,catalan,,,ca

+ git-2.21.0-1.fc30.src.rpm.stats.csv,gitk-git/po/bg.po,311,1143,1320,0,0,0,0,311,1143,bg.po,,bg,,bulgarian,,,bg

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,4363,29326,11460,0,0,0,0,4363,29326,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/vi.po,4187,28089,41616,0,0,0,0,4187,28089,vi.po,,vi,,vietnamese,,,vi

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/sv.po,4363,29326,28133,0,0,0,0,4363,29326,sv.po,,sv,,swedish,,,sv

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/ru.po,3366,22514,23326,0,0,594,4111,3960,26625,ru.po,,ru,,russian,,,ru

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/pt_pt.po,3198,21526,24299,0,0,0,0,3198,21526,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/ko.po,3608,24346,21312,0,0,0,0,3608,24346,ko.po,,ko,,korean,,,ko

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/it.po,2347,15566,17960,583,3156,1433,10604,4363,29326,it.po,,it,,italian,,,it

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/is.po,14,81,80,0,0,0,0,14,81,is.po,,is,,icelandic,,,is

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/fr.po,4363,29326,34255,0,0,0,0,4363,29326,fr.po,,fr,,french,,,fr

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/es.po,4363,29326,33250,0,0,0,0,4363,29326,es.po,,es,,spanish,,,es

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/el.po,1038,7892,9184,0,0,3325,21434,4363,29326,el.po,,el,,greek,,,el

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/de.po,4363,29326,29980,0,0,0,0,4363,29326,de.po,,de,,german,,,de

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/ca.po,3450,22883,27720,417,2655,318,2545,4185,28083,ca.po,,ca,,catalan,,,ca

+ git-2.21.0-1.fc30.src.rpm.stats.csv,po/bg.po,4363,29326,35754,0,0,0,0,4363,29326,bg.po,,bg,,bulgarian,,,bg

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,988,5877,1967,114,938,37,291,1139,7106,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,905,5703,1802,0,0,0,0,905,5703,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,1067,6647,2046,0,0,0,0,1067,6647,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/yi.po,105,688,692,127,715,515,3374,747,4777,yi.po,,yi,,yiddish,,,yi

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/xh.po,131,902,729,142,769,474,3106,747,4777,xh.po,,xh,,xhosa,,,xh

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/wa.po,68,281,386,123,657,556,3839,747,4777,wa.po,,wa,,walloon,,,wa

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/vi.po,916,5762,8063,0,0,0,0,916,5762,vi.po,,vi,,vietnamese,,,vi

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/uk.po,903,5675,5555,0,0,0,0,903,5675,uk.po,,uk,,ukrainian,,,uk

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ug.po,860,5426,5080,0,0,4,38,864,5464,ug.po,,ug,,uyghur,,,ug

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tt.po,81,345,297,101,513,565,3919,747,4777,tt.po,,tt,,tatar,,,tt

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tr.po,1150,7157,6248,0,0,0,0,1150,7157,tr.po,,tr,,turkish,,,tr

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tl.po,150,1021,1212,129,676,468,3080,747,4777,tl.po,,tl,,tagalog,,,tl

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/th.po,1066,6642,2868,0,0,0,0,1066,6642,th.po,,th,,thai,,,th

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/tg.po,79,119,115,27,101,758,5244,864,5464,tg.po,,tg,,tajik,,,tg

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/te.po,905,5703,4929,0,0,0,0,905,5703,te.po,,te,,telugu,,,te

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ta.po,905,5703,4992,0,0,0,0,905,5703,ta.po,,ta,,tamil,,,ta

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sv.po,1150,7157,6851,0,0,0,0,1150,7157,sv.po,,sv,,swedish,,,sv

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1131,7036,7206,0,0,0,0,1131,7036,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@ije.po,106,706,648,134,736,507,3335,747,4777,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sr.po,1150,7157,7326,0,0,0,0,1150,7157,sr.po,,sr,,serbian,,,sr

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sq.po,358,2080,2542,98,476,291,2221,747,4777,sq.po,,sq,,albanian,,,sq

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sl.po,1150,7157,7302,0,0,0,0,1150,7157,sl.po,,sl,,slovenian,,,sl

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/sk.po,1092,6591,6603,39,446,8,69,1139,7106,sk.po,,sk,,slovak,,,sk

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/si.po,97,385,417,115,566,535,3826,747,4777,si.po,,si,,sinhala,,,si

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/rw.po,32,36,44,239,1640,476,3101,747,4777,rw.po,,rw,,kinyarwanda,,,rw

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ru.po,1050,6425,6351,51,374,30,237,1131,7036,ru.po,,ru,,russian,,,ru

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ro.po,1150,7157,8307,0,0,0,0,1150,7157,ro.po,,ro,,romanian,,,ro

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,1150,7157,8335,0,0,0,0,1150,7157,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pt.po,1060,6469,7445,0,0,6,173,1066,6642,pt.po,,pt,,portuguese,,,pt

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ps.po,131,466,588,69,305,547,4006,747,4777,ps.po,,ps,,pashto,,,ps

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pl.po,1150,7157,7321,0,0,0,0,1150,7157,pl.po,,pl,,polish,,,pl

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/pa.po,910,5725,6481,0,0,0,0,910,5725,pa.po,,pa,,punjabi,,,pa

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/or.po,905,5703,5749,0,0,0,0,905,5703,or.po,,or,,odia,,,or

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/oc.po,1066,6642,8396,0,0,0,0,1066,6642,oc.po,,oc,,occitan,,,oc

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nn.po,362,2080,2137,89,460,296,2237,747,4777,nn.po,,nn,,norwegian nynorsk,,,nn

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nl.po,665,2857,2879,260,2059,225,2241,1150,7157,nl.po,,nl,,dutch,,,nl

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ne.po,403,1706,1792,403,2232,301,3018,1107,6956,ne.po,,ne,,nepali,,,ne

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nds.po,96,259,278,39,201,612,4317,747,4777,nds.po,,nds,,low german,,,nds

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/nb.po,1088,6534,6548,1,8,38,476,1127,7018,nb.po,,nb,,norwegian bokmål,,,nb

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ms.po,105,698,651,135,744,507,3335,747,4777,ms.po,,ms,,malay,,,ms

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mr.po,905,5703,5424,0,0,0,0,905,5703,mr.po,,mr,,marathi,,,mr

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mn.po,131,902,774,142,769,474,3106,747,4777,mn.po,,mn,,mongolian,,,mn

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ml.po,587,3073,2653,42,333,235,2058,864,5464,ml.po,,ml,,malayalam,,,ml

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mk.po,347,2025,2333,104,515,296,2237,747,4777,mk.po,,mk,,macedonian,,,mk

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mg.po,164,1135,1210,121,630,462,3012,747,4777,mg.po,,mg,,malagasy,,,mg

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/mai.po,287,1667,1866,93,452,367,2658,747,4777,mai.po,,mai,,maithili,,,mai

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/lv.po,1131,7036,6454,0,0,0,0,1131,7036,lv.po,,lv,,latvian,,,lv

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/lt.po,1150,7157,6167,0,0,0,0,1150,7157,lt.po,,lt,,lithuanian,,,lt

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ku.po,41,71,77,90,442,616,4264,747,4777,ku.po,,ku,,kurdish,,,ku

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ko.po,1150,7157,6265,0,0,0,0,1150,7157,ko.po,,ko,,korean,,,ko

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/kn.po,904,5697,5056,0,0,0,0,904,5697,kn.po,,kn,,kannada,,,kn

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/kk.po,339,1072,1019,0,0,811,6085,1150,7157,kk.po,,kk,,kazakh,,,kk

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ka.po,193,1287,1058,120,605,434,2885,747,4777,ka.po,,ka,,georgian,,,ka

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ja.po,671,4078,1761,92,660,101,731,864,5469,ja.po,,ja,,japanese,,,ja

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/it.po,1150,7157,8125,0,0,0,0,1150,7157,it.po,,it,,italian,,,it

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/is.po,163,788,744,160,917,589,4034,912,5739,is.po,,is,,icelandic,,,is

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/id.po,1150,7157,7261,0,0,0,0,1150,7157,id.po,,id,,indonesian,,,id

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hy.po,643,4085,3998,42,304,62,388,747,4777,hy.po,,hy,,armenian,,,hy

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hu.po,1150,7157,6987,0,0,0,0,1150,7157,hu.po,,hu,,hungarian,,,hu

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hr.po,178,1017,968,0,0,652,4237,830,5254,hr.po,,hr,,croatian,,,hr

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/hi.po,905,5703,6753,0,0,0,0,905,5703,hi.po,,hi,,hindi,,,hi

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/he.po,1127,7018,7022,0,0,0,0,1127,7018,he.po,,he,,hebrew,,,he

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gu.po,904,5697,6111,0,0,0,0,904,5697,gu.po,,gu,,gujarati,,,gu

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gl.po,1150,7157,8981,0,0,0,0,1150,7157,gl.po,,gl,,galician,,,gl

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/gd.po,149,400,516,0,0,958,6556,1107,6956,gd.po,,gd,,scottish gaelic,,,gd

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ga.po,189,628,758,48,219,534,3954,771,4801,ga.po,,ga,,irish,,,ga

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fur.po,649,3158,3872,5,38,496,3961,1150,7157,fur.po,,fur,,friulian,,,fur

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fr.po,1150,7157,9044,0,0,0,0,1150,7157,fr.po,,fr,,french,,,fr

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fi.po,662,3319,2746,280,2275,189,1442,1131,7036,fi.po,,fi,,finnish,,,fi

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/fa.po,492,2602,2979,38,244,291,2375,821,5221,fa.po,,fa,,persian,,,fa

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/eu.po,1150,7157,6782,0,0,0,0,1150,7157,eu.po,,eu,,basque,,,eu

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/et.po,536,2825,2459,151,897,444,3314,1131,7036,et.po,,et,,estonian,,,et

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/es.po,1150,7157,9086,0,0,0,0,1150,7157,es.po,,es,,spanish,,,es

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/eo.po,626,3373,3327,245,2038,202,1324,1073,6735,eo.po,,eo,,esperanto,,,eo

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,1131,7036,7055,0,0,0,0,1131,7036,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,771,4801,4804,0,0,0,0,771,4801,en_ca.po,,en,ca,english,,canada,en_ca

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,423,2582,2581,66,377,258,1818,747,4777,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/el.po,717,3615,3831,300,2566,122,925,1139,7106,el.po,,el,,greek,,,el

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/dz.po,166,1138,621,123,637,458,3002,747,4777,dz.po,,dz,,dzongkha,,,dz

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/de.po,1150,7157,7281,0,0,0,0,1150,7157,de.po,,de,,german,,,de

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/da.po,1150,7157,6955,0,0,0,0,1150,7157,da.po,,da,,danish,,,da

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/cy.po,270,1620,1788,101,503,376,2654,747,4777,cy.po,,cy,,welsh,,,cy

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/cs.po,1150,7157,6893,0,0,0,0,1150,7157,cs.po,,cs,,czech,,,cs

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,1107,6956,9502,0,0,0,0,1107,6956,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ca.po,1150,7157,9780,0,0,0,0,1150,7157,ca.po,,ca,,catalan,,,ca

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bs.po,904,5697,5735,0,0,0,0,904,5697,bs.po,,bs,,bosnian,,,bs

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,915,5750,5872,0,0,0,0,915,5750,bn_in.po,,bn,in,bangla,,india,bn_in

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bn.po,447,2552,2699,57,301,243,1924,747,4777,bn.po,,bn,,bangla,,,bn

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/bg.po,914,5755,6494,0,0,0,0,914,5755,bg.po,,bg,,bulgarian,,,bg

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,347,2025,1955,104,515,296,2237,747,4777,be@latin.po,latin,be,,belarusian,,,be@latin

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/be.po,865,5478,5365,0,0,0,0,865,5478,be.po,,be,,belarusian,,,be

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/az.po,104,696,627,135,744,508,3337,747,4777,az.po,,az,,azerbaijani,,,az

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ast.po,433,2489,3154,66,335,248,1953,747,4777,ast.po,,ast,,asturian,,,ast

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/as.po,905,5703,5806,0,0,0,0,905,5703,as.po,,as,,assamese,,,as

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/ar.po,431,2303,2337,0,0,408,2992,839,5295,ar.po,,ar,,arabic,,,ar

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/an.po,864,5464,7395,0,0,1,5,865,5469,an.po,,an,,aragonese,,,an

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/am.po,37,51,54,86,414,624,4312,747,4777,am.po,,am,,amharic,,,am

+ glib2-2.60.1-2.fc30.src.rpm.stats.csv,po/af.po,137,351,407,46,261,588,4189,771,4801,af.po,,af,,afrikaans,,,af

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/zh_tw.po,1353,7306,3114,68,449,47,351,1468,8106,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/zh_cn.po,1411,7698,2974,43,261,14,147,1468,8106,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/vi.po,1454,7955,12531,8,116,6,35,1468,8106,vi.po,,vi,,vietnamese,,,vi

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/uk.po,1468,8106,8801,0,0,0,0,1468,8106,uk.po,,uk,,ukrainian,,,uk

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/tr.po,1243,6403,5786,169,1157,56,546,1468,8106,tr.po,,tr,,turkish,,,tr

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/sv.po,1454,7955,7658,8,116,6,35,1468,8106,sv.po,,sv,,swedish,,,sv

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/sl.po,528,2715,2838,359,1630,581,3761,1468,8106,sl.po,,sl,,slovenian,,,sl

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/sk.po,1023,5033,5258,227,1275,218,1798,1468,8106,sk.po,,sk,,slovak,,,sk

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/rw.po,14,19,21,1090,5891,364,2196,1468,8106,rw.po,,rw,,kinyarwanda,,,rw

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/ru.po,1468,8106,8127,0,0,0,0,1468,8106,ru.po,,ru,,russian,,,ru

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/pt_br.po,1468,8106,9787,0,0,0,0,1468,8106,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/pl.po,1468,8106,8456,0,0,0,0,1468,8106,pl.po,,pl,,polish,,,pl

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/nl.po,1440,7884,8015,19,176,9,46,1468,8106,nl.po,,nl,,dutch,,,nl

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/nb.po,697,3102,3004,413,2299,358,2705,1468,8106,nb.po,,nb,,norwegian bokmål,,,nb

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/lt.po,401,1592,1428,377,1749,690,4765,1468,8106,lt.po,,lt,,lithuanian,,,lt

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/ko.po,1440,7884,7437,19,176,9,46,1468,8106,ko.po,,ko,,korean,,,ko

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/ja.po,1292,6937,3022,110,724,66,445,1468,8106,ja.po,,ja,,japanese,,,ja

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/it.po,1299,6976,8217,106,705,63,425,1468,8106,it.po,,it,,italian,,,it

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/id.po,1237,6657,6991,141,793,90,656,1468,8106,id.po,,id,,indonesian,,,id

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/ia.po,522,3263,4173,39,261,907,4582,1468,8106,ia.po,,ia,,interlingua,,,ia

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/hu.po,381,1560,1603,81,343,1006,6203,1468,8106,hu.po,,hu,,hungarian,,,hu

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/hr.po,1468,8106,8854,0,0,0,0,1468,8106,hr.po,,hr,,croatian,,,hr

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/gl.po,1010,4955,6261,239,1354,219,1797,1468,8106,gl.po,,gl,,galician,,,gl

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/fr.po,1431,7805,10074,26,233,11,68,1468,8106,fr.po,,fr,,french,,,fr

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/fi.po,1215,5965,5129,127,998,126,1143,1468,8106,fi.po,,fi,,finnish,,,fi

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/es.po,1374,7466,10167,57,350,37,290,1468,8106,es.po,,es,,spanish,,,es

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/eo.po,836,3486,3419,45,218,587,4402,1468,8106,eo.po,,eo,,esperanto,,,eo

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/en_gb.po,10,64,64,0,0,1078,5305,1088,5369,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/el.po,704,3078,3615,374,2040,390,2988,1468,8106,el.po,,el,,greek,,,el

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/de.po,1468,8106,9036,0,0,0,0,1468,8106,de.po,,de,,german,,,de

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/da.po,1237,6657,6407,140,789,91,660,1468,8106,da.po,,da,,danish,,,da

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/cs.po,1468,8106,8249,0,0,0,0,1468,8106,cs.po,,cs,,czech,,,cs

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/ca.po,1391,7579,10861,51,314,26,213,1468,8106,ca.po,,ca,,catalan,,,ca

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/bg.po,1468,8106,9940,0,0,0,0,1468,8106,bg.po,,bg,,bulgarian,,,bg

+ glibc-2.29-9.fc30.src.rpm.stats.csv,po/be.po,526,2713,2656,2,11,940,5382,1468,8106,be.po,,be,,belarusian,,,be

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,271,102,0,0,0,0,41,271,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,29,161,70,0,0,0,0,29,161,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,38,250,91,0,0,0,0,38,250,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/vi.po,29,161,218,0,0,0,0,29,161,vi.po,,vi,,vietnamese,,,vi

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/uk.po,24,135,125,0,0,0,0,24,135,uk.po,,uk,,ukrainian,,,uk

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ug.po,29,161,137,0,0,0,0,29,161,ug.po,,ug,,uyghur,,,ug

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/tr.po,42,278,213,0,0,0,0,42,278,tr.po,,tr,,turkish,,,tr

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/th.po,29,161,74,0,0,0,0,29,161,th.po,,th,,thai,,,th

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/tg.po,29,161,168,0,0,0,0,29,161,tg.po,,tg,,tajik,,,tg

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/te.po,28,153,140,0,0,0,0,28,153,te.po,,te,,telugu,,,te

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ta.po,16,86,81,0,0,0,0,16,86,ta.po,,ta,,tamil,,,ta

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sv.po,42,278,262,0,0,0,0,42,278,sv.po,,sv,,swedish,,,sv

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,36,229,276,0,0,0,0,36,229,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sr.po,42,278,329,0,0,0,0,42,278,sr.po,,sr,,serbian,,,sr

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sl.po,42,278,334,0,0,0,0,42,278,sl.po,,sl,,slovenian,,,sl

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/sk.po,37,247,308,0,0,2,11,39,258,sk.po,,sk,,slovak,,,sk

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ru.po,41,271,277,0,0,0,0,41,271,ru.po,,ru,,russian,,,ru

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ro.po,42,278,362,0,0,0,0,42,278,ro.po,,ro,,romanian,,,ro

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,42,278,325,0,0,0,0,42,278,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pt.po,28,157,181,0,0,0,0,28,157,pt.po,,pt,,portuguese,,,pt

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pl.po,42,278,306,0,0,0,0,42,278,pl.po,,pl,,polish,,,pl

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/pa.po,29,161,193,0,0,0,0,29,161,pa.po,,pa,,punjabi,,,pa

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/or.po,24,135,137,0,0,0,0,24,135,or.po,,or,,odia,,,or

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/oc.po,36,229,305,0,0,2,21,38,250,oc.po,,oc,,occitan,,,oc

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/nl.po,42,278,256,0,0,0,0,42,278,nl.po,,nl,,dutch,,,nl

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ne.po,24,139,120,0,0,5,24,29,163,ne.po,,ne,,nepali,,,ne

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/nb.po,32,174,159,0,0,4,55,36,229,nb.po,,nb,,norwegian bokmål,,,nb

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/mr.po,24,135,124,0,0,0,0,24,135,mr.po,,mr,,marathi,,,mr

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ml.po,29,163,137,0,0,0,0,29,163,ml.po,,ml,,malayalam,,,ml

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/lv.po,42,278,282,0,0,0,0,42,278,lv.po,,lv,,latvian,,,lv

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/lt.po,42,278,276,0,0,0,0,42,278,lt.po,,lt,,lithuanian,,,lt

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ko.po,42,278,226,0,0,0,0,42,278,ko.po,,ko,,korean,,,ko

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/kn.po,16,86,84,0,0,0,0,16,86,kn.po,,kn,,kannada,,,kn

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/km.po,24,135,80,0,0,0,0,24,135,km.po,,km,,khmer,,,km

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/kk.po,28,153,145,0,0,13,118,41,271,kk.po,,kk,,kazakh,,,kk

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ja.po,28,157,68,0,0,0,0,28,157,ja.po,,ja,,japanese,,,ja

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/it.po,42,278,327,0,0,0,0,42,278,it.po,,it,,italian,,,it

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/id.po,42,278,270,0,0,0,0,42,278,id.po,,id,,indonesian,,,id

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hu.po,42,278,275,0,0,0,0,42,278,hu.po,,hu,,hungarian,,,hu

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hr.po,42,278,276,0,0,0,0,42,278,hr.po,,hr,,croatian,,,hr

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/hi.po,29,161,195,0,0,0,0,29,161,hi.po,,hi,,hindi,,,hi

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/he.po,32,171,165,0,0,4,58,36,229,he.po,,he,,hebrew,,,he

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gu.po,16,86,110,0,0,0,0,16,86,gu.po,,gu,,gujarati,,,gu

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gl.po,42,278,382,0,0,0,0,42,278,gl.po,,gl,,galician,,,gl

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/gd.po,29,163,214,0,0,0,0,29,163,gd.po,,gd,,scottish gaelic,,,gd

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fur.po,42,278,361,0,0,0,0,42,278,fur.po,,fur,,friulian,,,fur

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fr.po,41,271,367,0,0,0,0,41,271,fr.po,,fr,,french,,,fr

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fi.po,29,165,126,0,0,12,106,41,271,fi.po,,fi,,finnish,,,fi

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/fa.po,29,163,191,0,0,0,0,29,163,fa.po,,fa,,persian,,,fa

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/eu.po,42,278,261,0,0,0,0,42,278,eu.po,,eu,,basque,,,eu

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/et.po,29,161,128,0,0,0,0,29,161,et.po,,et,,estonian,,,et

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/es.po,42,278,352,0,0,0,0,42,278,es.po,,es,,spanish,,,es

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/eo.po,22,123,123,2,11,5,29,29,163,eo.po,,eo,,esperanto,,,eo

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,28,157,157,0,0,0,0,28,157,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,1,4,4,0,0,0,0,1,4,en_ca.po,,en,ca,english,,canada,en_ca

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/el.po,29,163,178,0,0,0,0,29,163,el.po,,el,,greek,,,el

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/de.po,42,278,295,0,0,0,0,42,278,de.po,,de,,german,,,de

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/da.po,42,278,266,0,0,0,0,42,278,da.po,,da,,danish,,,da

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/cs.po,42,278,297,0,0,0,0,42,278,cs.po,,cs,,czech,,,cs

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,29,163,249,0,0,0,0,29,163,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ca.po,41,271,415,0,0,0,0,41,271,ca.po,,ca,,catalan,,,ca

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bs.po,28,157,154,0,0,0,0,28,157,bs.po,,bs,,bosnian,,,bs

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,16,86,98,0,0,0,0,16,86,bn_in.po,,bn,in,bangla,,india,bn_in

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/bg.po,29,163,199,0,0,0,0,29,163,bg.po,,bg,,bulgarian,,,bg

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/be.po,39,258,245,0,0,0,0,39,258,be.po,,be,,belarusian,,,be

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/as.po,29,161,155,0,0,0,0,29,161,as.po,,as,,assamese,,,as

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/ar.po,28,153,161,0,0,0,0,28,153,ar.po,,ar,,arabic,,,ar

+ glib-networking-2.60.1-2.fc30.src.rpm.stats.csv,po/an.po,29,161,199,0,0,0,0,29,161,an.po,,an,,aragonese,,,an

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sk.po,73,396,404,0,0,0,0,73,396,sk.po,,sk,,slovak,,,sk

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/es.po,73,396,483,0,0,0,0,73,396,es.po,,es,,spanish,,,es

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/he.po,71,391,354,0,0,2,5,73,396,he.po,,he,,hebrew,,,he

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/cs.po,73,396,375,0,0,0,0,73,396,cs.po,,cs,,czech,,,cs

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,71,391,132,0,0,2,5,73,396,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/as.po,43,285,296,4,15,26,96,73,396,as.po,,as,,assamese,,,as

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/kk.po,7,8,9,0,0,66,388,73,396,kk.po,,kk,,kazakh,,,kk

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/tr.po,73,396,320,0,0,0,0,73,396,tr.po,,tr,,turkish,,,tr

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ko.po,43,280,245,4,15,26,101,73,396,ko.po,,ko,,korean,,,ko

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/da.po,73,396,381,0,0,0,0,73,396,da.po,,da,,danish,,,da

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sr.po,73,396,412,0,0,0,0,73,396,sr.po,,sr,,serbian,,,sr

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,73,396,128,0,0,0,0,73,396,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,73,396,443,0,0,0,0,73,396,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nl.po,73,396,425,0,0,0,0,73,396,nl.po,,nl,,dutch,,,nl

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/id.po,73,396,390,0,0,0,0,73,396,id.po,,id,,indonesian,,,id

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sv.po,73,396,380,0,0,0,0,73,396,sv.po,,sv,,swedish,,,sv

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ja.po,73,396,143,0,0,0,0,73,396,ja.po,,ja,,japanese,,,ja

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ca.po,73,396,502,0,0,0,0,73,396,ca.po,,ca,,catalan,,,ca

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nn.po,17,108,96,0,0,56,288,73,396,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/bn_in.po,43,280,298,4,15,26,101,73,396,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/kn.po,44,296,270,4,15,25,85,73,396,kn.po,,kn,,kannada,,,kn

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fur.po,71,391,464,0,0,2,5,73,396,fur.po,,fur,,friulian,,,fur

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ar.po,12,14,16,9,32,52,350,73,396,ar.po,,ar,,arabic,,,ar

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/de.po,71,391,399,0,0,2,5,73,396,de.po,,de,,german,,,de

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/it.po,71,391,424,0,0,2,5,73,396,it.po,,it,,italian,,,it

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/el.po,1,5,5,0,0,72,391,73,396,el.po,,el,,greek,,,el

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ru.po,73,396,361,0,0,0,0,73,396,ru.po,,ru,,russian,,,ru

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/hi.po,43,280,331,4,15,26,101,73,396,hi.po,,hi,,hindi,,,hi

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ta.po,43,280,251,4,15,26,101,73,396,ta.po,,ta,,tamil,,,ta

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fi.po,62,264,200,0,0,11,132,73,396,fi.po,,fi,,finnish,,,fi

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,5,5,0,0,72,391,73,396,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,1,5,5,0,0,72,391,73,396,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pa.po,43,280,334,4,15,26,101,73,396,pa.po,,pa,,punjabi,,,pa

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/nb.po,1,5,6,0,0,72,391,73,396,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fr.po,73,396,475,0,0,0,0,73,396,fr.po,,fr,,french,,,fr

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/fa.po,1,5,5,0,0,72,391,73,396,fa.po,,fa,,persian,,,fa

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/mr.po,73,396,365,0,0,0,0,73,396,mr.po,,mr,,marathi,,,mr

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/bs.po,4,9,8,0,0,69,387,73,396,bs.po,,bs,,bosnian,,,bs

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/km.po,55,342,148,4,15,14,39,73,396,km.po,,km,,khmer,,,km

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pl.po,73,396,399,0,0,0,0,73,396,pl.po,,pl,,polish,,,pl

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/gu.po,44,296,320,4,15,25,85,73,396,gu.po,,gu,,gujarati,,,gu

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/or.po,43,280,273,4,15,26,101,73,396,or.po,,or,,odia,,,or

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/uk.po,73,396,416,0,0,0,0,73,396,uk.po,,uk,,ukrainian,,,uk

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/hu.po,73,396,356,0,0,0,0,73,396,hu.po,,hu,,hungarian,,,hu

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/sq.po,73,396,501,0,0,0,0,73,396,sq.po,,sq,,albanian,,,sq

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/pt.po,2,6,8,0,0,71,390,73,396,pt.po,,pt,,portuguese,,,pt

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ml.po,43,280,217,4,15,26,101,73,396,ml.po,,ml,,malayalam,,,ml

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/ast.po,2,2,2,0,0,71,394,73,396,ast.po,,ast,,asturian,,,ast

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/et.po,7,7,7,0,0,66,389,73,396,et.po,,et,,estonian,,,et

+ gnome-abrt-1.2.7-2.fc30.src.rpm.stats.csv,po/te.po,44,296,246,4,15,25,85,73,396,te.po,,te,,telugu,,,te

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,16,31,18,0,0,0,0,16,31,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,18,30,19,0,0,0,0,18,30,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,16,31,16,0,0,0,0,16,31,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,18,30,32,0,0,0,0,18,30,xh.po,,xh,,xhosa,,,xh

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,18,29,48,0,0,0,0,18,29,vi.po,,vi,,vietnamese,,,vi

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,18,24,28,0,0,0,0,18,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,7,14,11,0,0,2,4,9,18,uz.po,,uz,,uzbek,,,uz

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,18,29,27,0,0,0,0,18,29,uk.po,,uk,,ukrainian,,,uk

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,18,24,30,0,0,0,0,18,24,ug.po,,ug,,uyghur,,,ug

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,16,31,33,0,0,0,0,16,31,tr.po,,tr,,turkish,,,tr

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,18,24,20,0,0,0,0,18,24,th.po,,th,,thai,,,th

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,18,29,28,0,0,0,0,18,29,tg.po,,tg,,tajik,,,tg

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,18,30,29,0,0,0,0,18,30,te.po,,te,,telugu,,,te

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,18,30,27,0,0,0,0,18,30,ta.po,,ta,,tamil,,,ta

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,16,31,31,0,0,0,0,16,31,sv.po,,sv,,swedish,,,sv

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,16,31,33,0,0,0,0,16,31,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,16,31,33,0,0,0,0,16,31,sr.po,,sr,,serbian,,,sr

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,17,23,24,0,0,0,0,17,23,sq.po,,sq,,albanian,,,sq

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,15,26,27,0,0,0,0,15,26,sl.po,,sl,,slovenian,,,sl

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,16,31,35,0,0,0,0,16,31,sk.po,,sk,,slovak,,,sk

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,9,18,19,0,0,0,0,9,18,si.po,,si,,sinhala,,,si

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,0,0,10,35,10,35,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,16,31,31,0,0,0,0,16,31,ru.po,,ru,,russian,,,ru

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,16,31,38,0,0,0,0,16,31,ro.po,,ro,,romanian,,,ro

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,16,31,41,0,0,0,0,16,31,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,18,29,34,0,0,0,0,18,29,pt.po,,pt,,portuguese,,,pt

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,9,18,25,0,0,0,0,9,18,ps.po,,ps,,pashto,,,ps

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,15,26,27,0,0,0,0,15,26,pl.po,,pl,,polish,,,pl

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,18,29,37,0,0,0,0,18,29,pa.po,,pa,,punjabi,,,pa

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,18,30,33,0,0,0,0,18,30,or.po,,or,,odia,,,or

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,16,31,36,0,0,0,0,16,31,oc.po,,oc,,occitan,,,oc

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,17,23,21,0,0,0,0,17,23,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,16,31,30,0,0,0,0,16,31,nl.po,,nl,,dutch,,,nl

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,18,29,29,0,0,0,0,18,29,ne.po,,ne,,nepali,,,ne

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,17,23,22,0,0,0,0,17,23,nds.po,,nds,,low german,,,nds

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,18,29,24,0,0,0,0,18,29,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,15,20,23,0,0,2,3,17,23,ms.po,,ms,,malay,,,ms

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,18,30,28,0,0,0,0,18,30,mr.po,,mr,,marathi,,,mr

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,17,23,23,0,0,0,0,17,23,mn.po,,mn,,mongolian,,,mn

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,16,31,30,0,0,0,0,16,31,ml.po,,ml,,malayalam,,,ml

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,17,23,21,0,0,0,0,17,23,mk.po,,mk,,macedonian,,,mk

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,17,23,22,0,0,0,0,17,23,mg.po,,mg,,malagasy,,,mg

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,8,16,18,1,2,0,0,9,18,mai.po,,mai,,maithili,,,mai

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,16,31,31,0,0,0,0,16,31,lv.po,,lv,,latvian,,,lv

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,15,26,25,0,0,0,0,15,26,lt.po,,lt,,lithuanian,,,lt

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,16,22,21,1,1,1,1,18,24,ky.po,,ky,,kyrgyz,,,ky

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,18,24,24,0,0,0,0,18,24,ku.po,,ku,,kurdish,,,ku

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,16,31,33,0,0,0,0,16,31,ko.po,,ko,,korean,,,ko

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,18,30,28,0,0,0,0,18,30,kn.po,,kn,,kannada,,,kn

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,18,30,21,0,0,0,0,18,30,km.po,,km,,khmer,,,km

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,15,26,27,0,0,0,0,15,26,kk.po,,kk,,kazakh,,,kk

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,9,18,18,0,0,0,0,9,18,ka.po,,ka,,georgian,,,ka

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,18,30,20,0,0,0,0,18,30,ja.po,,ja,,japanese,,,ja

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,16,31,33,0,0,0,0,16,31,it.po,,it,,italian,,,it

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,16,31,29,0,0,0,0,16,31,is.po,,is,,icelandic,,,is

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,15,26,31,0,0,0,0,15,26,id.po,,id,,indonesian,,,id

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,17,23,22,0,0,0,0,17,23,hy.po,,hy,,armenian,,,hy

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,15,26,25,0,0,0,0,15,26,hu.po,,hu,,hungarian,,,hu

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,16,31,35,0,0,0,0,16,31,hr.po,,hr,,croatian,,,hr

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,18,30,33,0,0,0,0,18,30,hi.po,,hi,,hindi,,,hi

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,18,29,34,0,0,0,0,18,29,he.po,,he,,hebrew,,,he

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,18,30,30,0,0,0,0,18,30,gu.po,,gu,,gujarati,,,gu

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,16,31,37,0,0,0,0,16,31,gl.po,,gl,,galician,,,gl

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,18,29,28,0,0,0,0,18,29,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,18,30,31,0,0,0,0,18,30,ga.po,,ga,,irish,,,ga

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,17,23,21,0,0,0,0,17,23,fy.po,,fy,,western frisian,,,fy

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,15,26,33,0,0,0,0,15,26,fur.po,,fur,,friulian,,,fur

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,15,26,34,0,0,0,0,15,26,fr.po,,fr,,french,,,fr

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,16,31,28,0,0,0,0,16,31,fi.po,,fi,,finnish,,,fi

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,18,29,29,0,0,0,0,18,29,fa.po,,fa,,persian,,,fa

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,18,29,32,0,0,0,0,18,29,eu.po,,eu,,basque,,,eu

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,16,31,29,0,0,0,0,16,31,et.po,,et,,estonian,,,et

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,15,26,32,0,0,0,0,15,26,es.po,,es,,spanish,,,es

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,16,31,32,0,0,0,0,16,31,eo.po,,eo,,esperanto,,,eo

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,16,31,31,0,0,0,0,16,31,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,9,18,19,0,0,0,0,9,18,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,17,23,23,0,0,0,0,17,23,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,16,31,28,0,0,0,0,16,31,el.po,,el,,greek,,,el

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,9,18,11,0,0,0,0,9,18,dz.po,,dz,,dzongkha,,,dz

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,16,31,28,0,0,0,0,16,31,de.po,,de,,german,,,de

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,16,31,29,0,0,0,0,16,31,da.po,,da,,danish,,,da

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,17,23,29,0,0,0,0,17,23,cy.po,,cy,,welsh,,,cy

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,15,26,28,0,0,0,0,15,26,cs.po,,cs,,czech,,,cs

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,18,29,37,0,0,0,0,18,29,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,16,31,38,0,0,0,0,16,31,ca.po,,ca,,catalan,,,ca

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,18,30,29,0,0,0,0,18,30,bs.po,,bs,,bosnian,,,bs

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,17,23,31,0,0,0,0,17,23,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,17,29,38,0,0,0,0,17,29,bn.po,,bn,,bangla,,,bn

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,18,29,31,0,0,0,0,18,29,bg.po,,bg,,bulgarian,,,bg

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,16,22,20,0,0,1,1,17,23,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,18,29,26,0,0,0,0,18,29,be.po,,be,,belarusian,,,be

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,17,23,22,0,0,0,0,17,23,ast.po,,ast,,asturian,,,ast

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,18,30,29,0,0,0,0,18,30,as.po,,as,,assamese,,,as

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,18,30,29,0,0,0,0,18,30,ar.po,,ar,,arabic,,,ar

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,18,30,31,0,0,0,0,18,30,an.po,,an,,aragonese,,,an

+ gnome-backgrounds-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,13,22,20,0,0,3,9,16,31,af.po,,af,,afrikaans,,,af

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,192,663,574,0,0,0,0,192,663,zu.po,,zu,,zulu,,,zu

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,111,373,139,0,0,0,0,111,373,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,102,308,132,0,0,0,0,102,308,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,111,373,139,0,0,0,0,111,373,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,174,596,511,1,3,0,0,175,599,xh.po,,xh,,xhosa,,,xh

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,111,373,504,0,0,0,0,111,373,vi.po,,vi,,vietnamese,,,vi

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,110,372,334,0,0,0,0,110,372,uk.po,,uk,,ukrainian,,,uk

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,95,303,266,0,0,0,0,95,303,ug.po,,ug,,uyghur,,,ug

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,111,373,324,0,0,0,0,111,373,tr.po,,tr,,turkish,,,tr

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,110,372,169,0,0,0,0,110,372,th.po,,th,,thai,,,th

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,102,309,340,0,0,0,0,102,309,tg.po,,tg,,tajik,,,tg

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,102,309,286,0,0,0,0,102,309,te.po,,te,,telugu,,,te

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,102,309,276,0,0,0,0,102,309,ta.po,,ta,,tamil,,,ta

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,111,373,337,0,0,0,0,111,373,sv.po,,sv,,swedish,,,sv

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,111,373,392,0,0,0,0,111,373,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,111,373,392,0,0,0,0,111,373,sr.po,,sr,,serbian,,,sr

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,111,373,391,0,0,0,0,111,373,sl.po,,sl,,slovenian,,,sl

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,111,373,389,0,0,0,0,111,373,sk.po,,sk,,slovak,,,sk

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,111,373,340,0,0,0,0,111,373,ru.po,,ru,,russian,,,ru

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,111,373,382,0,0,0,0,111,373,ro.po,,ro,,romanian,,,ro

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,111,373,413,0,0,0,0,111,373,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,110,372,383,0,0,0,0,110,372,pt.po,,pt,,portuguese,,,pt

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,111,373,370,0,0,0,0,111,373,pl.po,,pl,,polish,,,pl

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,111,373,419,0,0,0,0,111,373,pa.po,,pa,,punjabi,,,pa

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,102,309,333,0,0,0,0,102,309,or.po,,or,,odia,,,or

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,106,349,385,0,0,4,23,110,372,oc.po,,oc,,occitan,,,oc

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,177,646,620,0,0,4,18,181,664,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,111,373,355,0,0,0,0,111,373,nl.po,,nl,,dutch,,,nl

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,13,15,18,67,144,22,150,102,309,ne.po,,ne,,nepali,,,ne

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,111,373,362,0,0,0,0,111,373,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,160,519,486,2,9,29,169,191,697,ms.po,,ms,,malay,,,ms

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,102,309,309,0,0,0,0,102,309,mr.po,,mr,,marathi,,,mr

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,87,230,231,0,0,68,284,155,514,mn.po,,mn,,mongolian,,,mn

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,111,373,320,0,0,0,0,111,373,ml.po,,ml,,malayalam,,,ml

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,175,599,654,0,0,0,0,175,599,mk.po,,mk,,macedonian,,,mk

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,37,63,75,0,0,120,530,157,593,mai.po,,mai,,maithili,,,mai

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,111,373,343,0,0,0,0,111,373,lv.po,,lv,,latvian,,,lv

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,111,373,329,0,0,0,0,111,373,lt.po,,lt,,lithuanian,,,lt

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,188,650,720,0,0,4,12,192,662,ku.po,,ku,,kurdish,,,ku

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,111,373,289,0,0,0,0,111,373,ko.po,,ko,,korean,,,ko

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,102,309,296,0,0,0,0,102,309,kn.po,,kn,,kannada,,,kn

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,144,460,257,0,0,0,0,144,460,km.po,,km,,khmer,,,km

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,111,373,329,0,0,0,0,111,373,kk.po,,kk,,kazakh,,,kk

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,118,321,284,0,0,37,193,155,514,ka.po,,ka,,georgian,,,ka

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,111,373,153,0,0,0,0,111,373,ja.po,,ja,,japanese,,,ja

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,111,373,358,0,0,0,0,111,373,it.po,,it,,italian,,,it

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,111,373,359,0,0,0,0,111,373,is.po,,is,,icelandic,,,is

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,111,373,334,0,0,0,0,111,373,id.po,,id,,indonesian,,,id

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,181,664,631,0,0,0,0,181,664,hy.po,,hy,,armenian,,,hy

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,111,373,325,0,0,0,0,111,373,hu.po,,hu,,hungarian,,,hu

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,111,373,357,0,0,0,0,111,373,hr.po,,hr,,croatian,,,hr

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,102,309,361,0,0,0,0,102,309,hi.po,,hi,,hindi,,,hi

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,110,372,345,0,0,0,0,110,372,he.po,,he,,hebrew,,,he

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,102,309,355,0,0,0,0,102,309,gu.po,,gu,,gujarati,,,gu

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,111,373,388,0,0,0,0,111,373,gl.po,,gl,,galician,,,gl

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,111,373,493,0,0,0,0,111,373,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,70,156,204,0,0,26,154,96,310,ga.po,,ga,,irish,,,ga

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,13,15,20,0,0,142,499,155,514,fy.po,,fy,,western frisian,,,fy

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,111,373,407,0,0,0,0,111,373,fur.po,,fur,,friulian,,,fur

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,111,373,423,0,0,0,0,111,373,fr.po,,fr,,french,,,fr

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,115,398,302,0,0,0,0,115,398,fi.po,,fi,,finnish,,,fi

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,111,373,411,0,0,0,0,111,373,fa.po,,fa,,persian,,,fa

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,111,373,315,0,0,0,0,111,373,eu.po,,eu,,basque,,,eu

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,96,310,257,0,0,0,0,96,310,et.po,,et,,estonian,,,et

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,111,373,396,0,0,0,0,111,373,es.po,,es,,spanish,,,es

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,111,373,359,0,0,0,0,111,373,eo.po,,eo,,esperanto,,,eo

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,110,372,372,0,0,0,0,110,372,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,121,419,419,66,256,0,0,187,675,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,111,373,390,0,0,0,0,111,373,el.po,,el,,greek,,,el

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,111,373,379,0,0,0,0,111,373,de.po,,de,,german,,,de

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,111,373,345,0,0,0,0,111,373,da.po,,da,,danish,,,da

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,111,373,392,0,0,0,0,111,373,cs.po,,cs,,czech,,,cs

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,95,303,272,0,0,0,0,95,303,crh.po,,crh,,crimean turkish,,,crh

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,111,373,428,0,0,0,0,111,373,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,111,373,428,0,0,0,0,111,373,ca.po,,ca,,catalan,,,ca

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,102,309,313,0,0,0,0,102,309,bs.po,,bs,,bosnian,,,bs

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,95,303,350,0,0,0,0,95,303,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,192,662,719,0,0,0,0,192,662,bn.po,,bn,,bangla,,,bn

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,111,373,389,0,0,0,0,111,373,bg.po,,bg,,bulgarian,,,bg

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,111,373,347,0,0,0,0,111,373,be.po,,be,,belarusian,,,be

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,181,664,736,0,0,0,0,181,664,ast.po,,ast,,asturian,,,ast

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,101,308,336,0,0,0,0,101,308,as.po,,as,,assamese,,,as

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,111,373,399,0,0,0,0,111,373,ar.po,,ar,,arabic,,,ar

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,110,372,407,0,0,0,0,110,372,an.po,,an,,aragonese,,,an

+ gnome-bluetooth-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,185,642,645,0,0,7,20,192,662,af.po,,af,,afrikaans,,,af

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/sv/sv.po,230,2786,2603,0,0,0,0,230,2786,sv.po,,sv,,swedish,,,sv

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,230,2786,3059,0,0,0,0,230,2786,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/pl/pl.po,230,2786,2262,0,0,0,0,230,2786,pl.po,,pl,,polish,,,pl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/ko/ko.po,230,2786,1982,0,0,0,0,230,2786,ko.po,,ko,,korean,,,ko

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/it/it.po,213,2575,2709,0,0,0,0,213,2575,it.po,,it,,italian,,,it

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/hu/hu.po,230,2786,2465,0,0,0,0,230,2786,hu.po,,hu,,hungarian,,,hu

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/gl/gl.po,121,768,803,0,0,103,1971,224,2739,gl.po,,gl,,galician,,,gl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/fr/fr.po,224,2739,2990,0,0,0,0,224,2739,fr.po,,fr,,french,,,fr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/es/es.po,213,2575,2875,0,0,0,0,213,2575,es.po,,es,,spanish,,,es

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/el/el.po,208,2323,2501,0,0,0,0,208,2323,el.po,,el,,greek,,,el

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/de/de.po,230,2786,2821,0,0,0,0,230,2786,de.po,,de,,german,,,de

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,help/cs/cs.po,224,2739,2490,0,0,0,0,224,2739,cs.po,,cs,,czech,,,cs

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,295,1289,461,0,0,0,0,295,1289,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_hk.po,207,946,333,0,0,0,0,207,946,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,289,1224,520,0,0,0,0,289,1224,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/vi.po,154,624,800,0,0,9,97,163,721,vi.po,,vi,,vietnamese,,,vi

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/uk.po,262,1113,1049,0,0,0,0,262,1113,uk.po,,uk,,ukrainian,,,uk

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ug.po,167,750,718,0,0,0,0,167,750,ug.po,,ug,,uyghur,,,ug

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/tr.po,296,1290,1127,0,0,0,0,296,1290,tr.po,,tr,,turkish,,,tr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/th.po,123,532,216,0,0,0,0,123,532,th.po,,th,,thai,,,th

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/tg.po,175,572,651,19,326,0,0,194,898,tg.po,,tg,,tajik,,,tg

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/te.po,208,950,834,0,0,0,0,208,950,te.po,,te,,telugu,,,te

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ta.po,208,950,891,0,0,0,0,208,950,ta.po,,ta,,tamil,,,ta

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sv.po,298,1296,1267,0,0,0,0,298,1296,sv.po,,sv,,swedish,,,sv

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,283,1207,1324,0,0,0,0,283,1207,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sr.po,298,1296,1416,0,0,0,0,298,1296,sr.po,,sr,,serbian,,,sr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sl.po,298,1296,1368,0,0,0,0,298,1296,sl.po,,sl,,slovenian,,,sl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/sk.po,294,1282,1364,0,0,0,0,294,1282,sk.po,,sk,,slovak,,,sk

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ru.po,298,1296,1272,0,0,0,0,298,1296,ru.po,,ru,,russian,,,ru

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ro.po,298,1296,1500,0,0,0,0,298,1296,ro.po,,ro,,romanian,,,ro

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,298,1296,1487,0,0,0,0,298,1296,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pt.po,260,1102,1293,0,0,0,0,260,1102,pt.po,,pt,,portuguese,,,pt

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pl.po,298,1296,1348,0,0,0,0,298,1296,pl.po,,pl,,polish,,,pl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/pa.po,208,950,1149,0,0,0,0,208,950,pa.po,,pa,,punjabi,,,pa

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/or.po,208,950,1036,0,0,0,0,208,950,or.po,,or,,odia,,,or

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/oc.po,253,1048,1297,2,8,7,21,262,1077,oc.po,,oc,,occitan,,,oc

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/nl.po,296,1290,1335,0,0,0,0,296,1290,nl.po,,nl,,dutch,,,nl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ne.po,274,1160,1153,0,0,0,0,274,1160,ne.po,,ne,,nepali,,,ne

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/nb.po,293,1269,1295,0,0,1,13,294,1282,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/mr.po,208,950,929,0,0,0,0,208,950,mr.po,,mr,,marathi,,,mr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ml.po,281,1171,1072,0,0,9,89,290,1260,ml.po,,ml,,malayalam,,,ml

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/lv.po,295,1289,1207,0,0,0,0,295,1289,lv.po,,lv,,latvian,,,lv

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/lt.po,296,1290,1178,0,0,0,0,296,1290,lt.po,,lt,,lithuanian,,,lt

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ko.po,296,1290,1071,0,0,0,0,296,1290,ko.po,,ko,,korean,,,ko

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/kn.po,208,950,872,0,0,0,0,208,950,kn.po,,kn,,kannada,,,kn

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/km.po,193,885,398,0,0,0,0,193,885,km.po,,km,,khmer,,,km

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/kk.po,295,1289,1162,0,0,0,0,295,1289,kk.po,,kk,,kazakh,,,kk

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ja.po,260,1072,456,0,0,0,0,260,1072,ja.po,,ja,,japanese,,,ja

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/it.po,298,1296,1369,0,0,0,0,298,1296,it.po,,it,,italian,,,it

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/id.po,298,1296,1315,0,0,0,0,298,1296,id.po,,id,,indonesian,,,id

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hu.po,296,1290,1247,0,0,0,0,296,1290,hu.po,,hu,,hungarian,,,hu

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hr.po,296,1294,1273,0,0,1,1,297,1295,hr.po,,hr,,croatian,,,hr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/hi.po,208,950,1187,0,0,0,0,208,950,hi.po,,hi,,hindi,,,hi

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/he.po,260,1102,1072,0,0,0,0,260,1102,he.po,,he,,hebrew,,,he

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/gu.po,208,950,1058,0,0,0,0,208,950,gu.po,,gu,,gujarati,,,gu

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/gl.po,296,1290,1477,0,0,0,0,296,1290,gl.po,,gl,,galician,,,gl

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ga.po,100,207,256,0,0,85,649,185,856,ga.po,,ga,,irish,,,ga

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fur.po,295,1289,1514,0,0,0,0,295,1289,fur.po,,fur,,friulian,,,fur

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fr.po,296,1290,1628,0,0,0,0,296,1290,fr.po,,fr,,french,,,fr

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fi.po,290,1201,962,0,0,8,95,298,1296,fi.po,,fi,,finnish,,,fi

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/fa.po,185,856,962,0,0,0,0,185,856,fa.po,,fa,,persian,,,fa

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/eu.po,295,1289,1167,0,0,0,0,295,1289,eu.po,,eu,,basque,,,eu

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/et.po,185,856,713,0,0,0,0,185,856,et.po,,et,,estonian,,,et

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/es.po,298,1296,1491,0,0,0,0,298,1296,es.po,,es,,spanish,,,es

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/eo.po,281,1170,1081,4,23,5,69,290,1262,eo.po,,eo,,esperanto,,,eo

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,282,1203,1206,0,0,0,0,282,1203,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/el.po,295,1289,1463,0,0,0,0,295,1289,el.po,,el,,greek,,,el

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/de.po,298,1296,1338,0,0,0,0,298,1296,de.po,,de,,german,,,de

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/da.po,296,1290,1268,0,0,0,0,296,1290,da.po,,da,,danish,,,da

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/cs.po,294,1284,1313,0,0,0,0,294,1284,cs.po,,cs,,czech,,,cs

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,273,1147,1453,0,0,0,0,273,1147,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ca.po,295,1289,1618,0,0,0,0,295,1289,ca.po,,ca,,catalan,,,ca

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bs.po,217,968,969,0,0,0,0,217,968,bs.po,,bs,,bosnian,,,bs

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bn_in.po,169,753,853,0,0,0,0,169,753,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/bg.po,153,677,756,0,0,0,0,153,677,bg.po,,bg,,bulgarian,,,bg

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/be.po,294,1282,1284,0,0,0,0,294,1282,be.po,,be,,belarusian,,,be

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/as.po,208,950,1050,0,0,0,0,208,950,as.po,,as,,assamese,,,as

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/ar.po,239,1016,1045,0,0,0,0,239,1016,ar.po,,ar,,arabic,,,ar

+ gnome-boxes-3.32.0.2-2.fc30.src.rpm.stats.csv,po/af.po,295,1289,1387,0,0,0,0,295,1289,af.po,,af,,afrikaans,,,af

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,238,1579,450,0,0,0,0,238,1579,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,238,1579,450,0,0,0,0,238,1579,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,238,1579,425,0,0,0,0,238,1579,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/te/te.po,99,110,110,0,0,140,1509,239,1619,te.po,,te,,telugu,,,te

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,277,1950,1733,0,0,0,0,277,1950,sv.po,,sv,,swedish,,,sv

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/sl/sl.po,238,1616,1394,0,0,0,0,238,1616,sl.po,,sl,,slovenian,,,sl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ru/ru.po,209,1187,1069,4,25,25,404,238,1616,ru.po,,ru,,russian,,,ru

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,220,1241,1190,3,49,15,326,238,1616,ro.po,,ro,,romanian,,,ro

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,277,1950,2144,0,0,0,0,277,1950,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pt/pt.po,250,1750,1789,3,32,12,104,265,1886,pt.po,,pt,,portuguese,,,pt

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,277,1950,1665,0,0,0,0,277,1950,pl.po,,pl,,polish,,,pl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/oc/oc.po,259,303,325,0,0,626,6188,885,6491,oc.po,,oc,,occitan,,,oc

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/lv/lv.po,265,1886,1501,0,0,0,0,265,1886,lv.po,,lv,,latvian,,,lv

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,277,1950,1416,0,0,0,0,277,1950,ko.po,,ko,,korean,,,ko

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ja/ja.po,225,1289,427,9,265,4,62,238,1616,ja.po,,ja,,japanese,,,ja

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/it/it.po,188,1017,1096,8,239,40,319,236,1575,it.po,,it,,italian,,,it

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,277,1950,1697,0,0,0,0,277,1950,hu.po,,hu,,hungarian,,,hu

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/gl/gl.po,247,1727,1753,0,0,1,37,248,1764,gl.po,,gl,,galician,,,gl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,277,1950,2147,0,0,0,0,277,1950,fr.po,,fr,,french,,,fr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/fi/fi.po,203,1082,826,22,225,40,579,265,1886,fi.po,,fi,,finnish,,,fi

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/eu/eu.po,831,6011,4612,0,0,0,0,831,6011,eu.po,,eu,,basque,,,eu

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,277,1950,2084,0,0,0,0,277,1950,es.po,,es,,spanish,,,es

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,251,1777,1922,0,0,0,0,251,1777,el.po,,el,,greek,,,el

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,277,1950,1879,0,0,0,0,277,1950,de.po,,de,,german,,,de

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,277,1950,1745,0,0,0,0,277,1950,cs.po,,cs,,czech,,,cs

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/ca/ca.po,216,1392,1547,14,190,35,304,265,1886,ca.po,,ca,,catalan,,,ca

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,help/bg/bg.po,603,5554,5201,0,0,209,227,812,5781,bg.po,,bg,,bulgarian,,,bg

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,578,1594,762,0,0,0,0,578,1594,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,431,1341,574,0,0,0,0,431,1341,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,579,1596,770,0,0,0,0,579,1596,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,362,851,840,13,35,3,29,378,915,xh.po,,xh,,xhosa,,,xh

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,590,1632,2264,0,0,0,0,590,1632,vi.po,,vi,,vietnamese,,,vi

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,573,1583,1470,0,0,0,0,573,1583,uk.po,,uk,,ukrainian,,,uk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,334,1078,1026,0,0,0,0,334,1078,ug.po,,ug,,uyghur,,,ug

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,590,1632,1495,0,0,0,0,590,1632,tr.po,,tr,,turkish,,,tr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,164,294,281,79,175,135,446,378,915,tk.po,,tk,,turkmen,,,tk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,540,1486,834,0,0,0,0,540,1486,th.po,,th,,thai,,,th

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,535,1464,1464,0,0,0,0,535,1464,tg.po,,tg,,tajik,,,tg

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,428,1337,1171,0,0,0,0,428,1337,te.po,,te,,telugu,,,te

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,428,1337,1281,0,0,0,0,428,1337,ta.po,,ta,,tamil,,,ta

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,590,1632,1521,0,0,0,0,590,1632,sv.po,,sv,,swedish,,,sv

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,579,1596,1520,0,0,0,0,579,1596,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,590,1632,1556,0,0,0,0,590,1632,sr.po,,sr,,serbian,,,sr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,399,1128,1306,0,0,0,0,399,1128,sq.po,,sq,,albanian,,,sq

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,590,1632,1554,0,0,0,0,590,1632,sl.po,,sl,,slovenian,,,sl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,581,1602,1581,0,0,0,0,581,1602,sk.po,,sk,,slovak,,,sk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,379,853,894,0,0,71,839,450,1692,si.po,,si,,sinhala,,,si

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,60,53,61,243,719,75,143,378,915,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,590,1632,1581,0,0,0,0,590,1632,ru.po,,ru,,russian,,,ru

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,590,1632,1771,0,0,0,0,590,1632,ro.po,,ro,,romanian,,,ro

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,590,1632,1926,0,0,0,0,590,1632,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,573,1583,1735,0,0,0,0,573,1583,pt.po,,pt,,portuguese,,,pt

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,590,1632,1578,0,0,0,0,590,1632,pl.po,,pl,,polish,,,pl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,551,1539,1640,0,0,23,45,574,1584,pa.po,,pa,,punjabi,,,pa

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,428,1337,1302,0,0,0,0,428,1337,or.po,,or,,odia,,,or

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,540,1486,1667,0,0,0,0,540,1486,oc.po,,oc,,occitan,,,oc

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,228,770,803,8,14,31,534,267,1318,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,590,1632,1699,0,0,0,0,590,1632,nl.po,,nl,,dutch,,,nl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,205,357,347,116,286,107,694,428,1337,ne.po,,ne,,nepali,,,ne

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,578,1590,1456,0,0,0,0,578,1590,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,160,352,241,0,0,99,789,259,1141,my.po,,my,,burmese,,,my

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,328,768,757,30,57,20,90,378,915,ms.po,,ms,,malay,,,ms

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,428,1337,1299,0,0,0,0,428,1337,mr.po,,mr,,marathi,,,mr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,181,392,372,142,368,55,155,378,915,mn.po,,mn,,mongolian,,,mn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,334,1078,854,0,0,0,0,334,1078,ml.po,,ml,,malayalam,,,ml

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,433,1399,1408,0,0,0,0,433,1399,mk.po,,mk,,macedonian,,,mk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,349,992,1083,8,23,0,0,357,1015,mg.po,,mg,,malagasy,,,mg

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,243,536,586,0,0,165,829,408,1365,mai.po,,mai,,maithili,,,mai

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,590,1632,1512,0,0,0,0,590,1632,lv.po,,lv,,latvian,,,lv

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,590,1632,1485,0,0,0,0,590,1632,lt.po,,lt,,lithuanian,,,lt

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,98,117,123,4,4,247,774,349,895,ku.po,,ku,,kurdish,,,ku

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,590,1632,1384,0,0,0,0,590,1632,ko.po,,ko,,korean,,,ko

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,428,1337,1181,0,0,0,0,428,1337,kn.po,,kn,,kannada,,,kn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,429,1333,750,0,0,2,8,431,1341,km.po,,km,,khmer,,,km

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,321,566,568,0,0,269,1066,590,1632,kk.po,,kk,,kazakh,,,kk

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,365,1044,948,0,0,0,0,365,1044,ka.po,,ka,,georgian,,,ka

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,567,1564,750,0,0,23,68,590,1632,ja.po,,ja,,japanese,,,ja

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,590,1632,1782,0,0,0,0,590,1632,it.po,,it,,italian,,,it

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,590,1632,1623,0,0,0,0,590,1632,id.po,,id,,indonesian,,,id

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,119,361,351,0,0,137,767,256,1128,hy.po,,hy,,armenian,,,hy

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,590,1632,1525,0,0,0,0,590,1632,hu.po,,hu,,hungarian,,,hu

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,589,1629,1524,0,0,0,0,589,1629,hr.po,,hr,,croatian,,,hr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,428,1337,1519,0,0,0,0,428,1337,hi.po,,hi,,hindi,,,hi

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,513,1451,1481,0,0,27,35,540,1486,he.po,,he,,hebrew,,,he

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,428,1337,1332,0,0,0,0,428,1337,gu.po,,gu,,gujarati,,,gu

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,590,1632,1855,0,0,0,0,590,1632,gl.po,,gl,,galician,,,gl

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,574,1584,1836,0,0,0,0,574,1584,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,217,351,419,9,23,108,704,334,1078,ga.po,,ga,,irish,,,ga

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,590,1632,1829,0,0,0,0,590,1632,fur.po,,fur,,friulian,,,fur

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,590,1632,1899,0,0,0,0,590,1632,fr.po,,fr,,french,,,fr

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,590,1632,1354,0,0,0,0,590,1632,fi.po,,fi,,finnish,,,fi

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,574,1584,1656,0,0,0,0,574,1584,fa.po,,fa,,persian,,,fa

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,590,1632,1463,0,0,0,0,590,1632,eu.po,,eu,,basque,,,eu

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,334,1078,874,0,0,0,0,334,1078,et.po,,et,,estonian,,,et

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,590,1632,1839,0,0,0,0,590,1632,es.po,,es,,spanish,,,es

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,584,1601,1581,1,4,1,3,586,1608,eo.po,,eo,,esperanto,,,eo

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,540,1486,1504,0,0,0,0,540,1486,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,433,1399,1402,0,0,0,0,433,1399,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,254,1172,1173,6,129,0,0,260,1301,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,556,1468,1587,25,134,0,0,581,1602,el.po,,el,,greek,,,el

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,410,1175,812,0,0,0,0,410,1175,dz.po,,dz,,dzongkha,,,dz

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,590,1632,1574,0,0,0,0,590,1632,de.po,,de,,german,,,de

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,589,1629,1529,0,0,0,0,589,1629,da.po,,da,,danish,,,da

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,349,895,977,0,0,0,0,349,895,cy.po,,cy,,welsh,,,cy

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,590,1632,1626,0,0,0,0,590,1632,cs.po,,cs,,czech,,,cs

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,574,1584,1797,0,0,0,0,574,1584,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,590,1632,1849,0,0,0,0,590,1632,ca.po,,ca,,catalan,,,ca

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,535,1464,1357,0,0,0,0,535,1464,bs.po,,bs,,bosnian,,,bs

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,428,1337,1332,0,0,0,0,428,1337,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,267,1327,1384,0,0,0,0,267,1327,bn.po,,bn,,bangla,,,bn

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,574,1584,1721,0,0,0,0,574,1584,bg.po,,bg,,bulgarian,,,bg

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,277,564,566,0,0,133,611,410,1175,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,378,855,909,0,0,50,364,428,1219,be.po,,be,,belarusian,,,be

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,181,392,369,142,368,55,155,378,915,az.po,,az,,azerbaijani,,,az

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,433,1399,1502,0,0,0,0,433,1399,ast.po,,ast,,asturian,,,ast

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,428,1337,1364,0,0,0,0,428,1337,as.po,,as,,assamese,,,as

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,257,545,557,65,160,251,876,573,1581,ar.po,,ar,,arabic,,,ar

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,83,78,80,49,55,246,782,378,915,am.po,,am,,amharic,,,am

+ gnome-calculator-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,350,1044,1011,37,159,41,176,428,1379,af.po,,af,,afrikaans,,,af

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,218,668,268,0,0,0,0,218,668,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,58,122,81,2,6,0,0,60,128,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,220,661,347,0,0,0,0,220,661,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,139,432,420,0,0,0,0,139,432,uk.po,,uk,,ukrainian,,,uk

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,218,668,595,0,0,0,0,218,668,tr.po,,tr,,turkish,,,tr

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,138,424,202,0,0,0,0,138,424,th.po,,th,,thai,,,th

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,105,342,367,0,0,0,0,105,342,tg.po,,tg,,tajik,,,tg

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,218,668,657,0,0,0,0,218,668,sv.po,,sv,,swedish,,,sv

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,220,661,697,0,0,0,0,220,661,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,218,668,705,0,0,0,0,218,668,sr.po,,sr,,serbian,,,sr

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,218,668,693,0,0,0,0,218,668,sl.po,,sl,,slovenian,,,sl

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,220,669,670,0,0,0,0,220,669,sk.po,,sk,,slovak,,,sk

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,218,668,697,0,0,0,0,218,668,ru.po,,ru,,russian,,,ru

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,218,668,727,0,0,0,0,218,668,ro.po,,ro,,romanian,,,ro

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,218,668,753,0,0,0,0,218,668,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,138,424,446,0,0,0,0,138,424,pt.po,,pt,,portuguese,,,pt

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,218,668,632,0,0,0,0,218,668,pl.po,,pl,,polish,,,pl

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,66,222,254,0,0,0,0,66,222,pa.po,,pa,,punjabi,,,pa

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,217,645,753,1,3,2,13,220,661,oc.po,,oc,,occitan,,,oc

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,218,668,669,0,0,0,0,218,668,nl.po,,nl,,dutch,,,nl

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,214,641,623,0,0,0,0,214,641,ne.po,,ne,,nepali,,,ne

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,214,641,624,0,0,0,0,214,641,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,220,669,598,0,0,0,0,220,669,ml.po,,ml,,malayalam,,,ml

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,218,668,636,0,0,0,0,218,668,lv.po,,lv,,latvian,,,lv

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,218,668,621,0,0,0,0,218,668,lt.po,,lt,,lithuanian,,,lt

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,218,668,539,0,0,0,0,218,668,ko.po,,ko,,korean,,,ko

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,218,668,611,0,0,0,0,218,668,kk.po,,kk,,kazakh,,,kk

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,218,668,267,0,0,0,0,218,668,ja.po,,ja,,japanese,,,ja

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,218,668,709,0,0,0,0,218,668,it.po,,it,,italian,,,it

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,220,669,657,0,0,0,0,220,669,is.po,,is,,icelandic,,,is

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,218,668,671,0,0,0,0,218,668,id.po,,id,,indonesian,,,id

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,218,668,632,0,0,0,0,218,668,hu.po,,hu,,hungarian,,,hu

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,220,669,667,0,0,0,0,220,669,hr.po,,hr,,croatian,,,hr

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,138,424,440,0,0,0,0,138,424,he.po,,he,,hebrew,,,he

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,218,668,737,0,0,0,0,218,668,gl.po,,gl,,galician,,,gl

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,220,661,881,0,0,0,0,220,661,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,80,173,211,0,0,23,152,103,325,ga.po,,ga,,irish,,,ga

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,218,668,752,0,0,0,0,218,668,fur.po,,fur,,friulian,,,fur

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,218,668,760,0,0,0,0,218,668,fr.po,,fr,,french,,,fr

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,218,668,522,0,0,0,0,218,668,fi.po,,fi,,finnish,,,fi

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,214,641,663,0,0,0,0,214,641,fa.po,,fa,,persian,,,fa

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,218,668,596,0,0,0,0,218,668,eu.po,,eu,,basque,,,eu

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,218,668,571,0,0,0,0,218,668,et.po,,et,,estonian,,,et

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,218,668,778,0,0,0,0,218,668,es.po,,es,,spanish,,,es

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,220,669,671,0,0,0,0,220,669,eo.po,,eo,,esperanto,,,eo

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,220,669,685,0,0,0,0,220,669,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,218,668,754,0,0,0,0,218,668,el.po,,el,,greek,,,el

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,218,668,661,0,0,0,0,218,668,de.po,,de,,german,,,de

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,218,668,635,0,0,0,0,218,668,da.po,,da,,danish,,,da

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,218,668,648,0,0,0,0,218,668,cs.po,,cs,,czech,,,cs

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,213,638,746,1,3,0,0,214,641,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,218,668,789,0,0,0,0,218,668,ca.po,,ca,,catalan,,,ca

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,67,224,219,0,0,0,0,67,224,bs.po,,bs,,bosnian,,,bs

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,220,669,664,0,0,0,0,220,669,be.po,,be,,belarusian,,,be

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,219,649,677,0,0,1,12,220,661,ar.po,,ar,,arabic,,,ar

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,67,224,249,0,0,0,0,67,224,an.po,,an,,aragonese,,,an

+ gnome-calendar-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,218,668,669,0,0,0,0,218,668,af.po,,af,,afrikaans,,,af

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,57,186,71,0,0,0,0,57,186,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,58,186,93,0,0,0,0,58,186,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,47,161,149,0,0,0,0,47,161,uk.po,,uk,,ukrainian,,,uk

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,57,186,178,0,0,0,0,57,186,tr.po,,tr,,turkish,,,tr

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,24,49,64,0,0,23,112,47,161,tg.po,,tg,,tajik,,,tg

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,54,149,138,0,0,3,37,57,186,ta.po,,ta,,tamil,,,ta

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,57,186,189,0,0,0,0,57,186,sv.po,,sv,,swedish,,,sv

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,58,186,204,0,0,0,0,58,186,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,57,186,203,0,0,0,0,57,186,sr.po,,sr,,serbian,,,sr

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,57,186,191,0,0,0,0,57,186,sl.po,,sl,,slovenian,,,sl

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,58,186,191,0,0,0,0,58,186,sk.po,,sk,,slovak,,,sk

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,57,186,180,0,0,0,0,57,186,ru.po,,ru,,russian,,,ru

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,57,186,219,0,0,0,0,57,186,ro.po,,ro,,romanian,,,ro

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,57,186,226,0,0,0,0,57,186,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,48,162,177,0,0,0,0,48,162,pt.po,,pt,,portuguese,,,pt

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,57,186,194,0,0,0,0,57,186,pl.po,,pl,,polish,,,pl

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,35,80,103,0,0,7,66,42,146,pa.po,,pa,,punjabi,,,pa

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,58,186,214,0,0,0,0,58,186,oc.po,,oc,,occitan,,,oc

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,57,186,217,0,0,0,0,57,186,nl.po,,nl,,dutch,,,nl

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,58,186,197,0,0,0,0,58,186,ne.po,,ne,,nepali,,,ne

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,58,186,184,0,0,0,0,58,186,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,58,186,158,0,0,0,0,58,186,ml.po,,ml,,malayalam,,,ml

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,57,186,173,0,0,0,0,57,186,lv.po,,lv,,latvian,,,lv

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,57,186,175,0,0,0,0,57,186,lt.po,,lt,,lithuanian,,,lt

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ln.po,44,155,181,0,0,0,0,44,155,ln.po,,ln,,lingala,,,ln

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,57,186,168,0,0,0,0,57,186,ko.po,,ko,,korean,,,ko

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,57,186,182,0,0,0,0,57,186,kk.po,,kk,,kazakh,,,kk

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,56,185,79,0,0,1,1,57,186,ja.po,,ja,,japanese,,,ja

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,57,186,195,0,0,0,0,57,186,it.po,,it,,italian,,,it

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,58,186,192,0,0,0,0,58,186,is.po,,is,,icelandic,,,is

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,57,186,208,0,0,0,0,57,186,id.po,,id,,indonesian,,,id

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,57,186,181,0,0,0,0,57,186,hu.po,,hu,,hungarian,,,hu

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,57,186,178,0,0,0,0,57,186,hr.po,,hr,,croatian,,,hr

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,47,161,157,0,0,0,0,47,161,he.po,,he,,hebrew,,,he

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,47,161,173,0,0,0,0,47,161,gu.po,,gu,,gujarati,,,gu

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,57,186,212,0,0,0,0,57,186,gl.po,,gl,,galician,,,gl

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,58,186,246,0,0,0,0,58,186,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,57,186,215,0,0,0,0,57,186,fur.po,,fur,,friulian,,,fur

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,57,186,217,0,0,0,0,57,186,fr.po,,fr,,french,,,fr

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,57,186,151,0,0,0,0,57,186,fi.po,,fi,,finnish,,,fi

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,58,186,219,0,0,0,0,58,186,fa.po,,fa,,persian,,,fa

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,57,186,180,0,0,0,0,57,186,eu.po,,eu,,basque,,,eu

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,57,186,217,0,0,0,0,57,186,es.po,,es,,spanish,,,es

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,56,185,178,0,0,0,0,56,185,eo.po,,eo,,esperanto,,,eo

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,58,186,194,0,0,0,0,58,186,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,57,186,207,0,0,0,0,57,186,el.po,,el,,greek,,,el

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,57,186,204,0,0,0,0,57,186,de.po,,de,,german,,,de

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,56,185,191,0,0,0,0,56,185,da.po,,da,,danish,,,da

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,57,186,189,0,0,0,0,57,186,cs.po,,cs,,czech,,,cs

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,58,186,221,0,0,0,0,58,186,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,58,186,221,0,0,0,0,58,186,ca.po,,ca,,catalan,,,ca

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,58,186,179,0,0,0,0,58,186,be.po,,be,,belarusian,,,be

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,57,186,183,0,0,0,0,57,186,ar.po,,ar,,arabic,,,ar

+ gnome-characters-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,57,186,191,0,0,0,0,57,186,af.po,,af,,afrikaans,,,af

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,82,983,765,0,0,0,0,82,983,cs.po,,cs,,czech,,,cs

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,82,983,736,0,0,0,0,82,983,hu.po,,hu,,hungarian,,,hu

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,82,983,621,0,0,0,0,82,983,ko.po,,ko,,korean,,,ko

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,82,983,721,0,0,0,0,82,983,pl.po,,pl,,polish,,,pl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,82,983,994,0,0,0,0,82,983,el.po,,el,,greek,,,el

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,82,983,985,0,0,0,0,82,983,nl.po,,nl,,dutch,,,nl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,82,983,968,0,0,0,0,82,983,de.po,,de,,german,,,de

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,81,978,939,0,0,0,0,81,978,ca.po,,ca,,catalan,,,ca

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,82,983,957,0,0,0,0,82,983,sv.po,,sv,,swedish,,,sv

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,82,983,1061,0,0,0,0,82,983,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,82,983,584,0,0,0,0,82,983,fi.po,,fi,,finnish,,,fi

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,82,983,963,0,0,0,0,82,983,es.po,,es,,spanish,,,es

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,81,978,753,0,0,0,0,81,978,ru.po,,ru,,russian,,,ru

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,82,983,960,0,0,0,0,82,983,da.po,,da,,danish,,,da

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,82,983,1060,0,0,0,0,82,983,fr.po,,fr,,french,,,fr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,82,983,894,0,0,0,0,82,983,gl.po,,gl,,galician,,,gl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,82,983,845,0,0,0,0,82,983,id.po,,id,,indonesian,,,id

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,100,284,217,0,0,0,0,100,284,fi.po,,fi,,finnish,,,fi

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,100,284,277,0,0,0,0,100,284,de.po,,de,,german,,,de

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,100,283,254,0,0,0,0,100,283,eu.po,,eu,,basque,,,eu

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,77,223,199,0,0,0,0,77,223,te.po,,te,,telugu,,,te

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,100,284,300,0,0,0,0,100,284,it.po,,it,,italian,,,it

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,100,284,115,0,0,0,0,100,284,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,100,284,248,0,0,0,0,100,284,hu.po,,hu,,hungarian,,,hu

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,100,283,369,0,0,0,0,100,283,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,100,284,310,0,0,0,0,100,284,fur.po,,fur,,friulian,,,fur

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,100,284,309,0,0,0,0,100,284,el.po,,el,,greek,,,el

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,59,127,126,0,0,1,1,60,128,ug.po,,ug,,uyghur,,,ug

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,100,284,257,0,0,0,0,100,284,lv.po,,lv,,latvian,,,lv

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,98,280,121,0,0,2,4,100,284,ja.po,,ja,,japanese,,,ja

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,100,284,291,0,0,0,0,100,284,sv.po,,sv,,swedish,,,sv

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,77,223,244,0,0,0,0,77,223,or.po,,or,,odia,,,or

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,100,283,277,0,0,0,0,100,283,sk.po,,sk,,slovak,,,sk

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,77,223,91,0,0,0,0,77,223,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,77,223,245,0,0,0,0,77,223,gu.po,,gu,,gujarati,,,gu

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,100,284,245,0,0,0,0,100,284,lt.po,,lt,,lithuanian,,,lt

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,77,223,226,0,0,0,0,77,223,mr.po,,mr,,marathi,,,mr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,100,283,286,0,0,0,0,100,283,af.po,,af,,afrikaans,,,af

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,59,129,130,5,19,13,75,77,223,ne.po,,ne,,nepali,,,ne

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,95,273,310,0,0,0,0,95,273,pt.po,,pt,,portuguese,,,pt

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,100,283,273,0,0,0,0,100,283,be.po,,be,,belarusian,,,be

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,100,283,284,0,0,0,0,100,283,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,100,284,272,0,0,0,0,100,284,da.po,,da,,danish,,,da

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,77,223,213,0,0,0,0,77,223,kn.po,,kn,,kannada,,,kn

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,100,283,291,0,0,0,0,100,283,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,43,85,108,0,0,34,138,77,223,ga.po,,ga,,irish,,,ga

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,100,283,278,0,0,0,0,100,283,ml.po,,ml,,malayalam,,,ml

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,77,223,237,0,0,0,0,77,223,as.po,,as,,assamese,,,as

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,77,223,229,0,0,0,0,77,223,ta.po,,ta,,tamil,,,ta

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,100,284,239,0,0,0,0,100,284,ko.po,,ko,,korean,,,ko

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,100,284,315,0,0,0,0,100,284,ro.po,,ro,,romanian,,,ro

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,77,223,252,0,0,0,0,77,223,an.po,,an,,aragonese,,,an

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,100,284,334,0,0,0,0,100,284,ca.po,,ca,,catalan,,,ca

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,100,284,267,0,0,0,0,100,284,kk.po,,kk,,kazakh,,,kk

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,100,284,283,0,0,0,0,100,284,sr.po,,sr,,serbian,,,sr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,100,283,269,0,0,0,0,100,283,hr.po,,hr,,croatian,,,hr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,100,283,136,0,0,0,0,100,283,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,100,284,315,0,0,0,0,100,284,gl.po,,gl,,galician,,,gl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,94,272,121,0,0,0,0,94,272,th.po,,th,,thai,,,th

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,100,284,268,0,0,0,0,100,284,cs.po,,cs,,czech,,,cs

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,77,223,220,0,0,0,0,77,223,bs.po,,bs,,bosnian,,,bs

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,100,283,331,0,0,0,0,100,283,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,100,284,266,0,0,0,0,100,284,nl.po,,nl,,dutch,,,nl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,100,283,276,0,0,0,0,100,283,is.po,,is,,icelandic,,,is

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,94,272,286,0,0,0,0,94,272,he.po,,he,,hebrew,,,he

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,100,283,308,0,0,0,0,100,283,pa.po,,pa,,punjabi,,,pa

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,77,223,247,0,0,0,0,77,223,tg.po,,tg,,tajik,,,tg

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,100,283,331,0,0,0,0,100,283,fa.po,,fa,,persian,,,fa

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,100,284,345,0,0,0,0,100,284,fr.po,,fr,,french,,,fr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,100,284,281,0,0,0,0,100,284,sl.po,,sl,,slovenian,,,sl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,100,284,299,0,0,0,0,100,284,id.po,,id,,indonesian,,,id

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,100,284,273,0,0,0,0,100,284,ru.po,,ru,,russian,,,ru

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,92,259,310,0,0,1,10,93,269,oc.po,,oc,,occitan,,,oc

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,100,284,325,0,0,0,0,100,284,es.po,,es,,spanish,,,es

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,77,223,269,0,0,0,0,77,223,hi.po,,hi,,hindi,,,hi

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,95,273,268,0,0,0,0,95,273,ar.po,,ar,,arabic,,,ar

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,77,223,176,0,0,0,0,77,223,et.po,,et,,estonian,,,et

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,100,284,424,0,0,0,0,100,284,vi.po,,vi,,vietnamese,,,vi

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,94,272,282,0,0,0,0,94,272,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,100,283,281,0,0,0,0,100,283,eo.po,,eo,,esperanto,,,eo

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,92,259,265,0,0,0,0,92,259,bg.po,,bg,,bulgarian,,,bg

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,100,284,345,0,0,0,0,100,284,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,100,284,268,0,0,0,0,100,284,tr.po,,tr,,turkish,,,tr

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,100,284,259,0,0,0,0,100,284,pl.po,,pl,,polish,,,pl

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,77,223,239,0,0,0,0,77,223,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-clocks-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,38,67,72,0,0,0,0,38,67,uk.po,,uk,,ukrainian,,,uk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,16,160,70,0,0,10,374,26,534,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,16,160,70,0,0,10,374,26,534,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,26,534,139,0,0,0,0,26,534,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,26,534,475,0,0,0,0,26,534,sv.po,,sv,,swedish,,,sv

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,26,534,665,0,0,0,0,26,534,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,26,534,470,0,0,0,0,26,534,pl.po,,pl,,polish,,,pl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ml/ml.po,26,534,417,0,0,0,0,26,534,ml.po,,ml,,malayalam,,,ml

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,26,534,387,0,0,0,0,26,534,ko.po,,ko,,korean,,,ko

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,26,534,543,0,0,0,0,26,534,it.po,,it,,italian,,,it

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,26,534,473,0,0,0,0,26,534,hu.po,,hu,,hungarian,,,hu

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,26,534,444,0,0,0,0,26,534,hr.po,,hr,,croatian,,,hr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,26,534,554,0,0,0,0,26,534,gl.po,,gl,,galician,,,gl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,26,534,615,0,0,0,0,26,534,fr.po,,fr,,french,,,fr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,26,534,346,0,0,0,0,26,534,fi.po,,fi,,finnish,,,fi

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,26,534,598,0,0,0,0,26,534,es.po,,es,,spanish,,,es

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,26,534,577,0,0,0,0,26,534,el.po,,el,,greek,,,el

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,26,534,516,0,0,0,0,26,534,de.po,,de,,german,,,de

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,26,534,480,0,0,0,0,26,534,da.po,,da,,danish,,,da

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,26,534,491,0,0,0,0,26,534,cs.po,,cs,,czech,,,cs

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,26,534,613,0,0,0,0,26,534,ca.po,,ca,,catalan,,,ca

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,345,1796,471,0,0,0,0,345,1796,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,342,1792,467,0,0,0,0,342,1792,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,345,1796,468,0,0,0,0,345,1796,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,345,1796,2263,0,0,0,0,345,1796,vi.po,,vi,,vietnamese,,,vi

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,345,1796,1483,0,0,0,0,345,1796,uk.po,,uk,,ukrainian,,,uk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,329,1681,1328,0,0,7,57,336,1738,ug.po,,ug,,uyghur,,,ug

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,345,1796,1525,0,0,0,0,345,1796,tr.po,,tr,,turkish,,,tr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,18,28,19,0,0,110,714,128,742,th.po,,th,,thai,,,th

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,343,1793,1702,0,0,0,0,343,1793,tg.po,,tg,,tajik,,,tg

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,342,1792,1371,0,0,0,0,342,1792,te.po,,te,,telugu,,,te

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,342,1792,1458,0,0,0,0,342,1792,ta.po,,ta,,tamil,,,ta

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,345,1796,1561,0,0,0,0,345,1796,sv.po,,sv,,swedish,,,sv

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,345,1796,1613,0,0,0,0,345,1796,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,345,1796,1613,0,0,0,0,345,1796,sr.po,,sr,,serbian,,,sr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,345,1796,1591,0,0,0,0,345,1796,sl.po,,sl,,slovenian,,,sl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,345,1796,1599,0,0,0,0,345,1796,sk.po,,sk,,slovak,,,sk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,345,1796,1540,0,0,0,0,345,1796,ru.po,,ru,,russian,,,ru

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,345,1796,1853,0,0,0,0,345,1796,ro.po,,ro,,romanian,,,ro

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,345,1796,2050,0,0,0,0,345,1796,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,345,1796,2026,0,0,0,0,345,1796,pt.po,,pt,,portuguese,,,pt

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,345,1796,1617,0,0,0,0,345,1796,pl.po,,pl,,polish,,,pl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,342,1792,1925,0,0,0,0,342,1792,pa.po,,pa,,punjabi,,,pa

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,342,1792,1682,0,0,0,0,342,1792,or.po,,or,,odia,,,or

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,343,1793,2019,0,0,0,0,343,1793,oc.po,,oc,,occitan,,,oc

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,345,1796,1670,0,0,0,0,345,1796,nl.po,,nl,,dutch,,,nl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,151,327,333,109,449,85,1020,345,1796,ne.po,,ne,,nepali,,,ne

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,345,1796,1611,0,0,0,0,345,1796,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,342,1792,1522,0,0,0,0,342,1792,mr.po,,mr,,marathi,,,mr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,237,770,635,2,2,102,976,341,1748,ml.po,,ml,,malayalam,,,ml

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,345,1796,1507,0,0,0,0,345,1796,lv.po,,lv,,latvian,,,lv

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,345,1796,1407,0,0,0,0,345,1796,lt.po,,lt,,lithuanian,,,lt

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,345,1796,1377,0,0,0,0,345,1796,ko.po,,ko,,korean,,,ko

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,342,1792,1455,0,0,0,0,342,1792,kn.po,,kn,,kannada,,,kn

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,153,404,359,0,0,192,1392,345,1796,kk.po,,kk,,kazakh,,,kk

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,343,1793,420,0,0,2,3,345,1796,ja.po,,ja,,japanese,,,ja

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,345,1796,1879,0,0,0,0,345,1796,it.po,,it,,italian,,,it

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,345,1796,1706,0,0,0,0,345,1796,is.po,,is,,icelandic,,,is

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,345,1796,1612,0,0,0,0,345,1796,id.po,,id,,indonesian,,,id

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,345,1796,1471,0,0,0,0,345,1796,hu.po,,hu,,hungarian,,,hu

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,345,1796,1571,0,0,0,0,345,1796,hr.po,,hr,,croatian,,,hr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,342,1792,2093,0,0,0,0,342,1792,hi.po,,hi,,hindi,,,hi

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,343,1793,1605,0,0,0,0,343,1793,he.po,,he,,hebrew,,,he

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,343,1793,1825,0,0,0,0,343,1793,gu.po,,gu,,gujarati,,,gu

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,345,1796,1995,0,0,0,0,345,1796,gl.po,,gl,,galician,,,gl

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,345,1796,2183,0,0,0,0,345,1796,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,345,1796,2031,0,0,0,0,345,1796,fur.po,,fur,,friulian,,,fur

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,345,1796,2037,0,0,0,0,345,1796,fr.po,,fr,,french,,,fr

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,321,1639,1155,1,17,23,140,345,1796,fi.po,,fi,,finnish,,,fi

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,345,1796,1873,0,0,0,0,345,1796,fa.po,,fa,,persian,,,fa

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,345,1796,1446,0,0,0,0,345,1796,eu.po,,eu,,basque,,,eu

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,343,1793,1323,0,0,0,0,343,1793,et.po,,et,,estonian,,,et

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,345,1796,2031,0,0,0,0,345,1796,es.po,,es,,spanish,,,es

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,345,1796,1609,0,0,0,0,345,1796,eo.po,,eo,,esperanto,,,eo

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,345,1796,1795,0,0,0,0,345,1796,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,345,1796,1839,0,0,0,0,345,1796,el.po,,el,,greek,,,el

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,345,1796,1724,0,0,0,0,345,1796,de.po,,de,,german,,,de

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,345,1796,1572,0,0,0,0,345,1796,da.po,,da,,danish,,,da

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,345,1796,1599,0,0,0,0,345,1796,cs.po,,cs,,czech,,,cs

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,345,1796,2097,0,0,0,0,345,1796,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,345,1796,2100,0,0,0,0,345,1796,ca.po,,ca,,catalan,,,ca

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,343,1793,1549,0,0,0,0,343,1793,bs.po,,bs,,bosnian,,,bs

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,342,1792,1762,0,0,0,0,342,1792,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,343,1793,1816,0,0,0,0,343,1793,bg.po,,bg,,bulgarian,,,bg

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,342,1792,1719,0,0,0,0,342,1792,as.po,,as,,assamese,,,as

+ gnome-color-manager-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,97,304,294,0,0,286,2109,383,2413,ar.po,,ar,,arabic,,,ar

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_tw.po,167,590,227,0,0,0,0,167,590,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_hk.po,155,405,207,0,0,0,0,155,405,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/zh_cn.po,158,434,221,0,0,0,0,158,434,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/vi.po,157,433,647,0,0,0,0,157,433,vi.po,,vi,,vietnamese,,,vi

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/uk.po,129,311,312,0,0,0,0,129,311,uk.po,,uk,,ukrainian,,,uk

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ug.po,151,344,326,0,0,0,0,151,344,ug.po,,ug,,uyghur,,,ug

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/tr.po,167,590,498,0,0,0,0,167,590,tr.po,,tr,,turkish,,,tr

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/th.po,157,433,215,0,0,0,0,157,433,th.po,,th,,thai,,,th

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/tg.po,156,411,473,0,0,0,0,156,411,tg.po,,tg,,tajik,,,tg

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/te.po,155,405,370,0,0,0,0,155,405,te.po,,te,,telugu,,,te

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ta.po,155,405,406,0,0,0,0,155,405,ta.po,,ta,,tamil,,,ta

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sv.po,167,590,558,0,0,0,0,167,590,sv.po,,sv,,swedish,,,sv

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sr@latin.po,162,563,589,0,0,0,0,162,563,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sr.po,167,590,617,0,0,0,0,167,590,sr.po,,sr,,serbian,,,sr

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sl.po,167,590,551,0,0,0,0,167,590,sl.po,,sl,,slovenian,,,sl

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/sk.po,166,586,553,0,0,0,0,166,586,sk.po,,sk,,slovak,,,sk

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ru.po,167,590,559,0,0,0,0,167,590,ru.po,,ru,,russian,,,ru

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ro.po,167,590,622,0,0,0,0,167,590,ro.po,,ro,,romanian,,,ro

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pt_br.po,167,590,654,0,0,0,0,167,590,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pt.po,157,433,481,0,0,0,0,157,433,pt.po,,pt,,portuguese,,,pt

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pl.po,167,590,559,0,0,0,0,167,590,pl.po,,pl,,polish,,,pl

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/pa.po,156,411,457,0,0,0,0,156,411,pa.po,,pa,,punjabi,,,pa

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/or.po,155,405,440,0,0,0,0,155,405,or.po,,or,,odia,,,or

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/oc.po,157,433,497,0,0,0,0,157,433,oc.po,,oc,,occitan,,,oc

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/nl.po,167,590,576,0,0,0,0,167,590,nl.po,,nl,,dutch,,,nl

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ne.po,144,417,416,0,0,0,0,144,417,ne.po,,ne,,nepali,,,ne

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/nb.po,144,417,408,0,0,0,0,144,417,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/mr.po,155,405,421,0,0,0,0,155,405,mr.po,,mr,,marathi,,,mr

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ml.po,151,344,316,0,0,0,0,151,344,ml.po,,ml,,malayalam,,,ml

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/mk.po,116,231,245,0,0,0,0,116,231,mk.po,,mk,,macedonian,,,mk

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/lv.po,167,590,548,0,0,0,0,167,590,lv.po,,lv,,latvian,,,lv

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/lt.po,167,590,531,0,0,0,0,167,590,lt.po,,lt,,lithuanian,,,lt

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ko.po,167,590,461,0,0,0,0,167,590,ko.po,,ko,,korean,,,ko

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/kn.po,155,405,399,0,0,0,0,155,405,kn.po,,kn,,kannada,,,kn

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/kk.po,167,590,519,0,0,0,0,167,590,kk.po,,kk,,kazakh,,,kk

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ja.po,157,433,210,0,0,0,0,157,433,ja.po,,ja,,japanese,,,ja

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/it.po,167,590,561,0,0,0,0,167,590,it.po,,it,,italian,,,it

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/is.po,163,506,494,0,0,3,80,166,586,is.po,,is,,icelandic,,,is

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/id.po,167,590,577,0,0,0,0,167,590,id.po,,id,,indonesian,,,id

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hu.po,167,590,534,0,0,0,0,167,590,hu.po,,hu,,hungarian,,,hu

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hr.po,166,586,536,0,0,0,0,166,586,hr.po,,hr,,croatian,,,hr

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/hi.po,155,405,449,0,0,0,0,155,405,hi.po,,hi,,hindi,,,hi

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/he.po,157,433,490,0,0,0,0,157,433,he.po,,he,,hebrew,,,he

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gu.po,157,433,490,0,0,0,0,157,433,gu.po,,gu,,gujarati,,,gu

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gl.po,167,590,648,0,0,0,0,167,590,gl.po,,gl,,galician,,,gl

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/gd.po,144,417,591,0,0,0,0,144,417,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ga.po,117,184,202,1,4,33,142,151,330,ga.po,,ga,,irish,,,ga

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fur.po,167,590,642,0,0,0,0,167,590,fur.po,,fur,,friulian,,,fur

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fr.po,167,590,663,0,0,0,0,167,590,fr.po,,fr,,french,,,fr

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fi.po,167,590,451,0,0,0,0,167,590,fi.po,,fi,,finnish,,,fi

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/fa.po,146,422,485,0,0,0,0,146,422,fa.po,,fa,,persian,,,fa

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/eu.po,167,590,512,0,0,0,0,167,590,eu.po,,eu,,basque,,,eu

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/et.po,151,331,301,0,0,0,0,151,331,et.po,,et,,estonian,,,et

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/es.po,167,590,650,0,0,0,0,167,590,es.po,,es,,spanish,,,es

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/eo.po,159,481,474,0,0,0,0,159,481,eo.po,,eo,,esperanto,,,eo

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/en_gb.po,162,563,569,0,0,0,0,162,563,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/en_ca.po,145,309,310,0,0,0,0,145,309,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/el.po,167,590,636,0,0,0,0,167,590,el.po,,el,,greek,,,el

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/de.po,167,590,562,0,0,0,0,167,590,de.po,,de,,german,,,de

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/da.po,167,590,524,0,0,0,0,167,590,da.po,,da,,danish,,,da

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/cs.po,167,590,539,0,0,0,0,167,590,cs.po,,cs,,czech,,,cs

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,144,417,499,0,0,0,0,144,417,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ca.po,167,590,681,0,0,0,0,167,590,ca.po,,ca,,catalan,,,ca

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bs.po,156,411,418,0,0,0,0,156,411,bs.po,,bs,,bosnian,,,bs

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bn_in.po,155,405,449,0,0,0,0,155,405,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/bg.po,112,288,344,0,0,0,0,112,288,bg.po,,bg,,bulgarian,,,bg

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/be.po,146,422,432,0,0,0,0,146,422,be.po,,be,,belarusian,,,be

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ast.po,105,205,222,0,0,0,0,105,205,ast.po,,ast,,asturian,,,ast

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/as.po,155,405,467,0,0,0,0,155,405,as.po,,as,,assamese,,,as

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/ar.po,155,380,423,0,0,2,53,157,433,ar.po,,ar,,arabic,,,ar

+ gnome-contacts-3.32-1.fc30.src.rpm.stats.csv,po/af.po,99,186,192,5,8,3,16,107,210,af.po,,af,,afrikaans,,,af

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/zh_tw.po,756,1313,886,0,0,0,0,756,1313,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/zh_cn.po,756,1313,757,0,0,0,0,756,1313,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/vi.po,504,504,981,69,88,183,721,756,1313,vi.po,,vi,,vietnamese,,,vi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ur.po,0,0,0,0,0,756,1313,756,1313,ur.po,,ur,,urdu,,,ur

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/uk.po,752,1304,1368,0,0,0,0,752,1304,uk.po,,uk,,ukrainian,,,uk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/tr.po,612,672,672,4,8,140,633,756,1313,tr.po,,tr,,turkish,,,tr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/te.po,756,1313,1337,0,0,0,0,756,1313,te.po,,te,,telugu,,,te

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ta.po,756,1313,1299,0,0,0,0,756,1313,ta.po,,ta,,tamil,,,ta

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sv.po,752,1304,1203,0,0,0,0,752,1304,sv.po,,sv,,swedish,,,sv

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sr@latin.po,750,1298,1290,5,9,1,6,756,1313,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sr.po,750,1298,1290,5,9,1,6,756,1313,sr.po,,sr,,serbian,,,sr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sq.po,551,551,551,38,54,167,708,756,1313,sq.po,,sq,,albanian,,,sq

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sl.po,521,521,521,69,88,166,704,756,1313,sl.po,,sl,,slovenian,,,sl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/sk.po,756,1313,1307,0,0,0,0,756,1313,sk.po,,sk,,slovak,,,sk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/si.po,550,550,551,40,59,166,704,756,1313,si.po,,si,,sinhala,,,si

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ru.po,756,1313,1396,0,0,0,0,756,1313,ru.po,,ru,,russian,,,ru

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ro.po,550,550,550,40,59,166,704,756,1313,ro.po,,ro,,romanian,,,ro

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pt_br.po,756,1313,1485,0,0,0,0,756,1313,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pt.po,756,1313,1404,0,0,0,0,756,1313,pt.po,,pt,,portuguese,,,pt

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pl.po,756,1313,1494,0,0,0,0,756,1313,pl.po,,pl,,polish,,,pl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/pa.po,756,1313,1376,0,0,0,0,756,1313,pa.po,,pa,,punjabi,,,pa

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/or.po,756,1313,1318,0,0,0,0,756,1313,or.po,,or,,odia,,,or

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nn.po,0,0,0,0,0,756,1313,756,1313,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nl.po,756,1313,1289,0,0,0,0,756,1313,nl.po,,nl,,dutch,,,nl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nds.po,756,1313,1295,0,0,0,0,756,1313,nds.po,,nds,,low german,,,nds

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/nb.po,709,1000,948,0,0,47,313,756,1313,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ms.po,551,551,551,39,58,166,704,756,1313,ms.po,,ms,,malay,,,ms

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mr.po,756,1313,1318,0,0,0,0,756,1313,mr.po,,mr,,marathi,,,mr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ml.po,756,1313,1312,0,0,0,0,756,1313,ml.po,,ml,,malayalam,,,ml

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mk.po,521,521,521,69,88,166,704,756,1313,mk.po,,mk,,macedonian,,,mk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/mai.po,559,559,564,31,50,166,704,756,1313,mai.po,,mai,,maithili,,,mai

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lv.po,549,549,622,41,60,166,704,756,1313,lv.po,,lv,,latvian,,,lv

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lt.po,521,521,521,69,88,166,704,756,1313,lt.po,,lt,,lithuanian,,,lt

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/lo.po,0,0,0,0,0,756,1313,756,1313,lo.po,,lo,,lao,,,lo

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ku.po,0,0,0,0,0,756,1313,756,1313,ku.po,,ku,,kurdish,,,ku

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ko.po,756,1313,1435,0,0,0,0,756,1313,ko.po,,ko,,korean,,,ko

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/kn.po,756,1313,1430,0,0,0,0,756,1313,kn.po,,kn,,kannada,,,kn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ka.po,166,166,166,40,53,550,1094,756,1313,ka.po,,ka,,georgian,,,ka

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ja.po,756,1313,912,0,0,0,0,756,1313,ja.po,,ja,,japanese,,,ja

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/it.po,756,1313,1427,0,0,0,0,756,1313,it.po,,it,,italian,,,it

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/is.po,750,1298,1154,5,9,1,6,756,1313,is.po,,is,,icelandic,,,is

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ilo.po,0,0,0,0,0,756,1313,756,1313,ilo.po,,ilo,,iloko,,,ilo

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/id.po,539,539,539,51,70,166,704,756,1313,id.po,,id,,indonesian,,,id

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hu.po,690,971,986,15,29,51,313,756,1313,hu.po,,hu,,hungarian,,,hu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hr.po,551,551,563,39,58,166,704,756,1313,hr.po,,hr,,croatian,,,hr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/hi.po,756,1313,1317,0,0,0,0,756,1313,hi.po,,hi,,hindi,,,hi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/he.po,504,504,515,31,50,221,759,756,1313,he.po,,he,,hebrew,,,he

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/gu.po,756,1313,1388,0,0,0,0,756,1313,gu.po,,gu,,gujarati,,,gu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/gl.po,521,521,521,69,88,166,704,756,1313,gl.po,,gl,,galician,,,gl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fr.po,755,1307,1447,0,0,1,6,756,1313,fr.po,,fr,,french,,,fr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fi.po,756,1313,1213,0,0,0,0,756,1313,fi.po,,fi,,finnish,,,fi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/fa.po,520,526,701,59,76,177,711,756,1313,fa.po,,fa,,persian,,,fa

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/et.po,521,521,522,69,88,166,704,756,1313,et.po,,et,,estonian,,,et

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/es.po,756,1313,1465,0,0,0,0,756,1313,es.po,,es,,spanish,,,es

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/en_gb.po,734,1223,1223,19,67,3,23,756,1313,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/el.po,734,1223,1195,19,67,3,23,756,1313,el.po,,el,,greek,,,el

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/de.po,756,1313,1295,0,0,0,0,756,1313,de.po,,de,,german,,,de

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/da.po,750,1298,1198,5,9,1,6,756,1313,da.po,,da,,danish,,,da

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/cy.po,539,539,543,51,70,166,704,756,1313,cy.po,,cy,,welsh,,,cy

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/cs.po,752,1304,1298,0,0,0,0,752,1304,cs.po,,cs,,czech,,,cs

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ca.po,652,905,959,1,2,103,406,756,1313,ca.po,,ca,,catalan,,,ca

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bs.po,550,550,562,40,59,166,704,756,1313,bs.po,,bs,,bosnian,,,bs

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bn_in.po,756,1313,1335,0,0,0,0,756,1313,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bn.po,539,539,597,51,70,166,704,756,1313,bn.po,,bn,,bangla,,,bn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/bg.po,559,559,573,31,50,166,704,756,1313,bg.po,,bg,,bulgarian,,,bg

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ast.po,756,1313,1322,0,0,0,0,756,1313,ast.po,,ast,,asturian,,,ast

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/as.po,734,1223,1387,19,67,3,23,756,1313,as.po,,as,,assamese,,,as

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/ar.po,750,1298,1298,5,9,1,6,756,1313,ar.po,,ar,,arabic,,,ar

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,panels/datetime/po-timezones/am.po,521,521,543,69,88,166,704,756,1313,am.po,,am,,amharic,,,am

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,564,2619,2251,100,352,72,411,736,3382,zu.po,,zu,,zulu,,,zu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,1572,5528,2099,0,0,0,0,1572,5528,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,1454,4946,1843,0,0,0,0,1454,4946,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,1500,5189,1978,1,3,0,0,1501,5192,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,646,2834,2520,55,267,36,284,737,3385,xh.po,,xh,,xhosa,,,xh

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,128,273,373,219,470,390,2642,737,3385,wa.po,,wa,,walloon,,,wa

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,1526,5320,7609,0,0,0,0,1526,5320,vi.po,,vi,,vietnamese,,,vi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,353,885,846,0,0,411,2281,764,3166,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,353,885,846,0,0,411,2281,764,3166,uz.po,,uz,,uzbek,,,uz

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,1492,5200,4819,0,0,0,0,1492,5200,uk.po,,uk,,ukrainian,,,uk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,1432,4462,4192,2,2,17,137,1451,4601,ug.po,,ug,,uyghur,,,ug

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,1622,5713,5121,0,0,0,0,1622,5713,tr.po,,tr,,turkish,,,tr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,1501,5190,2170,0,0,0,0,1501,5190,th.po,,th,,thai,,,th

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,1464,5034,5429,0,0,0,0,1464,5034,tg.po,,tg,,tajik,,,tg

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,1454,4946,4484,0,0,0,0,1454,4946,te.po,,te,,telugu,,,te

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,1454,4946,4602,0,0,0,0,1454,4946,ta.po,,ta,,tamil,,,ta

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,1621,5712,5238,0,0,0,0,1621,5712,sv.po,,sv,,swedish,,,sv

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1526,5320,5367,0,0,0,0,1526,5320,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,1622,5713,5760,0,0,0,0,1622,5713,sr.po,,sr,,serbian,,,sr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,724,2780,3203,0,0,0,0,724,2780,sq.po,,sq,,albanian,,,sq

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,1622,5713,5763,0,0,0,0,1622,5713,sl.po,,sl,,slovenian,,,sl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,1561,5433,5348,0,0,5,83,1566,5516,sk.po,,sk,,slovak,,,sk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,184,380,454,0,0,662,3320,846,3700,si.po,,si,,sinhala,,,si

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,60,63,64,474,2800,203,522,737,3385,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,1622,5713,5389,0,0,0,0,1622,5713,ru.po,,ru,,russian,,,ru

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,1622,5713,6053,0,0,0,0,1622,5713,ro.po,,ro,,romanian,,,ro

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,1622,5713,6476,0,0,0,0,1622,5713,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,1504,5267,5898,0,0,0,0,1504,5267,pt.po,,pt,,portuguese,,,pt

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,1622,5713,5476,0,0,0,0,1622,5713,pl.po,,pl,,polish,,,pl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,1526,5320,5985,0,0,0,0,1526,5320,pa.po,,pa,,punjabi,,,pa

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,1454,4946,5435,0,0,0,0,1454,4946,or.po,,or,,odia,,,or

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,1551,5346,6226,0,0,16,119,1567,5465,oc.po,,oc,,occitan,,,oc

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,571,2626,3886,95,347,70,409,736,3382,nso.po,,nso,,northern sotho,,,nso

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,567,1856,1702,0,0,492,1512,1059,3368,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,1622,5713,5448,0,0,0,0,1622,5713,nl.po,,nl,,dutch,,,nl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,1269,3402,3385,89,408,142,1419,1500,5229,ne.po,,ne,,nepali,,,ne

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,389,706,657,0,0,390,2519,779,3225,nds.po,,nds,,low german,,,nds

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,1496,5201,4944,0,0,2,23,1498,5224,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/my.po,368,1049,605,0,0,422,2315,790,3364,my.po,,my,,burmese,,,my

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,327,868,832,517,1222,610,2856,1454,4946,ms.po,,ms,,malay,,,ms

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,1454,4946,4960,0,0,0,0,1454,4946,mr.po,,mr,,marathi,,,mr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,778,3548,3065,0,0,0,0,778,3548,mn.po,,mn,,mongolian,,,mn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,1386,4336,3756,44,318,70,575,1500,5229,ml.po,,ml,,malayalam,,,ml

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,953,2882,3146,0,0,0,0,953,2882,mk.po,,mk,,macedonian,,,mk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,770,3501,3857,3,15,0,0,773,3516,mg.po,,mg,,malagasy,,,mg

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,483,1583,1841,0,0,286,1604,769,3187,mai.po,,mai,,maithili,,,mai

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,1622,5713,5172,0,0,0,0,1622,5713,lv.po,,lv,,latvian,,,lv

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,1622,5713,5080,0,0,0,0,1622,5713,lt.po,,lt,,lithuanian,,,lt

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,695,1780,1661,11,26,415,1672,1121,3478,ky.po,,ky,,kyrgyz,,,ky

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,198,447,472,256,706,467,1749,921,2902,ku.po,,ku,,kurdish,,,ku

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,1622,5713,4888,0,0,0,0,1622,5713,ko.po,,ko,,korean,,,ko

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,1452,4958,4666,0,0,0,0,1452,4958,kn.po,,kn,,kannada,,,kn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,1116,3467,1652,1,1,0,0,1117,3468,km.po,,km,,khmer,,,km

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,1622,5713,5279,0,0,0,0,1622,5713,kk.po,,kk,,kazakh,,,kk

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,626,1983,1670,51,322,48,494,725,2799,ka.po,,ka,,georgian,,,ka

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,1605,5586,2088,1,15,16,112,1622,5713,ja.po,,ja,,japanese,,,ja

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,1622,5713,6071,0,0,0,0,1622,5713,it.po,,it,,italian,,,it

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,1566,5516,5378,0,0,0,0,1566,5516,is.po,,is,,icelandic,,,is

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,1622,5713,5662,0,0,0,0,1622,5713,id.po,,id,,indonesian,,,id

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,480,1906,1762,0,0,0,0,480,1906,hy.po,,hy,,armenian,,,hy

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,1622,5713,5144,0,0,0,0,1622,5713,hu.po,,hu,,hungarian,,,hu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,1595,5684,5520,0,0,0,0,1595,5684,hr.po,,hr,,croatian,,,hr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,1454,4946,5873,0,0,0,0,1454,4946,hi.po,,hi,,hindi,,,hi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,1502,5192,5010,0,0,0,0,1502,5192,he.po,,he,,hebrew,,,he

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,1454,4946,5506,0,0,0,0,1454,4946,gu.po,,gu,,gujarati,,,gu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,1622,5713,6649,0,0,0,0,1622,5713,gl.po,,gl,,galician,,,gl

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,1526,5320,6981,0,0,0,0,1526,5320,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,892,1952,2167,149,574,424,2510,1465,5036,ga.po,,ga,,irish,,,ga

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,1622,5713,6508,0,0,0,0,1622,5713,fur.po,,fur,,friulian,,,fur

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,1622,5713,6752,0,0,0,0,1622,5713,fr.po,,fr,,french,,,fr

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,1614,5609,4446,1,5,7,99,1622,5713,fi.po,,fi,,finnish,,,fi

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,1499,5228,5813,0,0,0,0,1499,5228,fa.po,,fa,,persian,,,fa

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,1622,5713,5321,0,0,0,0,1622,5713,eu.po,,eu,,basque,,,eu

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,1444,4906,4090,0,0,0,0,1444,4906,et.po,,et,,estonian,,,et

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,1621,5712,6693,0,0,0,0,1621,5712,es.po,,es,,spanish,,,es

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,1614,5682,5266,2,8,1,15,1617,5705,eo.po,,eo,,esperanto,,,eo

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,1622,5713,5710,0,0,0,0,1622,5713,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,754,3477,3483,0,0,0,0,754,3477,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,696,2803,2803,115,717,0,0,811,3520,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/en.po,6,17,17,0,0,697,2243,703,2260,en.po,,en,,english,,,en

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,1622,5713,6160,0,0,0,0,1622,5713,el.po,,el,,greek,,,el

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,757,3067,1479,0,0,0,0,757,3067,dz.po,,dz,,dzongkha,,,dz

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,1622,5713,5446,0,0,0,0,1622,5713,de.po,,de,,german,,,de

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,1622,5713,5223,0,0,0,0,1622,5713,da.po,,da,,danish,,,da

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,763,3491,3703,0,0,0,0,763,3491,cy.po,,cy,,welsh,,,cy

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,1622,5713,5633,0,0,0,0,1622,5713,cs.po,,cs,,czech,,,cs

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,1198,3387,3138,0,0,265,1360,1463,4747,crh.po,,crh,,crimean turkish,,,crh

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,1499,5228,6292,0,0,0,0,1499,5228,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,1622,5713,6809,0,0,0,0,1622,5713,ca.po,,ca,,catalan,,,ca

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,1458,4996,4829,0,0,0,0,1458,4996,bs.po,,bs,,bosnian,,,bs

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,218,474,577,36,89,1200,4383,1454,4946,br.po,,br,,breton,,,br

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,1454,4946,5400,0,0,0,0,1454,4946,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,742,2352,2435,0,0,0,0,742,2352,bn.po,,bn,,bangla,,,bn

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,1499,5228,5824,0,0,0,0,1499,5228,bg.po,,bg,,bulgarian,,,bg

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,770,3188,2909,0,0,0,0,770,3188,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,1566,5516,5182,0,0,0,0,1566,5516,be.po,,be,,belarusian,,,be

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,564,2619,2394,100,352,73,414,737,3385,az.po,,az,,azerbaijani,,,az

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,943,2973,3288,0,0,0,0,943,2973,ast.po,,ast,,asturian,,,ast

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,1454,4946,5359,0,0,0,0,1454,4946,as.po,,as,,assamese,,,as

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,1530,5172,4945,4,19,88,520,1622,5711,ar.po,,ar,,arabic,,,ar

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,1464,5034,5936,0,0,0,0,1464,5034,an.po,,an,,aragonese,,,an

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,111,160,179,168,311,458,2914,737,3385,am.po,,am,,amharic,,,am

+ gnome-control-center-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,1470,5162,5138,30,83,26,75,1526,5320,af.po,,af,,afrikaans,,,af

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/zh_cn/zh_cn.po,69,2543,196,4,344,0,0,73,2887,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/vi/vi.po,74,2887,3962,0,0,0,0,74,2887,vi.po,,vi,,vietnamese,,,vi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/uk/uk.po,73,2887,2544,0,0,0,0,73,2887,uk.po,,uk,,ukrainian,,,uk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/sv/sv.po,72,2889,2853,0,0,0,0,72,2889,sv.po,,sv,,swedish,,,sv

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/sl/sl.po,72,2889,2543,0,0,0,0,72,2889,sl.po,,sl,,slovenian,,,sl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/pt_br/pt_br.po,72,2889,2981,0,0,0,0,72,2889,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/oc/oc.po,9,17,24,0,0,64,2870,73,2887,oc.po,,oc,,occitan,,,oc

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ko/ko.po,73,2887,2175,0,0,0,0,73,2887,ko.po,,ko,,korean,,,ko

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/hu/hu.po,72,2889,2628,0,0,0,0,72,2889,hu.po,,hu,,hungarian,,,hu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/gl/gl.po,61,2145,2156,0,0,11,744,72,2889,gl.po,,gl,,galician,,,gl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/fr/fr.po,72,2889,3109,0,0,0,0,72,2889,fr.po,,fr,,french,,,fr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/eu/eu.po,73,2887,2311,0,0,0,0,73,2887,eu.po,,eu,,basque,,,eu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/es/es.po,72,2889,3006,0,0,0,0,72,2889,es.po,,es,,spanish,,,es

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/el/el.po,72,2889,3045,0,0,0,0,72,2889,el.po,,el,,greek,,,el

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/de/de.po,72,2889,2801,0,0,0,0,72,2889,de.po,,de,,german,,,de

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/cs/cs.po,11,126,121,0,0,61,2763,72,2889,cs.po,,cs,,czech,,,cs

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ca/ca.po,72,2889,2977,0,0,0,0,72,2889,ca.po,,ca,,catalan,,,ca

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/fdl/ar/ar.po,6,13,13,0,0,67,2874,73,2887,ar.po,,ar,,arabic,,,ar

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/zh_cn/zh_cn.po,70,2552,136,0,0,0,0,70,2552,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/vi/vi.po,71,2552,3505,0,0,0,0,71,2552,vi.po,,vi,,vietnamese,,,vi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/uk/uk.po,69,2511,2508,1,41,0,0,70,2552,uk.po,,uk,,ukrainian,,,uk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sv/sv.po,69,2555,2433,0,0,0,0,69,2555,sv.po,,sv,,swedish,,,sv

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr@latin/sr@latin.po,70,2552,2301,0,0,0,0,70,2552,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sl/sl.po,69,2555,2328,0,0,0,0,69,2555,sl.po,,sl,,slovenian,,,sl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/pt_br/pt_br.po,69,2555,2545,0,0,0,0,69,2555,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/pa/pa.po,25,77,85,0,0,41,2423,66,2500,pa.po,,pa,,punjabi,,,pa

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/oc/oc.po,18,33,38,0,0,52,2519,70,2552,oc.po,,oc,,occitan,,,oc

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/nds/nds.po,39,465,489,31,2087,0,0,70,2552,nds.po,,nds,,low german,,,nds

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ko/ko.po,70,2552,2059,0,0,0,0,70,2552,ko.po,,ko,,korean,,,ko

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/hu/hu.po,69,2555,2094,0,0,0,0,69,2555,hu.po,,hu,,hungarian,,,hu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/gl/gl.po,69,2555,2851,0,0,0,0,69,2555,gl.po,,gl,,galician,,,gl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/fr/fr.po,69,2555,2948,0,0,0,0,69,2555,fr.po,,fr,,french,,,fr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/fi/fi.po,66,2390,1826,3,165,0,0,69,2555,fi.po,,fi,,finnish,,,fi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/eu/eu.po,70,2552,1992,0,0,0,0,70,2552,eu.po,,eu,,basque,,,eu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/es/es.po,69,2555,2722,0,0,0,0,69,2555,es.po,,es,,spanish,,,es

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/el/el.po,69,2555,2635,0,0,0,0,69,2555,el.po,,el,,greek,,,el

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/de/de.po,69,2555,2676,0,0,0,0,69,2555,de.po,,de,,german,,,de

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/cs/cs.po,69,2555,2207,0,0,0,0,69,2555,cs.po,,cs,,czech,,,cs

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ca/ca.po,69,2555,2706,0,0,0,0,69,2555,ca.po,,ca,,catalan,,,ca

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/ar/ar.po,70,2552,1913,0,0,0,0,70,2552,ar.po,,ar,,arabic,,,ar

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr/sr@latin.po,69,2555,2304,0,0,0,0,69,2555,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/gpl/sr/sr.po,69,2555,2304,0,0,0,0,69,2555,sr.po,,sr,,serbian,,,sr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/zh_cn/zh_cn.po,71,2364,156,3,132,25,1641,99,4137,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/vi/vi.po,100,4137,5545,0,0,0,0,100,4137,vi.po,,vi,,vietnamese,,,vi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/uk/uk.po,99,4137,3895,0,0,0,0,99,4137,uk.po,,uk,,ukrainian,,,uk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/sv/sv.po,98,4140,3650,0,0,0,0,98,4140,sv.po,,sv,,swedish,,,sv

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/sl/sl.po,99,4141,3695,0,0,0,0,99,4141,sl.po,,sl,,slovenian,,,sl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/pt_br/pt_br.po,98,4140,4117,0,0,0,0,98,4140,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/pa/pa.po,34,274,305,0,0,61,3811,95,4085,pa.po,,pa,,punjabi,,,pa

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/oc/oc.po,22,41,46,0,0,77,4096,99,4137,oc.po,,oc,,occitan,,,oc

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ko/ko.po,99,4137,3163,0,0,0,0,99,4137,ko.po,,ko,,korean,,,ko

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/hu/hu.po,98,4140,3433,0,0,0,0,98,4140,hu.po,,hu,,hungarian,,,hu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/fr/fr.po,98,4140,4590,0,0,0,0,98,4140,fr.po,,fr,,french,,,fr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/fi/fi.po,60,1912,1495,8,465,31,1760,99,4137,fi.po,,fi,,finnish,,,fi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/eu/eu.po,99,4137,3084,0,0,0,0,99,4137,eu.po,,eu,,basque,,,eu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/es/es.po,98,4140,4433,0,0,0,0,98,4140,es.po,,es,,spanish,,,es

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/el/el.po,98,4140,4214,0,0,0,0,98,4140,el.po,,el,,greek,,,el

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/de/de.po,98,4140,4452,0,0,0,0,98,4140,de.po,,de,,german,,,de

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/cs/cs.po,11,103,104,0,0,87,4037,98,4140,cs.po,,cs,,czech,,,cs

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ca/ca.po,49,1360,1391,0,0,49,2780,98,4140,ca.po,,ca,,catalan,,,ca

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,desktop-docs/lgpl/ar/ar.po,6,13,12,0,0,64,2539,70,2552,ar.po,,ar,,arabic,,,ar

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zu.po,72,316,260,1,4,0,0,73,320,zu.po,,zu,,zulu,,,zu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,27,152,80,0,0,0,0,27,152,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,23,146,83,0,0,0,0,23,146,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,23,146,83,0,0,0,0,23,146,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/yo.po,90,328,357,2,8,1,28,93,364,yo.po,,yo,,yoruba,,,yo

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/yi.po,2,2,2,2,2,69,316,73,320,yi.po,,yi,,yiddish,,,yi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/xh.po,24,139,111,7,96,0,0,31,235,xh.po,,xh,,xhosa,,,xh

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/wa.po,72,316,449,1,4,0,0,73,320,wa.po,,wa,,walloon,,,wa

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,23,146,179,0,0,0,0,23,146,vi.po,,vi,,vietnamese,,,vi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,23,146,157,0,0,0,0,23,146,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uz.po,73,314,285,0,0,3,16,76,330,uz.po,,uz,,uzbek,,,uz

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ur.po,9,15,16,3,3,61,305,73,323,ur.po,,ur,,urdu,,,ur

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,23,146,138,0,0,0,0,23,146,uk.po,,uk,,ukrainian,,,uk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,36,232,200,0,0,0,0,36,232,ug.po,,ug,,uyghur,,,ug

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,27,152,137,0,0,0,0,27,152,tr.po,,tr,,turkish,,,tr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tk.po,69,291,256,1,4,3,25,73,320,tk.po,,tk,,turkmen,,,tk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,23,146,98,0,0,0,0,23,146,th.po,,th,,thai,,,th

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,23,146,145,0,0,0,0,23,146,tg.po,,tg,,tajik,,,tg

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,23,146,131,0,0,0,0,23,146,te.po,,te,,telugu,,,te

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,23,146,138,0,0,0,0,23,146,ta.po,,ta,,tamil,,,ta

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,27,152,155,0,0,0,0,27,152,sv.po,,sv,,swedish,,,sv

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,23,146,131,0,0,0,0,23,146,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,27,152,143,0,0,0,0,27,152,sr.po,,sr,,serbian,,,sr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,71,285,350,0,0,0,0,71,285,sq.po,,sq,,albanian,,,sq

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,27,152,148,0,0,0,0,27,152,sl.po,,sl,,slovenian,,,sl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,23,146,125,0,0,0,0,23,146,sk.po,,sk,,slovak,,,sk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,76,330,344,0,0,0,0,76,330,si.po,,si,,sinhala,,,si

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,14,15,19,44,276,15,29,73,320,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,27,152,153,0,0,0,0,27,152,ru.po,,ru,,russian,,,ru

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,27,152,154,0,0,0,0,27,152,ro.po,,ro,,romanian,,,ro

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,27,152,173,0,0,0,0,27,152,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,23,146,150,0,0,0,0,23,146,pt.po,,pt,,portuguese,,,pt

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,58,144,174,0,0,11,139,69,283,ps.po,,ps,,pashto,,,ps

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,27,152,154,0,0,0,0,27,152,pl.po,,pl,,polish,,,pl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,23,146,159,0,0,0,0,23,146,pa.po,,pa,,punjabi,,,pa

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,23,146,147,0,0,0,0,23,146,or.po,,or,,odia,,,or

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,23,146,167,0,0,0,0,23,146,oc.po,,oc,,occitan,,,oc

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nso.po,72,316,489,1,4,0,0,73,320,nso.po,,nso,,northern sotho,,,nso

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,22,196,192,9,39,0,0,31,235,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,27,152,153,0,0,0,0,27,152,nl.po,,nl,,dutch,,,nl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,23,146,139,0,0,0,0,23,146,ne.po,,ne,,nepali,,,ne

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,53,351,360,0,0,0,0,53,351,nds.po,,nds,,low german,,,nds

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,23,146,138,0,0,0,0,23,146,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,61,377,360,0,0,0,0,61,377,ms.po,,ms,,malay,,,ms

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,23,146,148,0,0,0,0,23,146,mr.po,,mr,,marathi,,,mr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,53,349,301,0,0,0,0,53,349,mn.po,,mn,,mongolian,,,mn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,27,152,132,0,0,0,0,27,152,ml.po,,ml,,malayalam,,,ml

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,31,235,253,0,0,0,0,31,235,mk.po,,mk,,macedonian,,,mk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mi.po,14,20,27,1,4,58,296,73,320,mi.po,,mi,,maori,,,mi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,70,281,336,1,4,0,0,71,285,mg.po,,mg,,malagasy,,,mg

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,53,351,388,0,0,0,0,53,351,mai.po,,mai,,maithili,,,mai

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,27,152,144,0,0,0,0,27,152,lv.po,,lv,,latvian,,,lv

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,27,152,136,0,0,0,0,27,152,lt.po,,lt,,lithuanian,,,lt

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/lo.po,23,146,97,0,0,0,0,23,146,lo.po,,lo,,lao,,,lo

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/li.po,33,96,95,18,32,22,192,73,320,li.po,,li,,limburgish,,,li

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,35,241,210,0,0,0,0,35,241,ky.po,,ky,,kyrgyz,,,ky

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,48,297,340,0,0,5,54,53,351,ku.po,,ku,,kurdish,,,ku

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,27,152,142,0,0,0,0,27,152,ko.po,,ko,,korean,,,ko

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,23,146,138,0,0,0,0,23,146,kn.po,,kn,,kannada,,,kn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,31,235,140,0,0,0,0,31,235,km.po,,km,,khmer,,,km

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,27,152,136,0,0,0,0,27,152,kk.po,,kk,,kazakh,,,kk

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/kg.po,49,384,392,0,0,0,0,49,384,kg.po,,kg,,kongo,,,kg

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,69,283,241,0,0,0,0,69,283,ka.po,,ka,,georgian,,,ka

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,27,152,103,0,0,0,0,27,152,ja.po,,ja,,japanese,,,ja

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,27,152,154,0,0,0,0,27,152,it.po,,it,,italian,,,it

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,27,152,139,0,0,0,0,27,152,is.po,,is,,icelandic,,,is

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ig.po,29,203,227,3,14,20,132,52,349,ig.po,,ig,,igbo,,,ig

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,27,152,158,0,0,0,0,27,152,id.po,,id,,indonesian,,,id

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,52,345,326,1,4,0,0,53,349,hy.po,,hy,,armenian,,,hy

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,27,152,127,0,0,0,0,27,152,hu.po,,hu,,hungarian,,,hu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,27,152,138,0,0,0,0,27,152,hr.po,,hr,,croatian,,,hr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,23,146,172,0,0,0,0,23,146,hi.po,,hi,,hindi,,,hi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,23,146,141,0,0,0,0,23,146,he.po,,he,,hebrew,,,he

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ha.po,29,203,314,3,14,20,132,52,349,ha.po,,ha,,hausa,,,ha

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,23,146,163,0,0,0,0,23,146,gu.po,,gu,,gujarati,,,gu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,27,152,175,0,0,0,0,27,152,gl.po,,gl,,galician,,,gl

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,23,146,198,0,0,0,0,23,146,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,27,136,146,0,0,9,97,36,233,ga.po,,ga,,irish,,,ga

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fy.po,40,209,219,0,0,21,229,61,438,fy.po,,fy,,western frisian,,,fy

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,27,152,172,0,0,0,0,27,152,fur.po,,fur,,friulian,,,fur

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,27,152,176,0,0,0,0,27,152,fr.po,,fr,,french,,,fr

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,27,152,136,0,0,0,0,27,152,fi.po,,fi,,finnish,,,fi

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,23,146,161,0,0,0,0,23,146,fa.po,,fa,,persian,,,fa

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,27,152,142,0,0,0,0,27,152,eu.po,,eu,,basque,,,eu

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,23,146,128,0,0,0,0,23,146,et.po,,et,,estonian,,,et

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,27,152,176,0,0,0,0,27,152,es.po,,es,,spanish,,,es

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,27,152,159,0,0,0,0,27,152,eo.po,,eo,,esperanto,,,eo

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,27,152,152,0,0,0,0,27,152,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,76,330,330,0,0,0,0,76,330,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,49,334,334,12,104,0,0,61,438,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/en.po,12,34,34,0,0,0,0,12,34,en.po,,en,,english,,,en

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,27,152,166,0,0,0,0,27,152,el.po,,el,,greek,,,el

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,69,283,161,0,0,0,0,69,283,dz.po,,dz,,dzongkha,,,dz

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,27,152,145,0,0,0,0,27,152,de.po,,de,,german,,,de

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,27,152,145,0,0,0,0,27,152,da.po,,da,,danish,,,da

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,73,323,336,0,0,0,0,73,323,cy.po,,cy,,welsh,,,cy

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/csb.po,31,235,231,0,0,0,0,31,235,csb.po,,csb,,kashubian,,,csb

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,27,152,135,0,0,0,0,27,152,cs.po,,cs,,czech,,,cs

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/crh.po,36,233,216,0,0,0,0,36,233,crh.po,,crh,,crimean turkish,,,crh

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,23,146,175,0,0,0,0,23,146,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,27,152,184,0,0,0,0,27,152,ca.po,,ca,,catalan,,,ca

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,23,146,134,0,0,0,0,23,146,bs.po,,bs,,bosnian,,,bs

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/br.po,51,335,372,1,4,1,10,53,349,br.po,,br,,breton,,,br

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,23,146,153,0,0,0,0,23,146,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,31,235,225,0,0,0,0,31,235,bn.po,,bn,,bangla,,,bn

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,23,146,149,0,0,0,0,23,146,bg.po,,bg,,bulgarian,,,bg

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,52,349,326,0,0,0,0,52,349,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,27,152,156,0,0,0,0,27,152,be.po,,be,,belarusian,,,be

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,72,316,299,1,4,0,0,73,320,az.po,,az,,azerbaijani,,,az

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,23,207,230,0,0,0,0,23,207,ast.po,,ast,,asturian,,,ast

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,23,146,151,0,0,0,0,23,146,as.po,,as,,assamese,,,as

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,27,152,143,0,0,0,0,27,152,ar.po,,ar,,arabic,,,ar

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,23,146,161,0,0,0,0,23,146,an.po,,an,,aragonese,,,an

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,32,92,97,19,36,22,192,73,320,am.po,,am,,amharic,,,am

+ gnome-desktop3-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,31,235,249,0,0,0,0,31,235,af.po,,af,,afrikaans,,,af

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,735,3945,1147,0,0,0,0,735,3945,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,632,3423,980,0,0,0,0,632,3423,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,714,3822,1132,0,0,0,0,714,3822,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,693,3718,4930,0,0,0,0,693,3718,vi.po,,vi,,vietnamese,,,vi

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,417,2229,2007,0,0,0,0,417,2229,uk.po,,uk,,ukrainian,,,uk

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,734,3775,3382,0,0,3,88,737,3863,ug.po,,ug,,uyghur,,,ug

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,737,3949,3398,0,0,0,0,737,3949,tr.po,,tr,,turkish,,,tr

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,654,3543,1165,0,0,0,0,654,3543,th.po,,th,,thai,,,th

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,610,3061,3051,56,394,46,350,712,3805,tg.po,,tg,,tajik,,,tg

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,632,3423,2829,0,0,0,0,632,3423,te.po,,te,,telugu,,,te

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,632,3423,2869,0,0,0,0,632,3423,ta.po,,ta,,tamil,,,ta

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,737,3949,3788,0,0,0,0,737,3949,sv.po,,sv,,swedish,,,sv

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,713,3820,3823,0,0,0,0,713,3820,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,737,3949,3936,0,0,0,0,737,3949,sr.po,,sr,,serbian,,,sr

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,737,3949,3882,0,0,0,0,737,3949,sl.po,,sl,,slovenian,,,sl

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,728,3883,3813,0,0,9,66,737,3949,sk.po,,sk,,slovak,,,sk

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,737,3949,3517,0,0,0,0,737,3949,ru.po,,ru,,russian,,,ru

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,737,3949,4555,0,0,0,0,737,3949,ro.po,,ro,,romanian,,,ro

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,737,3949,4642,0,0,0,0,737,3949,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,653,3535,4016,0,0,0,0,653,3535,pt.po,,pt,,portuguese,,,pt

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,737,3949,3807,0,0,0,0,737,3949,pl.po,,pl,,polish,,,pl

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,632,3423,3769,0,0,0,0,632,3423,pa.po,,pa,,punjabi,,,pa

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,632,3423,3434,0,0,0,0,632,3423,or.po,,or,,odia,,,or

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,654,3543,4230,0,0,0,0,654,3543,oc.po,,oc,,occitan,,,oc

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,737,3949,4014,0,0,0,0,737,3949,nl.po,,nl,,dutch,,,nl

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,196,389,411,229,745,207,2289,632,3423,ne.po,,ne,,nepali,,,ne

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,679,3489,3459,7,90,7,139,693,3718,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,515,1288,1281,0,0,562,3256,1077,4544,ms.po,,ms,,malay,,,ms

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,632,3423,3032,0,0,0,0,632,3423,mr.po,,mr,,marathi,,,mr

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,737,3863,2984,0,0,0,0,737,3863,ml.po,,ml,,malayalam,,,ml

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,1077,4544,4989,0,0,0,0,1077,4544,mk.po,,mk,,macedonian,,,mk

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,111,148,208,0,0,700,3894,811,4042,mai.po,,mai,,maithili,,,mai

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,737,3949,3567,0,0,0,0,737,3949,lv.po,,lv,,latvian,,,lv

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,737,3949,3422,0,0,0,0,737,3949,lt.po,,lt,,lithuanian,,,lt

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,224,475,516,107,331,746,3738,1077,4544,ku.po,,ku,,kurdish,,,ku

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,737,3949,3249,0,0,0,0,737,3949,ko.po,,ko,,korean,,,ko

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,632,3423,2888,0,0,0,0,632,3423,kn.po,,kn,,kannada,,,kn

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,632,3423,1312,0,0,0,0,632,3423,km.po,,km,,khmer,,,km

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,478,1684,1634,0,0,259,2265,737,3949,kk.po,,kk,,kazakh,,,kk

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,727,3859,1289,0,0,10,90,737,3949,ja.po,,ja,,japanese,,,ja

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,737,3949,4170,0,0,0,0,737,3949,it.po,,it,,italian,,,it

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,424,1227,1270,0,0,311,2718,735,3945,is.po,,is,,icelandic,,,is

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,737,3949,3815,0,0,0,0,737,3949,id.po,,id,,indonesian,,,id

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hy.po,1075,4544,4122,0,0,0,0,1075,4544,hy.po,,hy,,armenian,,,hy

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,737,3949,3494,0,0,0,0,737,3949,hu.po,,hu,,hungarian,,,hu

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,735,3945,3635,0,0,0,0,735,3945,hr.po,,hr,,croatian,,,hr

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,632,3423,4135,0,0,0,0,632,3423,hi.po,,hi,,hindi,,,hi

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,653,3522,3213,1,21,0,0,654,3543,he.po,,he,,hebrew,,,he

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,652,3533,3852,0,0,0,0,652,3533,gu.po,,gu,,gujarati,,,gu

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,737,3949,4777,0,0,0,0,737,3949,gl.po,,gl,,galician,,,gl

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,713,3820,5126,0,0,0,0,713,3820,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,205,416,464,29,89,516,3404,750,3909,ga.po,,ga,,irish,,,ga

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,737,3949,4615,0,0,0,0,737,3949,fur.po,,fur,,friulian,,,fur

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,737,3949,4793,0,0,0,0,737,3949,fr.po,,fr,,french,,,fr

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,721,3829,2889,7,67,9,53,737,3949,fi.po,,fi,,finnish,,,fi

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,338,1227,1395,12,44,84,1038,434,2309,fa.po,,fa,,persian,,,fa

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,737,3949,3305,0,0,0,0,737,3949,eu.po,,eu,,basque,,,eu

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,545,3026,2339,0,0,0,0,545,3026,et.po,,et,,estonian,,,et

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,737,3949,4674,0,0,0,0,737,3949,es.po,,es,,spanish,,,es

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,638,3083,2957,0,0,95,839,733,3922,eo.po,,eo,,esperanto,,,eo

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,693,3718,3726,0,0,0,0,693,3718,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,455,1944,1944,620,2600,0,0,1075,4544,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,712,3805,4122,0,0,0,0,712,3805,el.po,,el,,greek,,,el

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,737,3949,3945,0,0,0,0,737,3949,de.po,,de,,german,,,de

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,735,3945,3719,0,0,0,0,735,3945,da.po,,da,,danish,,,da

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,737,3949,3880,0,0,0,0,737,3949,cs.po,,cs,,czech,,,cs

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,693,3718,4784,0,0,0,0,693,3718,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,737,3949,5051,0,0,0,0,737,3949,ca.po,,ca,,catalan,,,ca

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,636,3435,3325,0,0,0,0,636,3435,bs.po,,bs,,bosnian,,,bs

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,632,3423,3588,0,0,0,0,632,3423,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,1075,4544,4689,0,0,0,0,1075,4544,bn.po,,bn,,bangla,,,bn

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,545,3026,3514,0,0,0,0,545,3026,bg.po,,bg,,bulgarian,,,bg

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,693,3718,3424,0,0,0,0,693,3718,be.po,,be,,belarusian,,,be

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,1075,4544,5095,0,0,0,0,1075,4544,ast.po,,ast,,asturian,,,ast

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,632,3423,3389,0,0,0,0,632,3423,as.po,,as,,assamese,,,as

+ gnome-disk-utility-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,265,995,1082,159,753,287,2054,711,3802,ar.po,,ar,,arabic,,,ar

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,45,142,113,0,0,156,385,201,527,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,27,110,89,0,0,0,0,27,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,130,52,0,0,0,0,30,130,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,18,32,33,0,0,0,0,18,32,xh.po,,xh,,xhosa,,,xh

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,2,2,2,5,6,11,24,18,32,wa.po,,wa,,walloon,,,wa

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,29,113,180,0,0,0,0,29,113,vi.po,,vi,,vietnamese,,,vi

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,28,116,96,0,0,0,0,28,116,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,130,108,0,0,0,0,30,130,uk.po,,uk,,ukrainian,,,uk

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,24,46,63,0,0,0,0,24,46,ug.po,,ug,,uyghur,,,ug

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,201,529,572,0,0,0,0,201,529,tr.po,,tr,,turkish,,,tr

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,30,130,57,0,0,0,0,30,130,th.po,,th,,thai,,,th

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,30,130,140,0,0,0,0,30,130,tg.po,,tg,,tajik,,,tg

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,26,109,92,0,0,0,0,26,109,te.po,,te,,telugu,,,te

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,26,109,95,0,0,0,0,26,109,ta.po,,ta,,tamil,,,ta

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,201,529,487,0,0,0,0,201,529,sv.po,,sv,,swedish,,,sv

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,182,470,518,0,0,0,0,182,470,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,201,529,576,0,0,0,0,201,529,sr.po,,sr,,serbian,,,sr

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,7,9,11,23,18,32,sq.po,,sq,,albanian,,,sq

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,182,470,521,0,0,0,0,182,470,sl.po,,sl,,slovenian,,,sl

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,83,234,236,0,0,99,236,182,470,sk.po,,sk,,slovak,,,sk

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,7,9,11,23,18,32,si.po,,si,,sinhala,,,si

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,5,6,13,26,18,32,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,58,172,188,0,0,124,298,182,470,ru.po,,ru,,russian,,,ru

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,201,529,617,0,0,0,0,201,529,ro.po,,ro,,romanian,,,ro

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,201,529,727,0,0,0,0,201,529,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,30,130,161,0,0,0,0,30,130,pt.po,,pt,,portuguese,,,pt

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,0,0,0,7,9,11,23,18,32,ps.po,,ps,,pashto,,,ps

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,201,529,614,0,0,0,0,201,529,pl.po,,pl,,polish,,,pl

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,27,110,137,0,0,0,0,27,110,pa.po,,pa,,punjabi,,,pa

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,26,109,105,0,0,0,0,26,109,or.po,,or,,odia,,,or

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,130,332,389,0,0,0,0,130,332,oc.po,,oc,,occitan,,,oc

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,1,1,1,6,8,11,23,18,32,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,201,529,452,0,0,0,0,201,529,nl.po,,nl,,dutch,,,nl

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,29,113,110,0,0,0,0,29,113,ne.po,,ne,,nepali,,,ne

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,7,9,11,23,18,32,nds.po,,nds,,low german,,,nds

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,41,130,131,1,2,142,340,184,472,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,2,2,2,4,5,12,25,18,32,ms.po,,ms,,malay,,,ms

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,26,109,99,0,0,0,0,26,109,mr.po,,mr,,marathi,,,mr

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,2,2,2,4,5,12,25,18,32,mn.po,,mn,,mongolian,,,mn

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,129,347,369,0,0,72,180,201,527,ml.po,,ml,,malayalam,,,ml

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,7,9,11,23,18,32,mk.po,,mk,,macedonian,,,mk

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,7,9,11,23,18,32,mg.po,,mg,,malagasy,,,mg

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,7,9,11,23,18,32,mai.po,,mai,,maithili,,,mai

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,201,529,544,0,0,0,0,201,529,lv.po,,lv,,latvian,,,lv

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,201,529,531,0,0,0,0,201,529,lt.po,,lt,,lithuanian,,,lt

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,22,39,46,0,0,0,0,22,39,ky.po,,ky,,kyrgyz,,,ky

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,6,7,12,25,18,32,ku.po,,ku,,kurdish,,,ku

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,201,529,521,0,0,0,0,201,529,ko.po,,ko,,korean,,,ko

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,26,109,94,0,0,0,0,26,109,kn.po,,kn,,kannada,,,kn

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,18,32,35,0,0,0,0,18,32,km.po,,km,,khmer,,,km

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,77,206,198,0,0,124,323,201,529,kk.po,,kk,,kazakh,,,kk

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,7,9,11,23,18,32,ka.po,,ka,,georgian,,,ka

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,30,130,120,0,0,0,0,30,130,ja.po,,ja,,japanese,,,ja

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,201,529,600,0,0,0,0,201,529,it.po,,it,,italian,,,it

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,106,294,280,0,0,95,233,201,527,is.po,,is,,icelandic,,,is

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,201,529,577,0,0,0,0,201,529,id.po,,id,,indonesian,,,id

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,201,529,583,0,0,0,0,201,529,hu.po,,hu,,hungarian,,,hu

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,201,527,562,0,0,0,0,201,527,hr.po,,hr,,croatian,,,hr

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,26,109,121,0,0,0,0,26,109,hi.po,,hi,,hindi,,,hi

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,30,130,132,0,0,0,0,30,130,he.po,,he,,hebrew,,,he

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,26,109,120,0,0,0,0,26,109,gu.po,,gu,,gujarati,,,gu

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,201,529,668,0,0,0,0,201,529,gl.po,,gl,,galician,,,gl

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,29,113,153,0,0,0,0,29,113,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,24,46,57,0,0,1,1,25,47,ga.po,,ga,,irish,,,ga

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,104,286,321,0,0,97,243,201,529,fur.po,,fur,,friulian,,,fur

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,201,529,626,0,0,0,0,201,529,fr.po,,fr,,french,,,fr

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,44,140,115,0,0,157,389,201,529,fi.po,,fi,,finnish,,,fi

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,29,113,129,0,0,0,0,29,113,fa.po,,fa,,persian,,,fa

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,29,113,100,0,0,0,0,29,113,eu.po,,eu,,basque,,,eu

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,25,47,74,0,0,0,0,25,47,et.po,,et,,estonian,,,et

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,201,529,657,0,0,0,0,201,529,es.po,,es,,spanish,,,es

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,127,341,339,0,0,74,186,201,527,eo.po,,eo,,esperanto,,,eo

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,182,470,473,0,0,0,0,182,470,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,0,0,0,7,9,11,23,18,32,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,29,113,165,0,0,0,0,29,113,el.po,,el,,greek,,,el

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,7,9,11,23,18,32,dz.po,,dz,,dzongkha,,,dz

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,201,529,513,0,0,0,0,201,529,de.po,,de,,german,,,de

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,201,529,502,0,0,0,0,201,529,da.po,,da,,danish,,,da

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,1,1,1,7,9,10,22,18,32,cy.po,,cy,,welsh,,,cy

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,201,529,560,0,0,0,0,201,529,cs.po,,cs,,czech,,,cs

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,0,0,0,7,9,11,23,18,32,crh.po,,crh,,crimean turkish,,,crh

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,29,113,159,0,0,0,0,29,113,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,201,529,653,0,0,0,0,201,529,ca.po,,ca,,catalan,,,ca

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,30,130,127,0,0,0,0,30,130,bs.po,,bs,,bosnian,,,bs

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,24,46,58,0,0,0,0,24,46,br.po,,br,,breton,,,br

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,26,109,116,0,0,0,0,26,109,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,7,9,11,23,18,32,bn.po,,bn,,bangla,,,bn

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,29,113,133,0,0,0,0,29,113,bg.po,,bg,,bulgarian,,,bg

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,0,0,0,7,9,11,23,18,32,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,29,113,109,0,0,0,0,29,113,be.po,,be,,belarusian,,,be

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,2,2,2,4,5,12,25,18,32,az.po,,az,,azerbaijani,,,az

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,18,32,41,0,0,0,0,18,32,ast.po,,ast,,asturian,,,ast

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,27,110,118,0,0,0,0,27,110,as.po,,as,,assamese,,,as

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,201,527,554,0,0,0,0,201,527,ar.po,,ar,,arabic,,,ar

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,30,130,149,0,0,0,0,30,130,an.po,,an,,aragonese,,,an

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,2,2,2,5,6,11,24,18,32,am.po,,am,,amharic,,,am

+ gnome-font-viewer-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,25,47,48,0,0,0,0,25,47,af.po,,af,,afrikaans,,,af

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/nl/nl.po,345,2507,2522,0,0,0,0,345,2507,nl.po,,nl,,dutch,,,nl

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/cs/cs.po,345,2507,2172,0,0,0,0,345,2507,cs.po,,cs,,czech,,,cs

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gl/gl.po,345,2507,2585,0,0,0,0,345,2507,gl.po,,gl,,galician,,,gl

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lt/lt.po,345,2507,1885,0,0,0,0,345,2507,lt.po,,lt,,lithuanian,,,lt

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pl/pl.po,345,2507,2035,0,0,0,0,345,2507,pl.po,,pl,,polish,,,pl

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hr/hr.po,345,2507,2100,0,0,0,0,345,2507,hr.po,,hr,,croatian,,,hr

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fr/fr.po,339,2481,2571,0,0,0,0,339,2481,fr.po,,fr,,french,,,fr

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ko/ko.po,345,2507,1687,0,0,0,0,345,2507,ko.po,,ko,,korean,,,ko

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/el/el.po,337,2501,2544,0,0,0,0,337,2501,el.po,,el,,greek,,,el

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/de/de.po,345,2507,2486,0,0,0,0,345,2507,de.po,,de,,german,,,de

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/id/id.po,338,2508,2197,0,0,0,0,338,2508,id.po,,id,,indonesian,,,id

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/kn/kn.po,339,2639,1983,0,0,0,0,339,2639,kn.po,,kn,,kannada,,,kn

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fi/fi.po,345,2507,1623,0,0,0,0,345,2507,fi.po,,fi,,finnish,,,fi

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lv/lv.po,345,2507,1970,0,0,0,0,345,2507,lv.po,,lv,,latvian,,,lv

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ru/ru.po,335,2569,2126,0,0,0,0,335,2569,ru.po,,ru,,russian,,,ru

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_tw/zh_tw.po,339,2639,605,0,0,0,0,339,2639,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt/pt.po,337,2506,2522,0,0,0,0,337,2506,pt.po,,pt,,portuguese,,,pt

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sv/sv.po,345,2507,2296,0,0,0,0,345,2507,sv.po,,sv,,swedish,,,sv

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/da/da.po,345,2507,2309,0,0,0,0,345,2507,da.po,,da,,danish,,,da

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/eo/eo.po,338,2397,2161,0,0,7,110,345,2507,eo.po,,eo,,esperanto,,,eo

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hu/hu.po,345,2507,2112,0,0,0,0,345,2507,hu.po,,hu,,hungarian,,,hu

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ca/ca.po,322,2248,2660,16,260,0,0,338,2508,ca.po,,ca,,catalan,,,ca

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr@latin/sr@latin.po,338,2508,2306,0,0,0,0,338,2508,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/mr/mr.po,339,2639,2044,0,0,0,0,339,2639,mr.po,,mr,,marathi,,,mr

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/as/as.po,339,2639,2245,0,0,0,0,339,2639,as.po,,as,,assamese,,,as

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ta/ta.po,339,2639,1992,0,0,0,0,339,2639,ta.po,,ta,,tamil,,,ta

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/es/es.po,345,2507,2748,0,0,0,0,345,2507,es.po,,es,,spanish,,,es

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr/sr.po,345,2507,2311,0,0,0,0,345,2507,sr.po,,sr,,serbian,,,sr

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gu/gu.po,322,2301,2180,6,125,11,213,339,2639,gu.po,,gu,,gujarati,,,gu

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ro/ro.po,345,2507,2494,0,0,0,0,345,2507,ro.po,,ro,,romanian,,,ro

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ja/ja.po,337,2501,487,0,0,0,0,337,2501,ja.po,,ja,,japanese,,,ja

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/he/he.po,337,2506,1879,0,0,0,0,337,2506,he.po,,he,,hebrew,,,he

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_hk/zh_hk.po,339,2639,605,0,0,0,0,339,2639,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hi/hi.po,339,2639,2791,0,0,0,0,339,2639,hi.po,,hi,,hindi,,,hi

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt_br/pt_br.po,345,2507,2665,0,0,0,0,345,2507,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/te/te.po,339,2639,1846,0,0,0,0,339,2639,te.po,,te,,telugu,,,te

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pa/pa.po,339,2639,2801,0,0,0,0,339,2639,pa.po,,pa,,punjabi,,,pa

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sk/sk.po,336,2499,2115,1,2,0,0,337,2501,sk.po,,sk,,slovak,,,sk

+ gnome-getting-started-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/it/it.po,345,2507,2429,0,0,0,0,345,2507,it.po,,it,,italian,,,it

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/is.po,31,34,35,1,2,14,16,46,52,is.po,,is,,icelandic,,,is

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gd.po,2,4,4,0,0,0,0,2,4,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/eu.po,38,43,43,0,0,0,0,38,43,eu.po,,eu,,basque,,,eu

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fur.po,38,43,44,0,0,0,0,38,43,fur.po,,fur,,friulian,,,fur

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sk.po,38,43,45,0,0,0,0,38,43,sk.po,,sk,,slovak,,,sk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/cy.po,47,53,70,0,0,0,0,47,53,cy.po,,cy,,welsh,,,cy

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/am.po,21,21,21,3,7,22,24,46,52,am.po,,am,,amharic,,,am

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/km.po,2,4,4,0,0,0,0,2,4,km.po,,km,,khmer,,,km

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sv.po,40,45,44,0,0,0,0,40,45,sv.po,,sv,,swedish,,,sv

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fr.po,38,43,48,0,0,0,0,38,43,fr.po,,fr,,french,,,fr

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sl.po,38,43,45,0,0,0,0,38,43,sl.po,,sl,,slovenian,,,sl

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/cs.po,38,43,46,0,0,0,0,38,43,cs.po,,cs,,czech,,,cs

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_tw.po,16,20,18,0,0,0,0,16,20,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fa.po,47,53,71,0,0,0,0,47,53,fa.po,,fa,,persian,,,fa

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mg.po,44,49,54,1,1,0,0,45,50,mg.po,,mg,,malagasy,,,mg

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/si.po,44,49,55,0,0,0,0,44,49,si.po,,si,,sinhala,,,si

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/af.po,38,43,39,0,0,0,0,38,43,af.po,,af,,afrikaans,,,af

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ca.po,40,45,47,0,0,0,0,40,45,ca.po,,ca,,catalan,,,ca

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hu.po,16,20,19,0,0,0,0,16,20,hu.po,,hu,,hungarian,,,hu

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ru.po,38,43,48,0,0,0,0,38,43,ru.po,,ru,,russian,,,ru

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/de.po,46,51,55,0,0,0,0,46,51,de.po,,de,,german,,,de

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sr@latin.po,16,20,21,0,0,0,0,16,20,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/lv.po,2,4,4,0,0,0,0,2,4,lv.po,,lv,,latvian,,,lv

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nds.po,16,20,20,0,0,0,0,16,20,nds.po,,nds,,low german,,,nds

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bn_in.po,46,51,55,0,0,0,0,46,51,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/br.po,16,20,22,0,0,0,0,16,20,br.po,,br,,breton,,,br

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mk.po,38,43,47,0,0,0,0,38,43,mk.po,,mk,,macedonian,,,mk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/xh.po,47,53,63,0,0,0,0,47,53,xh.po,,xh,,xhosa,,,xh

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uk.po,38,43,47,0,0,0,0,38,43,uk.po,,uk,,ukrainian,,,uk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/or.po,2,4,5,0,0,0,0,2,4,or.po,,or,,odia,,,or

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/wa.po,27,28,30,2,5,17,19,46,52,wa.po,,wa,,walloon,,,wa

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tk.po,33,36,37,1,2,12,14,46,52,tk.po,,tk,,turkmen,,,tk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pt.po,38,43,47,0,0,0,0,38,43,pt.po,,pt,,portuguese,,,pt

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/as.po,2,4,4,0,0,0,0,2,4,as.po,,as,,assamese,,,as

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pt_br.po,16,20,23,0,0,0,0,16,20,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/oc.po,14,16,18,0,0,2,4,16,20,oc.po,,oc,,occitan,,,oc

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en_ca.po,38,43,43,0,0,0,0,38,43,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/el.po,2,4,5,0,0,0,0,2,4,el.po,,el,,greek,,,el

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fi.po,46,51,56,0,0,0,0,46,51,fi.po,,fi,,finnish,,,fi

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tr.po,16,20,21,0,0,0,0,16,20,tr.po,,tr,,turkish,,,tr

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/vi.po,47,51,129,0,0,0,0,47,51,vi.po,,vi,,vietnamese,,,vi

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ro.po,16,20,22,0,0,0,0,16,20,ro.po,,ro,,romanian,,,ro

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ne.po,38,43,42,0,0,0,0,38,43,ne.po,,ne,,nepali,,,ne

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nb.po,2,4,4,0,0,0,0,2,4,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uz.po,16,20,22,0,0,0,0,16,20,uz.po,,uz,,uzbek,,,uz

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/kn.po,2,4,4,0,0,0,0,2,4,kn.po,,kn,,kannada,,,kn

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/eo.po,2,4,3,0,0,0,0,2,4,eo.po,,eo,,esperanto,,,eo

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bn.po,2,4,4,0,0,0,0,2,4,bn.po,,bn,,bangla,,,bn

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ps.po,16,20,21,0,0,0,0,16,20,ps.po,,ps,,pashto,,,ps

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/an.po,2,4,5,0,0,0,0,2,4,an.po,,an,,aragonese,,,an

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ka.po,47,53,56,0,0,0,0,47,53,ka.po,,ka,,georgian,,,ka

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ta.po,46,51,52,0,0,0,0,46,51,ta.po,,ta,,tamil,,,ta

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ms.po,39,45,45,0,0,7,7,46,52,ms.po,,ms,,malay,,,ms

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hr.po,16,20,22,0,0,0,0,16,20,hr.po,,hr,,croatian,,,hr

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mai.po,16,20,20,0,0,0,0,16,20,mai.po,,mai,,maithili,,,mai

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/he.po,38,43,48,0,0,0,0,38,43,he.po,,he,,hebrew,,,he

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/crh.po,16,20,18,0,0,0,0,16,20,crh.po,,crh,,crimean turkish,,,crh

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ca@valencia.po,2,4,6,0,0,0,0,2,4,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ku.po,2,4,5,0,0,0,0,2,4,ku.po,,ku,,kurdish,,,ku

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/csb.po,2,4,4,0,0,0,0,2,4,csb.po,,csb,,kashubian,,,csb

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mn.po,33,36,36,1,2,12,14,46,52,mn.po,,mn,,mongolian,,,mn

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nn.po,2,4,3,0,0,0,0,2,4,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en@shaw.po,2,4,4,0,0,0,0,2,4,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ast.po,16,20,21,0,0,0,0,16,20,ast.po,,ast,,asturian,,,ast

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/et.po,46,51,48,0,0,0,0,46,51,et.po,,et,,estonian,,,et

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bs.po,46,52,51,0,0,0,0,46,52,bs.po,,bs,,bosnian,,,bs

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ga.po,38,43,49,0,0,0,0,38,43,ga.po,,ga,,irish,,,ga

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gu.po,46,51,52,0,0,0,0,46,51,gu.po,,gu,,gujarati,,,gu

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/en_gb.po,38,43,43,0,0,0,0,38,43,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_cn.po,38,43,39,0,0,0,0,38,43,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/th.po,40,45,41,0,0,0,0,40,45,th.po,,th,,thai,,,th

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/it.po,38,43,44,0,0,0,0,38,43,it.po,,it,,italian,,,it

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/tg.po,2,4,4,0,0,0,0,2,4,tg.po,,tg,,tajik,,,tg

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ko.po,38,43,45,0,0,0,0,38,43,ko.po,,ko,,korean,,,ko

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pl.po,2,4,4,0,0,0,0,2,4,pl.po,,pl,,polish,,,pl

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/li.po,22,22,22,3,7,21,23,46,52,li.po,,li,,limburgish,,,li

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/id.po,47,53,55,0,0,0,0,47,53,id.po,,id,,indonesian,,,id

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ar.po,16,20,21,0,0,0,0,16,20,ar.po,,ar,,arabic,,,ar

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ug.po,2,4,5,0,0,0,0,2,4,ug.po,,ug,,uyghur,,,ug

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,16,20,22,0,0,0,0,16,20,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ml.po,38,43,42,0,0,0,0,38,43,ml.po,,ml,,malayalam,,,ml

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/rw.po,18,18,19,12,16,17,19,47,53,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/lt.po,38,43,41,0,0,0,0,38,43,lt.po,,lt,,lithuanian,,,lt

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/kk.po,16,20,23,0,0,0,0,16,20,kk.po,,kk,,kazakh,,,kk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sq.po,38,43,56,0,0,0,0,38,43,sq.po,,sq,,albanian,,,sq

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/te.po,48,54,56,0,0,0,0,48,54,te.po,,te,,telugu,,,te

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/sr.po,16,20,21,0,0,0,0,16,20,sr.po,,sr,,serbian,,,sr

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/dz.po,46,51,47,0,0,0,0,46,51,dz.po,,dz,,dzongkha,,,dz

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/fy.po,2,4,4,0,0,0,0,2,4,fy.po,,fy,,western frisian,,,fy

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/be.po,2,4,4,0,0,0,0,2,4,be.po,,be,,belarusian,,,be

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/bg.po,2,4,5,0,0,0,0,2,4,bg.po,,bg,,bulgarian,,,bg

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/hi.po,16,20,20,0,0,0,0,16,20,hi.po,,hi,,hindi,,,hi

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/mr.po,38,43,43,0,0,0,0,38,43,mr.po,,mr,,marathi,,,mr

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/be@latin.po,38,43,44,0,0,0,0,38,43,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/nl.po,46,51,50,0,0,0,0,46,51,nl.po,,nl,,dutch,,,nl

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/es.po,16,20,21,0,0,0,0,16,20,es.po,,es,,spanish,,,es

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/da.po,38,43,43,0,0,0,0,38,43,da.po,,da,,danish,,,da

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/gl.po,2,4,5,0,0,0,0,2,4,gl.po,,gl,,galician,,,gl

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/ja.po,2,4,4,0,0,0,0,2,4,ja.po,,ja,,japanese,,,ja

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/pa.po,16,20,20,0,0,0,0,16,20,pa.po,,pa,,punjabi,,,pa

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/zh_hk.po,16,20,18,0,0,0,0,16,20,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-icon-theme-3.12.0-11.fc30.src.rpm.stats.csv,po/az.po,46,52,56,0,0,0,0,46,52,az.po,,az,,azerbaijani,,,az

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,123,853,147,0,0,0,0,123,853,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,87,417,109,0,0,0,0,87,417,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,122,849,146,0,0,0,0,122,849,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,120,766,1067,0,0,0,0,120,766,vi.po,,vi,,vietnamese,,,vi

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,126,849,683,0,0,0,0,126,849,uk.po,,uk,,ukrainian,,,uk

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,83,318,269,0,0,0,0,83,318,ug.po,,ug,,uyghur,,,ug

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,123,853,694,0,0,0,0,123,853,tr.po,,tr,,turkish,,,tr

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,68,234,87,0,0,0,0,68,234,th.po,,th,,thai,,,th

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,112,737,776,0,0,0,0,112,737,tg.po,,tg,,tajik,,,tg

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,103,585,475,0,0,0,0,103,585,te.po,,te,,telugu,,,te

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,103,585,494,0,0,0,0,103,585,ta.po,,ta,,tamil,,,ta

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,123,853,815,0,0,0,0,123,853,sv.po,,sv,,swedish,,,sv

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,121,761,712,0,0,0,0,121,761,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,123,853,789,0,0,0,0,123,853,sr.po,,sr,,serbian,,,sr

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,123,853,743,0,0,0,0,123,853,sl.po,,sl,,slovenian,,,sl

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,122,852,780,0,0,0,0,122,852,sk.po,,sk,,slovak,,,sk

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,123,853,721,0,0,0,0,123,853,ru.po,,ru,,russian,,,ru

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,123,853,890,0,0,0,0,123,853,ro.po,,ro,,romanian,,,ro

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,123,853,879,0,0,0,0,123,853,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,126,849,878,0,0,0,0,126,849,pt.po,,pt,,portuguese,,,pt

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,123,853,736,0,0,0,0,123,853,pl.po,,pl,,polish,,,pl

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,122,848,948,0,0,0,0,122,848,pa.po,,pa,,punjabi,,,pa

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,103,585,626,0,0,0,0,103,585,or.po,,or,,odia,,,or

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,122,848,907,0,0,0,0,122,848,oc.po,,oc,,occitan,,,oc

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,123,853,837,0,0,0,0,123,853,nl.po,,nl,,dutch,,,nl

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,71,202,184,14,62,35,502,120,766,ne.po,,ne,,nepali,,,ne

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,121,844,809,1,4,0,0,122,848,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,103,585,545,0,0,0,0,103,585,mr.po,,mr,,marathi,,,mr

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,122,848,636,0,0,0,0,122,848,ml.po,,ml,,malayalam,,,ml

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,123,853,682,0,0,0,0,123,853,lv.po,,lv,,latvian,,,lv

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,123,853,715,0,0,0,0,123,853,lt.po,,lt,,lithuanian,,,lt

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,123,853,577,0,0,0,0,123,853,ko.po,,ko,,korean,,,ko

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,103,585,495,0,0,0,0,103,585,kn.po,,kn,,kannada,,,kn

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,123,853,704,0,0,0,0,123,853,kk.po,,kk,,kazakh,,,kk

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,119,821,143,0,0,3,27,122,848,ja.po,,ja,,japanese,,,ja

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,123,853,864,0,0,0,0,123,853,it.po,,it,,italian,,,it

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,122,848,803,0,0,0,0,122,848,is.po,,is,,icelandic,,,is

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,123,853,847,0,0,0,0,123,853,id.po,,id,,indonesian,,,id

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ia.po,75,316,351,0,0,0,0,75,316,ia.po,,ia,,interlingua,,,ia

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,123,853,743,0,0,0,0,123,853,hu.po,,hu,,hungarian,,,hu

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,123,853,753,0,0,0,0,123,853,hr.po,,hr,,croatian,,,hr

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,103,585,721,0,0,0,0,103,585,hi.po,,hi,,hindi,,,hi

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,125,842,692,0,0,0,0,125,842,he.po,,he,,hebrew,,,he

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,103,585,615,0,0,0,0,103,585,gu.po,,gu,,gujarati,,,gu

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,123,853,911,0,0,0,0,123,853,gl.po,,gl,,galician,,,gl

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,122,849,1008,0,0,0,0,122,849,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,69,230,260,1,5,42,502,112,737,ga.po,,ga,,irish,,,ga

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,123,853,983,0,0,0,0,123,853,fur.po,,fur,,friulian,,,fur

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,123,853,967,0,0,0,0,123,853,fr.po,,fr,,french,,,fr

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,123,853,606,0,0,0,0,123,853,fi.po,,fi,,finnish,,,fi

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,120,766,844,0,0,0,0,120,766,fa.po,,fa,,persian,,,fa

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,122,848,692,0,0,0,0,122,848,eu.po,,eu,,basque,,,eu

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,87,372,308,0,0,0,0,87,372,et.po,,et,,estonian,,,et

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,123,853,952,0,0,0,0,123,853,es.po,,es,,spanish,,,es

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,122,852,769,0,0,0,0,122,852,eo.po,,eo,,esperanto,,,eo

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,120,766,766,0,0,0,0,120,766,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,123,853,909,0,0,0,0,123,853,el.po,,el,,greek,,,el

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,123,853,826,0,0,0,0,123,853,de.po,,de,,german,,,de

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,123,853,755,0,0,0,0,123,853,da.po,,da,,danish,,,da

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,123,853,763,0,0,0,0,123,853,cs.po,,cs,,czech,,,cs

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,120,766,832,0,0,0,0,120,766,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,123,853,895,0,0,0,0,123,853,ca.po,,ca,,catalan,,,ca

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,109,638,580,0,0,0,0,109,638,bs.po,,bs,,bosnian,,,bs

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,82,364,392,0,0,0,0,82,364,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,120,766,763,0,0,0,0,120,766,bg.po,,bg,,bulgarian,,,bg

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,120,766,687,0,0,0,0,120,766,be.po,,be,,belarusian,,,be

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,103,585,606,0,0,0,0,103,585,as.po,,as,,assamese,,,as

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,120,765,676,0,0,0,0,120,765,ar.po,,ar,,arabic,,,ar

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,109,638,711,0,0,0,0,109,638,an.po,,an,,aragonese,,,an

+ gnome-initial-setup-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,120,766,787,0,0,0,0,120,766,af.po,,af,,afrikaans,,,af

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fur.po,103,509,549,0,0,0,0,103,509,fur.po,,fur,,friulian,,,fur

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hi.po,112,553,619,0,0,0,0,112,553,hi.po,,hi,,hindi,,,hi

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/or.po,112,553,622,0,0,0,0,112,553,or.po,,or,,odia,,,or

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hr.po,103,509,456,0,0,0,0,103,509,hr.po,,hr,,croatian,,,hr

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ar.po,107,532,502,0,0,5,21,112,553,ar.po,,ar,,arabic,,,ar

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mg.po,7,25,34,20,165,82,300,109,490,mg.po,,mg,,malagasy,,,mg

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ko.po,103,509,431,0,0,0,0,103,509,ko.po,,ko,,korean,,,ko

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sv.po,103,509,492,0,0,0,0,103,509,sv.po,,sv,,swedish,,,sv

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mk.po,111,552,595,0,0,0,0,111,552,mk.po,,mk,,macedonian,,,mk

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/dz.po,25,148,69,19,131,65,211,109,490,dz.po,,dz,,dzongkha,,,dz

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/tg.po,21,25,31,0,0,91,528,112,553,tg.po,,tg,,tajik,,,tg

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/uk.po,112,553,526,0,0,0,0,112,553,uk.po,,uk,,ukrainian,,,uk

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/da.po,103,509,492,0,0,0,0,103,509,da.po,,da,,danish,,,da

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ne.po,43,119,125,48,307,12,83,103,509,ne.po,,ne,,nepali,,,ne

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/vi.po,106,532,734,0,0,0,0,106,532,vi.po,,vi,,vietnamese,,,vi

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sr.po,103,509,477,0,0,0,0,103,509,sr.po,,sr,,serbian,,,sr

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_hk.po,112,553,154,0,0,0,0,112,553,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ro.po,103,509,550,0,0,0,0,103,509,ro.po,,ro,,romanian,,,ro

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pa.po,112,553,604,0,0,0,0,112,553,pa.po,,pa,,punjabi,,,pa

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/es.po,103,509,613,0,0,0,0,103,509,es.po,,es,,spanish,,,es

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/tr.po,103,509,449,0,0,0,0,103,509,tr.po,,tr,,turkish,,,tr

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,109,490,109,490,is.po,,is,,icelandic,,,is

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/it.po,103,509,509,0,0,0,0,103,509,it.po,,it,,italian,,,it

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/km.po,111,552,250,0,0,0,0,111,552,km.po,,km,,khmer,,,km

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/de.po,103,509,509,0,0,0,0,103,509,de.po,,de,,german,,,de

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/lv.po,103,509,432,0,0,0,0,103,509,lv.po,,lv,,latvian,,,lv

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en_ca.po,8,28,28,26,182,75,280,109,490,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mai.po,21,45,48,10,78,78,367,109,490,mai.po,,mai,,maithili,,,mai

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/az.po,4,17,22,19,162,86,311,109,490,az.po,,az,,azerbaijani,,,az

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ca.po,103,509,594,0,0,0,0,103,509,ca.po,,ca,,catalan,,,ca

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/kn.po,112,553,489,0,0,0,0,112,553,kn.po,,kn,,kannada,,,kn

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/be@latin.po,62,256,234,23,133,24,101,109,490,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bs.po,112,553,522,0,0,0,0,112,553,bs.po,,bs,,bosnian,,,bs

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/af.po,100,474,460,3,4,6,12,109,490,af.po,,af,,afrikaans,,,af

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/th.po,112,553,189,0,0,0,0,112,553,th.po,,th,,thai,,,th

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nn.po,99,466,464,0,0,10,24,109,490,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ka.po,4,16,15,13,88,92,386,109,490,ka.po,,ka,,georgian,,,ka

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ga.po,24,116,142,12,74,73,300,109,490,ga.po,,ga,,irish,,,ga

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/as.po,112,553,566,0,0,0,0,112,553,as.po,,as,,assamese,,,as

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/xh.po,4,17,22,19,162,86,311,109,490,xh.po,,xh,,xhosa,,,xh

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mr.po,112,553,492,0,0,0,0,112,553,mr.po,,mr,,marathi,,,mr

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pt_br.po,103,509,569,0,0,0,0,103,509,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/eu.po,103,509,421,0,0,0,0,103,509,eu.po,,eu,,basque,,,eu

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ug.po,112,553,504,0,0,0,0,112,553,ug.po,,ug,,uyghur,,,ug

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gd.po,103,509,703,0,0,0,0,103,509,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/kk.po,103,509,466,0,0,0,0,103,509,kk.po,,kk,,kazakh,,,kk

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ast.po,234,928,1040,0,0,0,0,234,928,ast.po,,ast,,asturian,,,ast

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nb.po,103,509,522,0,0,0,0,103,509,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/nl.po,103,509,501,0,0,0,0,103,509,nl.po,,nl,,dutch,,,nl

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fi.po,93,473,375,0,0,10,36,103,509,fi.po,,fi,,finnish,,,fi

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/eo.po,103,509,471,0,0,0,0,103,509,eo.po,,eo,,esperanto,,,eo

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/lt.po,103,509,406,0,0,0,0,103,509,lt.po,,lt,,lithuanian,,,lt

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gu.po,112,553,599,0,0,0,0,112,553,gu.po,,gu,,gujarati,,,gu

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sq.po,25,148,180,24,150,60,192,109,490,sq.po,,sq,,albanian,,,sq

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fa.po,112,553,650,0,0,0,0,112,553,fa.po,,fa,,persian,,,fa

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/oc.po,103,509,570,0,0,0,0,103,509,oc.po,,oc,,occitan,,,oc

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/fr.po,103,509,664,0,0,0,0,103,509,fr.po,,fr,,french,,,fr

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ru.po,103,509,472,0,0,0,0,103,509,ru.po,,ru,,russian,,,ru

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sl.po,103,509,472,0,0,0,0,103,509,sl.po,,sl,,slovenian,,,sl

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bn.po,104,480,485,2,4,3,6,109,490,bn.po,,bn,,bangla,,,bn

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/cs.po,103,509,463,0,0,0,0,103,509,cs.po,,cs,,czech,,,cs

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,16,163,93,327,109,490,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bg.po,103,509,519,0,0,0,0,103,509,bg.po,,bg,,bulgarian,,,bg

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ml.po,103,509,403,0,0,0,0,103,509,ml.po,,ml,,malayalam,,,ml

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/be.po,103,509,464,0,0,0,0,103,509,be.po,,be,,belarusian,,,be

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/cy.po,6,22,30,21,168,82,300,109,490,cy.po,,cy,,welsh,,,cy

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/pl.po,103,509,483,0,0,0,0,103,509,pl.po,,pl,,polish,,,pl

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/mn.po,7,25,29,20,165,82,300,109,490,mn.po,,mn,,mongolian,,,mn

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_cn.po,103,509,135,0,0,0,0,103,509,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,103,509,594,0,0,0,0,103,509,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en_gb.po,112,553,555,0,0,0,0,112,553,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/id.po,103,509,494,0,0,0,0,103,509,id.po,,id,,indonesian,,,id

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/si.po,7,25,32,19,146,83,319,109,490,si.po,,si,,sinhala,,,si

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/et.po,112,553,474,0,0,0,0,112,553,et.po,,et,,estonian,,,et

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ta.po,112,553,481,0,0,0,0,112,553,ta.po,,ta,,tamil,,,ta

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sr@latin.po,103,509,477,0,0,0,0,103,509,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ja.po,103,509,143,0,0,0,0,103,509,ja.po,,ja,,japanese,,,ja

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/gl.po,103,509,613,0,0,0,0,103,509,gl.po,,gl,,galician,,,gl

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/he.po,103,509,480,0,0,0,0,103,509,he.po,,he,,hebrew,,,he

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/en@shaw.po,53,232,232,43,214,13,44,109,490,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/hu.po,103,509,445,0,0,0,0,103,509,hu.po,,hu,,hungarian,,,hu

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/sk.po,103,509,479,0,0,0,0,103,509,sk.po,,sk,,slovak,,,sk

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/bn_in.po,112,553,566,0,0,0,0,112,553,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/te.po,112,553,480,0,0,0,0,112,553,te.po,,te,,telugu,,,te

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/el.po,103,509,534,0,0,0,0,103,509,el.po,,el,,greek,,,el

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/zh_tw.po,103,509,136,0,0,0,0,103,509,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-keyring-3.31.91-1.fc30.src.rpm.stats.csv,po/ms.po,71,289,254,9,33,29,168,109,490,ms.po,,ms,,malay,,,ms

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,22,272,190,0,0,0,0,22,272,ko.po,,ko,,korean,,,ko

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,22,272,215,0,0,0,0,22,272,hu.po,,hu,,hungarian,,,hu

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,22,272,253,0,0,0,0,22,272,sv.po,,sv,,swedish,,,sv

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,22,272,251,0,0,0,0,22,272,gl.po,,gl,,galician,,,gl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,22,272,229,0,0,0,0,22,272,de.po,,de,,german,,,de

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,22,272,251,0,0,0,0,22,272,ru.po,,ru,,russian,,,ru

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,22,272,288,0,0,0,0,22,272,es.po,,es,,spanish,,,es

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/da/da.po,22,272,265,0,0,0,0,22,272,da.po,,da,,danish,,,da

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,22,272,209,0,0,0,0,22,272,pl.po,,pl,,polish,,,pl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,22,272,319,0,0,0,0,22,272,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,22,272,235,0,0,0,0,22,272,cs.po,,cs,,czech,,,cs

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,22,272,288,0,0,0,0,22,272,fr.po,,fr,,french,,,fr

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,22,272,313,0,0,0,0,22,272,el.po,,el,,greek,,,el

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,help/nl/nl.po,22,272,266,0,0,0,0,22,272,nl.po,,nl,,dutch,,,nl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,123,380,383,0,0,0,0,123,380,id.po,,id,,indonesian,,,id

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,37,115,133,0,0,0,0,37,115,pa.po,,pa,,punjabi,,,pa

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,37,115,106,0,0,0,0,37,115,te.po,,te,,telugu,,,te

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,117,349,418,0,0,0,0,117,349,oc.po,,oc,,occitan,,,oc

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,124,378,369,0,0,0,0,124,378,sk.po,,sk,,slovak,,,sk

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,122,376,387,0,0,0,0,122,376,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,28,46,53,0,0,18,107,46,153,ga.po,,ga,,irish,,,ga

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,69,223,336,0,0,0,0,69,223,vi.po,,vi,,vietnamese,,,vi

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,123,380,341,0,0,0,0,123,380,tr.po,,tr,,turkish,,,tr

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,123,380,453,0,0,0,0,123,380,ca.po,,ca,,catalan,,,ca

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,69,223,110,0,0,0,0,69,223,th.po,,th,,thai,,,th

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,123,380,431,0,0,0,0,123,380,ro.po,,ro,,romanian,,,ro

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,123,380,341,0,0,0,0,123,380,lt.po,,lt,,lithuanian,,,lt

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,122,376,449,0,0,0,0,122,376,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,123,380,371,0,0,0,0,123,380,sr.po,,sr,,serbian,,,sr

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,123,380,366,0,0,0,0,123,380,nl.po,,nl,,dutch,,,nl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,124,378,370,0,0,0,0,124,378,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,36,113,115,0,0,1,2,37,115,ar.po,,ar,,arabic,,,ar

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,123,380,440,0,0,0,0,123,380,gl.po,,gl,,galician,,,gl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,123,380,358,0,0,0,0,123,380,sl.po,,sl,,slovenian,,,sl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,123,380,441,0,0,0,0,123,380,es.po,,es,,spanish,,,es

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,122,376,453,0,0,0,0,122,376,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,123,380,321,0,0,0,0,123,380,hu.po,,hu,,hungarian,,,hu

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,123,380,326,0,0,0,0,123,380,lv.po,,lv,,latvian,,,lv

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,123,380,453,0,0,0,0,123,380,fr.po,,fr,,french,,,fr

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,79,144,159,28,86,15,146,122,376,ne.po,,ne,,nepali,,,ne

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,123,355,325,0,0,1,23,124,378,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,124,378,331,0,0,0,0,124,378,ml.po,,ml,,malayalam,,,ml

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,42,140,142,0,0,0,0,42,140,bs.po,,bs,,bosnian,,,bs

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,37,115,126,0,0,0,0,37,115,as.po,,as,,assamese,,,as

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,124,378,169,0,0,0,0,124,378,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,68,216,242,0,0,0,0,68,216,bg.po,,bg,,bulgarian,,,bg

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,123,380,395,0,0,0,0,123,380,it.po,,it,,italian,,,it

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,43,141,152,0,0,0,0,43,141,tg.po,,tg,,tajik,,,tg

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,37,115,52,0,0,0,0,37,115,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,122,376,389,0,0,0,0,122,376,fa.po,,fa,,persian,,,fa

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,69,223,232,0,0,0,0,69,223,pt.po,,pt,,portuguese,,,pt

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,120,331,308,0,0,0,0,120,331,eo.po,,eo,,esperanto,,,eo

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,123,380,464,0,0,0,0,123,380,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,123,380,154,0,0,0,0,123,380,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,123,380,336,0,0,0,0,123,380,ko.po,,ko,,korean,,,ko

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,123,380,346,0,0,0,0,123,380,pl.po,,pl,,polish,,,pl

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,43,142,154,0,0,0,0,43,142,an.po,,an,,aragonese,,,an

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,123,380,365,0,0,0,0,123,380,cs.po,,cs,,czech,,,cs

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,57,178,167,3,7,8,31,68,216,he.po,,he,,hebrew,,,he

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,121,371,337,1,5,0,0,122,376,eu.po,,eu,,basque,,,eu

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,123,380,414,0,0,0,0,123,380,el.po,,el,,greek,,,el

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,123,380,406,0,0,0,0,123,380,fur.po,,fur,,friulian,,,fur

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,123,380,343,0,0,0,0,123,380,hr.po,,hr,,croatian,,,hr

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,123,380,297,0,0,0,0,123,380,fi.po,,fi,,finnish,,,fi

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,122,377,340,0,0,0,0,122,377,da.po,,da,,danish,,,da

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,124,378,350,0,0,0,0,124,378,be.po,,be,,belarusian,,,be

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,118,354,307,0,0,0,0,118,354,uk.po,,uk,,ukrainian,,,uk

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,123,380,359,0,0,0,0,123,380,sv.po,,sv,,swedish,,,sv

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,123,380,342,0,0,0,0,123,380,ru.po,,ru,,russian,,,ru

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,22,37,25,0,0,20,103,42,140,ja.po,,ja,,japanese,,,ja

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,123,380,345,0,0,0,0,123,380,kk.po,,kk,,kazakh,,,kk

+ gnome-logs-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,123,380,382,0,0,0,0,123,380,de.po,,de,,german,,,de

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,314,1236,472,0,0,0,0,314,1236,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,40,205,67,0,0,0,0,40,205,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,315,1235,479,0,0,0,0,315,1235,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,314,1236,1784,0,0,0,0,314,1236,vi.po,,vi,,vietnamese,,,vi

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,268,1103,1005,0,0,0,0,268,1103,uk.po,,uk,,ukrainian,,,uk

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,314,1236,1120,0,0,0,0,314,1236,tr.po,,tr,,turkish,,,tr

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,111,485,491,0,0,0,0,111,485,tg.po,,tg,,tajik,,,tg

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,34,196,170,0,0,0,0,34,196,te.po,,te,,telugu,,,te

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,314,1236,1184,0,0,0,0,314,1236,sv.po,,sv,,swedish,,,sv

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,314,1232,1238,0,0,0,0,314,1232,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,314,1236,1239,0,0,0,0,314,1236,sr.po,,sr,,serbian,,,sr

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,314,1236,1201,0,0,0,0,314,1236,sl.po,,sl,,slovenian,,,sl

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,315,1236,1249,0,0,0,0,315,1236,sk.po,,sk,,slovak,,,sk

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,314,1236,1133,0,0,0,0,314,1236,ru.po,,ru,,russian,,,ru

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,314,1236,1362,0,0,0,0,314,1236,ro.po,,ro,,romanian,,,ro

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,314,1236,1387,0,0,0,0,314,1236,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,239,975,1066,0,0,0,0,239,975,pt.po,,pt,,portuguese,,,pt

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,314,1236,1233,0,0,0,0,314,1236,pl.po,,pl,,polish,,,pl

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,229,858,999,0,0,9,114,238,972,pa.po,,pa,,punjabi,,,pa

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,314,1232,1461,0,0,0,0,314,1232,oc.po,,oc,,occitan,,,oc

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,314,1236,1257,0,0,0,0,314,1236,nl.po,,nl,,dutch,,,nl

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,167,303,322,79,286,58,597,304,1186,ne.po,,ne,,nepali,,,ne

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,302,1158,1138,1,3,4,47,307,1208,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,182,517,461,2,3,130,716,314,1236,ml.po,,ml,,malayalam,,,ml

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,314,1236,1103,0,0,0,0,314,1236,lv.po,,lv,,latvian,,,lv

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,314,1236,1062,0,0,0,0,314,1236,lt.po,,lt,,lithuanian,,,lt

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,314,1236,990,0,0,0,0,314,1236,ko.po,,ko,,korean,,,ko

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,19,41,45,0,0,13,139,32,180,kn.po,,kn,,kannada,,,kn

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,314,1236,1121,0,0,0,0,314,1236,kk.po,,kk,,kazakh,,,kk

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,139,548,201,29,98,100,457,268,1103,ja.po,,ja,,japanese,,,ja

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,314,1236,1363,0,0,0,0,314,1236,it.po,,it,,italian,,,it

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,315,1236,1252,0,0,0,0,315,1236,is.po,,is,,icelandic,,,is

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,314,1236,1235,0,0,0,0,314,1236,id.po,,id,,indonesian,,,id

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,314,1236,1127,0,0,0,0,314,1236,hu.po,,hu,,hungarian,,,hu

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,314,1236,1135,0,0,0,0,314,1236,hr.po,,hr,,croatian,,,hr

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,50,249,291,0,0,0,0,50,249,hi.po,,hi,,hindi,,,hi

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,239,975,890,0,0,0,0,239,975,he.po,,he,,hebrew,,,he

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,314,1236,1406,0,0,0,0,314,1236,gl.po,,gl,,galician,,,gl

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,250,986,1285,3,21,51,179,304,1186,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,56,125,138,2,8,59,387,117,520,ga.po,,ga,,irish,,,ga

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,314,1236,1394,0,0,0,0,314,1236,fur.po,,fur,,friulian,,,fur

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,314,1236,1473,0,0,0,0,314,1236,fr.po,,fr,,french,,,fr

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,314,1236,915,0,0,0,0,314,1236,fi.po,,fi,,finnish,,,fi

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,239,975,1099,0,0,0,0,239,975,fa.po,,fa,,persian,,,fa

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,314,1236,1101,0,0,0,0,314,1236,eu.po,,eu,,basque,,,eu

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,32,180,150,0,0,0,0,32,180,et.po,,et,,estonian,,,et

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,314,1236,1426,0,0,0,0,314,1236,es.po,,es,,spanish,,,es

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,313,1230,1200,0,0,0,0,313,1230,eo.po,,eo,,esperanto,,,eo

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,304,1186,1197,0,0,0,0,304,1186,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,314,1236,1351,0,0,0,0,314,1236,el.po,,el,,greek,,,el

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,314,1236,1254,0,0,0,0,314,1236,de.po,,de,,german,,,de

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,314,1236,1202,0,0,0,0,314,1236,da.po,,da,,danish,,,da

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,314,1236,1223,0,0,0,0,314,1236,cs.po,,cs,,czech,,,cs

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,304,1186,1426,0,0,0,0,304,1186,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,314,1236,1487,0,0,0,0,314,1236,ca.po,,ca,,catalan,,,ca

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,111,485,471,0,0,0,0,111,485,bs.po,,bs,,bosnian,,,bs

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,213,821,917,0,0,0,0,213,821,bg.po,,bg,,bulgarian,,,bg

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,46,224,229,0,0,0,0,46,224,as.po,,as,,assamese,,,as

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,303,1180,1124,0,0,1,6,304,1186,ar.po,,ar,,arabic,,,ar

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,111,485,560,0,0,0,0,111,485,an.po,,an,,aragonese,,,an

+ gnome-maps-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,31,157,150,1,26,0,0,32,183,af.po,,af,,afrikaans,,,af

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,58,165,176,0,0,0,0,58,165,si.po,,si,,sinhala,,,si

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,42,116,152,5,15,9,26,56,157,yo.po,,yo,,yoruba,,,yo

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,49,136,148,0,0,0,0,49,136,cy.po,,cy,,welsh,,,cy

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,27,70,35,0,0,0,0,27,70,km.po,,km,,khmer,,,km

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gn.po,33,71,77,0,0,15,62,48,133,gn.po,,gn,,guarani,,,gn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,27,70,64,0,0,0,0,27,70,he.po,,he,,hebrew,,,he

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,38,81,70,0,0,0,0,38,81,nl.po,,nl,,dutch,,,nl

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,27,70,72,0,0,0,0,27,70,fa.po,,fa,,persian,,,fa

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,27,70,65,0,0,0,0,27,70,ug.po,,ug,,uyghur,,,ug

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,27,70,66,0,0,0,0,27,70,ne.po,,ne,,nepali,,,ne

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,26,69,30,0,0,11,11,37,80,ja.po,,ja,,japanese,,,ja

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,27,70,69,0,0,0,0,27,70,ga.po,,ga,,irish,,,ga

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,27,70,75,0,0,0,0,27,70,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,46,125,119,0,0,0,0,46,125,mn.po,,mn,,mongolian,,,mn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,38,81,77,0,0,0,0,38,81,eo.po,,eo,,esperanto,,,eo

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,38,81,143,0,0,0,0,38,81,vi.po,,vi,,vietnamese,,,vi

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,38,81,84,0,0,0,0,38,81,ro.po,,ro,,romanian,,,ro

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,38,81,87,0,0,0,0,38,81,ca.po,,ca,,catalan,,,ca

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/csb.po,37,95,87,0,0,0,0,37,95,csb.po,,csb,,kashubian,,,csb

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,27,70,71,0,0,0,0,27,70,or.po,,or,,odia,,,or

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,27,70,65,0,0,0,0,27,70,is.po,,is,,icelandic,,,is

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,27,70,70,0,0,0,0,27,70,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,58,165,88,0,0,0,0,58,165,dz.po,,dz,,dzongkha,,,dz

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,38,81,71,0,0,0,0,38,81,hu.po,,hu,,hungarian,,,hu

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,37,80,79,0,0,0,0,37,80,lv.po,,lv,,latvian,,,lv

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,37,80,71,0,0,0,0,37,80,de.po,,de,,german,,,de

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kg.po,46,125,135,0,0,0,0,46,125,kg.po,,kg,,kongo,,,kg

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ia.po,27,70,80,0,0,0,0,27,70,ia.po,,ia,,interlingua,,,ia

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/dv.po,56,157,133,0,0,0,0,56,157,dv.po,,dv,,divehi,,,dv

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,27,70,83,0,0,0,0,27,70,pt.po,,pt,,portuguese,,,pt

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,38,81,88,0,0,0,0,38,81,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,52,128,149,0,0,4,29,56,157,ps.po,,ps,,pashto,,,ps

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,37,95,94,0,0,0,0,37,95,bn.po,,bn,,bangla,,,bn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,57,161,146,0,0,0,0,57,161,nds.po,,nds,,low german,,,nds

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,27,70,70,0,0,0,0,27,70,bs.po,,bs,,bosnian,,,bs

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,38,81,86,0,0,0,0,38,81,it.po,,it,,italian,,,it

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ha.po,42,116,160,5,15,9,26,56,157,ha.po,,ha,,hausa,,,ha

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,27,70,63,0,0,0,0,27,70,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,27,70,76,0,0,0,0,27,70,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,27,70,80,0,0,0,0,27,70,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,27,70,69,0,0,0,0,27,70,hr.po,,hr,,croatian,,,hr

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,37,95,84,0,0,0,0,37,95,fy.po,,fy,,western frisian,,,fy

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,27,70,80,0,0,0,0,27,70,oc.po,,oc,,occitan,,,oc

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,27,70,31,0,0,0,0,27,70,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,23,65,72,0,0,4,5,27,70,kab.po,,kab,,kabyle,,,kab

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,38,81,72,0,0,0,0,38,81,sv.po,,sv,,swedish,,,sv

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,27,70,65,0,0,0,0,27,70,te.po,,te,,telugu,,,te

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,58,165,150,0,0,0,0,58,165,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,38,81,70,0,0,0,0,38,81,da.po,,da,,danish,,,da

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,37,80,61,0,0,0,0,37,80,fi.po,,fi,,finnish,,,fi

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,27,70,70,0,0,0,0,27,70,sk.po,,sk,,slovak,,,sk

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,46,125,125,0,0,0,0,46,125,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,27,70,84,0,0,0,0,27,70,be.po,,be,,belarusian,,,be

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,57,161,174,0,0,0,0,57,161,mai.po,,mai,,maithili,,,mai

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,38,81,81,0,0,0,0,38,81,sr.po,,sr,,serbian,,,sr

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,27,70,58,0,0,0,0,27,70,et.po,,et,,estonian,,,et

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,38,81,72,0,0,0,0,38,81,ko.po,,ko,,korean,,,ko

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,36,80,85,1,15,0,0,37,95,xh.po,,xh,,xhosa,,,xh

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,37,80,86,0,0,0,0,37,80,fur.po,,fur,,friulian,,,fur

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,38,81,79,0,0,0,0,38,81,pl.po,,pl,,polish,,,pl

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,27,70,33,0,0,0,0,27,70,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,27,70,64,0,0,0,0,27,70,crh.po,,crh,,crimean turkish,,,crh

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,37,80,66,0,0,0,0,37,80,kk.po,,kk,,kazakh,,,kk

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,27,70,72,0,0,0,0,27,70,tg.po,,tg,,tajik,,,tg

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,38,81,91,0,0,0,0,38,81,es.po,,es,,spanish,,,es

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,27,70,68,0,0,0,0,27,70,uk.po,,uk,,ukrainian,,,uk

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,38,81,75,0,0,0,0,38,81,ru.po,,ru,,russian,,,ru

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gv.po,36,84,92,0,0,10,41,46,125,gv.po,,gv,,manx,,,gv

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/io.po,44,86,90,0,0,14,79,58,165,io.po,,io,,ido,,,io

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,27,70,67,0,0,0,0,27,70,ar.po,,ar,,arabic,,,ar

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,27,70,81,0,0,0,0,27,70,bg.po,,bg,,bulgarian,,,bg

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,27,70,31,0,0,0,0,27,70,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,38,81,74,0,0,0,0,38,81,tr.po,,tr,,turkish,,,tr

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,37,80,72,0,0,0,0,37,80,eu.po,,eu,,basque,,,eu

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,27,70,68,0,0,0,0,27,70,as.po,,as,,assamese,,,as

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,27,70,63,0,0,0,0,27,70,kn.po,,kn,,kannada,,,kn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,27,70,59,0,0,0,0,27,70,af.po,,af,,afrikaans,,,af

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lo.po,27,70,41,0,0,0,0,27,70,lo.po,,lo,,lao,,,lo

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,37,80,83,0,0,0,0,37,80,el.po,,el,,greek,,,el

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,49,136,164,0,0,0,0,49,136,mg.po,,mg,,malagasy,,,mg

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,49,136,135,0,0,0,0,49,136,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,8,8,10,10,45,9,15,27,68,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,27,70,72,0,0,0,0,27,70,pa.po,,pa,,punjabi,,,pa

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,57,161,190,0,0,0,0,57,161,br.po,,br,,breton,,,br

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,60,167,188,0,0,0,0,60,167,ku.po,,ku,,kurdish,,,ku

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,27,70,70,0,0,0,0,27,70,hi.po,,hi,,hindi,,,hi

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,55,151,136,1,6,0,0,56,157,hy.po,,hy,,armenian,,,hy

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,37,80,75,0,0,0,0,37,80,lt.po,,lt,,lithuanian,,,lt

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,27,70,67,0,0,0,0,27,70,ms.po,,ms,,malay,,,ms

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,27,70,68,0,0,0,0,27,70,gu.po,,gu,,gujarati,,,gu

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,37,95,92,0,0,0,0,37,95,zu.po,,zu,,zulu,,,zu

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,27,70,32,0,0,0,0,27,70,th.po,,th,,thai,,,th

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,27,70,79,0,0,0,0,27,70,an.po,,an,,aragonese,,,an

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ak.po,27,70,74,0,0,0,0,27,70,ak.po,,ak,,akan,,,ak

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ig.po,42,116,121,5,15,9,26,56,157,ig.po,,ig,,igbo,,,ig

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,39,103,93,0,0,0,0,39,103,ky.po,,ky,,kyrgyz,,,ky

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,46,125,116,0,0,0,0,46,125,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,27,70,69,0,0,0,0,27,70,mr.po,,mr,,marathi,,,mr

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,27,70,67,0,0,0,0,27,70,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/szl.po,39,103,93,0,0,0,0,39,103,szl.po,,szl,,silesian,,,szl

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,38,81,82,0,0,0,0,38,81,id.po,,id,,indonesian,,,id

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,38,81,90,0,0,0,0,38,81,fr.po,,fr,,french,,,fr

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,27,70,56,0,0,0,0,27,70,ml.po,,ml,,malayalam,,,ml

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,37,80,82,0,0,0,0,37,80,sl.po,,sl,,slovenian,,,sl

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,37,80,93,0,0,0,0,37,80,gl.po,,gl,,galician,,,gl

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,56,157,182,0,0,0,0,56,157,ast.po,,ast,,asturian,,,ast

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,49,136,119,0,0,0,0,49,136,ka.po,,ka,,georgian,,,ka

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,27,70,64,0,0,0,0,27,70,ta.po,,ta,,tamil,,,ta

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,38,81,78,0,0,0,0,38,81,cs.po,,cs,,czech,,,cs

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,58,165,192,0,0,0,0,58,165,mk.po,,mk,,macedonian,,,mk

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,58,165,186,0,0,0,0,58,165,sq.po,,sq,,albanian,,,sq

+ gnome-menus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,27,70,70,0,0,0,0,27,70,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,145,652,628,1,6,0,0,146,658,eo.po,,eo,,esperanto,,,eo

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,155,693,702,0,0,0,0,155,693,sr.po,,sr,,serbian,,,sr

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,147,692,722,0,0,0,0,147,692,or.po,,or,,odia,,,or

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,155,693,889,0,0,0,0,155,693,es.po,,es,,spanish,,,es

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,154,680,794,0,0,0,0,154,680,bg.po,,bg,,bulgarian,,,bg

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,155,693,938,0,0,0,0,155,693,ca.po,,ca,,catalan,,,ca

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,155,693,709,0,0,0,0,155,693,pl.po,,pl,,polish,,,pl

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,146,658,525,0,0,0,0,146,658,ml.po,,ml,,malayalam,,,ml

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,155,693,848,0,0,0,0,155,693,fur.po,,fur,,friulian,,,fur

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,147,692,655,0,0,0,0,147,692,mr.po,,mr,,marathi,,,mr

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,155,693,652,0,0,0,0,155,693,hr.po,,hr,,croatian,,,hr

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,155,693,251,0,0,0,0,155,693,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,155,693,683,0,0,0,0,155,693,id.po,,id,,indonesian,,,id

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,157,715,292,0,0,0,0,157,715,th.po,,th,,thai,,,th

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,120,496,592,0,0,25,161,145,657,kab.po,,kab,,kabyle,,,kab

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,155,693,622,0,0,0,0,155,693,kk.po,,kk,,kazakh,,,kk

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,146,658,840,0,0,0,0,146,658,oc.po,,oc,,occitan,,,oc

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,155,693,586,0,0,0,0,155,693,tr.po,,tr,,turkish,,,tr

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,154,690,682,0,0,0,0,154,690,he.po,,he,,hebrew,,,he

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,145,657,620,0,0,0,0,145,657,eu.po,,eu,,basque,,,eu

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,147,692,626,0,0,0,0,147,692,ta.po,,ta,,tamil,,,ta

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,155,693,697,0,0,0,0,155,693,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,147,692,845,0,0,0,0,147,692,hi.po,,hi,,hindi,,,hi

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,147,687,695,0,0,0,0,147,687,bs.po,,bs,,bosnian,,,bs

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,147,692,599,0,0,0,0,147,692,te.po,,te,,telugu,,,te

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,146,658,656,0,0,0,0,146,658,be.po,,be,,belarusian,,,be

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,155,693,666,0,0,0,0,155,693,sv.po,,sv,,swedish,,,sv

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,155,693,708,0,0,0,0,155,693,de.po,,de,,german,,,de

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,154,680,930,0,0,0,0,154,680,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,155,693,719,0,0,0,0,155,693,el.po,,el,,greek,,,el

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,154,680,773,0,0,0,0,154,680,fa.po,,fa,,persian,,,fa

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,153,706,955,0,0,0,0,153,706,an.po,,an,,aragonese,,,an

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,155,693,683,0,0,0,0,155,693,ru.po,,ru,,russian,,,ru

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,155,693,893,0,0,0,0,155,693,gl.po,,gl,,galician,,,gl

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,155,693,564,0,0,0,0,155,693,lt.po,,lt,,lithuanian,,,lt

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,151,795,768,0,0,0,0,151,795,ug.po,,ug,,uyghur,,,ug

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,54,304,326,0,0,0,0,54,304,ms.po,,ms,,malay,,,ms

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,146,688,288,0,0,0,0,146,688,km.po,,km,,khmer,,,km

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,57,321,364,0,0,0,0,57,321,mk.po,,mk,,macedonian,,,mk

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,155,693,620,0,0,0,0,155,693,lv.po,,lv,,latvian,,,lv

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,147,687,741,0,0,0,0,147,687,tg.po,,tg,,tajik,,,tg

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,153,699,752,0,0,0,0,153,699,gu.po,,gu,,gujarati,,,gu

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,155,693,712,0,0,0,0,155,693,sl.po,,sl,,slovenian,,,sl

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,130,655,686,0,0,0,0,130,655,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,155,693,669,0,0,0,0,155,693,da.po,,da,,danish,,,da

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,54,304,361,0,0,0,0,54,304,ast.po,,ast,,asturian,,,ast

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,155,693,782,0,0,0,0,155,693,ro.po,,ro,,romanian,,,ro

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,146,658,838,0,0,0,0,146,658,fr.po,,fr,,french,,,fr

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,136,604,238,1,3,8,50,145,657,ja.po,,ja,,japanese,,,ja

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,155,693,759,0,0,0,0,155,693,it.po,,it,,italian,,,it

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,94,346,353,16,93,36,219,146,658,ar.po,,ar,,arabic,,,ar

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,147,692,739,0,0,0,0,147,692,as.po,,as,,assamese,,,as

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,147,692,821,0,0,0,0,147,692,pa.po,,pa,,punjabi,,,pa

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,155,693,721,0,0,0,0,155,693,nl.po,,nl,,dutch,,,nl

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,152,660,662,0,0,2,30,154,690,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,112,369,372,0,0,34,289,146,658,is.po,,is,,icelandic,,,is

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,53,136,145,7,19,95,538,155,693,af.po,,af,,afrikaans,,,af

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,147,692,616,0,0,0,0,147,692,kn.po,,kn,,kannada,,,kn

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,154,705,785,0,0,0,0,154,705,pt.po,,pt,,portuguese,,,pt

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,155,693,243,0,0,0,0,155,693,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,152,670,629,0,0,0,0,152,670,ne.po,,ne,,nepali,,,ne

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,147,692,241,0,0,0,0,147,692,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,155,693,626,0,0,0,0,155,693,ko.po,,ko,,korean,,,ko

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,111,445,382,23,139,10,44,144,628,et.po,,et,,estonian,,,et

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,155,693,656,0,0,0,0,155,693,cs.po,,cs,,czech,,,cs

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,155,693,708,0,0,0,0,155,693,sk.po,,sk,,slovak,,,sk

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,88,310,358,0,0,54,398,142,708,ga.po,,ga,,irish,,,ga

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,113,414,324,7,59,25,184,145,657,fi.po,,fi,,finnish,,,fi

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,155,693,835,0,0,0,0,155,693,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,146,658,903,0,0,0,0,146,658,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,155,693,702,0,0,0,0,155,693,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,155,693,704,0,0,0,0,155,693,hu.po,,hu,,hungarian,,,hu

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,157,714,670,0,0,0,0,157,714,uk.po,,uk,,ukrainian,,,uk

+ gnome-online-accounts-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,155,693,1051,0,0,0,0,155,693,vi.po,,vi,,vietnamese,,,vi

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,46,457,441,0,0,0,0,46,457,sv.po,,sv,,swedish,,,sv

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,46,457,468,0,0,0,0,46,457,ro.po,,ro,,romanian,,,ro

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,46,457,456,0,0,0,0,46,457,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,46,457,373,0,0,0,0,46,457,pl.po,,pl,,polish,,,pl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/nl/nl.po,46,457,451,0,0,0,0,46,457,nl.po,,nl,,dutch,,,nl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ko/ko.po,46,457,310,0,0,0,0,46,457,ko.po,,ko,,korean,,,ko

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,46,457,394,0,0,0,0,46,457,hu.po,,hu,,hungarian,,,hu

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,46,457,446,0,0,0,0,46,457,gl.po,,gl,,galician,,,gl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/fur/fur.po,45,451,474,0,0,1,6,46,457,fur.po,,fur,,friulian,,,fur

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,46,457,457,0,0,0,0,46,457,fr.po,,fr,,french,,,fr

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,46,457,461,0,0,0,0,46,457,es.po,,es,,spanish,,,es

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,46,457,487,0,0,0,0,46,457,el.po,,el,,greek,,,el

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,46,457,477,0,0,0,0,46,457,de.po,,de,,german,,,de

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,46,457,430,0,0,0,0,46,457,da.po,,da,,danish,,,da

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,46,457,415,0,0,0,0,46,457,cs.po,,cs,,czech,,,cs

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,46,457,476,0,0,0,0,46,457,ca.po,,ca,,catalan,,,ca

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,219,572,285,0,0,0,0,219,572,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,125,354,161,0,0,0,0,125,354,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,216,535,309,0,0,0,0,216,535,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,219,572,833,0,0,0,0,219,572,vi.po,,vi,,vietnamese,,,vi

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,191,459,459,0,0,0,0,191,459,uk.po,,uk,,ukrainian,,,uk

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,219,572,543,0,0,0,0,219,572,tr.po,,tr,,turkish,,,tr

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,127,377,433,0,0,0,0,127,377,tg.po,,tg,,tajik,,,tg

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,120,344,326,0,0,0,0,120,344,te.po,,te,,telugu,,,te

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,219,572,592,0,0,0,0,219,572,sv.po,,sv,,swedish,,,sv

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,216,535,615,0,0,0,0,216,535,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,219,572,656,0,0,0,0,219,572,sr.po,,sr,,serbian,,,sr

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,219,572,630,0,0,0,0,219,572,sl.po,,sl,,slovenian,,,sl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,216,535,569,0,0,0,0,216,535,sk.po,,sk,,slovak,,,sk

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,219,572,612,0,0,0,0,219,572,ru.po,,ru,,russian,,,ru

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,219,572,631,0,0,0,0,219,572,ro.po,,ro,,romanian,,,ro

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,219,572,631,0,0,0,0,219,572,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,187,448,493,0,0,0,0,187,448,pt.po,,pt,,portuguese,,,pt

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,219,572,585,0,0,0,0,219,572,pl.po,,pl,,polish,,,pl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,180,428,530,0,0,0,0,180,428,pa.po,,pa,,punjabi,,,pa

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,187,448,536,0,0,0,0,187,448,oc.po,,oc,,occitan,,,oc

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,219,572,586,0,0,0,0,219,572,nl.po,,nl,,dutch,,,nl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,86,153,172,25,83,14,118,125,354,ne.po,,ne,,nepali,,,ne

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,198,473,481,0,0,0,0,198,473,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,218,561,536,0,0,0,0,218,561,ml.po,,ml,,malayalam,,,ml

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,219,572,564,0,0,0,0,219,572,lv.po,,lv,,latvian,,,lv

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,219,572,551,0,0,0,0,219,572,lt.po,,lt,,lithuanian,,,lt

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,219,572,523,0,0,0,0,219,572,ko.po,,ko,,korean,,,ko

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,84,158,181,0,0,16,143,100,301,kn.po,,kn,,kannada,,,kn

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,117,332,117,332,km.po,,km,,khmer,,,km

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,219,572,541,0,0,0,0,219,572,kk.po,,kk,,kazakh,,,kk

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,174,419,233,0,0,5,5,179,424,ja.po,,ja,,japanese,,,ja

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,219,572,613,0,0,0,0,219,572,it.po,,it,,italian,,,it

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,217,556,604,0,0,0,0,217,556,is.po,,is,,icelandic,,,is

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,219,572,589,0,0,0,0,219,572,id.po,,id,,indonesian,,,id

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,219,572,561,0,0,0,0,219,572,hu.po,,hu,,hungarian,,,hu

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,217,556,564,0,0,0,0,217,556,hr.po,,hr,,croatian,,,hr

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,187,448,437,0,0,0,0,187,448,he.po,,he,,hebrew,,,he

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,73,135,168,1,1,117,323,191,459,gu.po,,gu,,gujarati,,,gu

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,219,572,655,0,0,0,0,219,572,gl.po,,gl,,galician,,,gl

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,198,473,661,0,0,0,0,198,473,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,94,217,255,0,0,3,9,97,226,ga.po,,ga,,irish,,,ga

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,219,572,641,0,0,0,0,219,572,fur.po,,fur,,friulian,,,fur

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,219,572,686,0,0,0,0,219,572,fr.po,,fr,,french,,,fr

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,219,572,486,0,0,0,0,219,572,fi.po,,fi,,finnish,,,fi

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,198,473,542,0,0,0,0,198,473,fa.po,,fa,,persian,,,fa

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,219,572,553,0,0,0,0,219,572,eu.po,,eu,,basque,,,eu

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,100,301,256,0,0,0,0,100,301,et.po,,et,,estonian,,,et

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,219,572,660,0,0,0,0,219,572,es.po,,es,,spanish,,,es

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,217,556,552,0,0,0,0,217,556,eo.po,,eo,,esperanto,,,eo

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,217,556,559,0,0,0,0,217,556,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,219,572,636,0,0,0,0,219,572,el.po,,el,,greek,,,el

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,219,572,589,0,0,0,0,219,572,de.po,,de,,german,,,de

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,219,572,569,0,0,0,0,219,572,da.po,,da,,danish,,,da

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,219,572,617,0,0,0,0,219,572,cs.po,,cs,,czech,,,cs

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,198,473,572,0,0,0,0,198,473,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,219,572,679,0,0,0,0,219,572,ca.po,,ca,,catalan,,,ca

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,126,379,379,0,0,0,0,126,379,bs.po,,bs,,bosnian,,,bs

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,104,304,352,0,0,0,0,104,304,bg.po,,bg,,bulgarian,,,bg

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,125,354,403,0,0,0,0,125,354,as.po,,as,,assamese,,,as

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,196,467,508,0,0,4,30,200,497,ar.po,,ar,,arabic,,,ar

+ gnome-photos-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,127,377,430,0,0,0,0,127,377,an.po,,an,,aragonese,,,an

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,79,458,112,0,0,0,0,79,458,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,75,354,97,0,0,0,0,75,354,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,79,456,154,0,0,0,0,79,456,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,50,241,208,6,43,0,0,56,284,xh.po,,xh,,xhosa,,,xh

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,1,0,0,9,27,49,292,59,319,wa.po,,wa,,walloon,,,wa

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,78,455,589,0,0,0,0,78,455,vi.po,,vi,,vietnamese,,,vi

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,78,455,399,0,0,0,0,78,455,uk.po,,uk,,ukrainian,,,uk

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,71,343,303,0,0,0,0,71,343,ug.po,,ug,,uyghur,,,ug

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,79,458,391,0,0,0,0,79,458,tr.po,,tr,,turkish,,,tr

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,78,455,152,0,0,0,0,78,455,th.po,,th,,thai,,,th

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,78,455,447,0,0,0,0,78,455,tg.po,,tg,,tajik,,,tg

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,75,354,289,0,0,0,0,75,354,te.po,,te,,telugu,,,te

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,75,354,306,0,0,0,0,75,354,ta.po,,ta,,tamil,,,ta

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,79,458,442,0,0,0,0,79,458,sv.po,,sv,,swedish,,,sv

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,80,457,447,0,0,0,0,80,457,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,79,458,448,0,0,0,0,79,458,sr.po,,sr,,serbian,,,sr

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,11,43,52,33,168,15,108,59,319,sq.po,,sq,,albanian,,,sq

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,79,458,429,0,0,0,0,79,458,sl.po,,sl,,slovenian,,,sl

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,80,457,433,0,0,0,0,80,457,sk.po,,sk,,slovak,,,sk

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,20,46,45,12,41,27,232,59,319,si.po,,si,,sinhala,,,si

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,1,0,0,36,199,22,120,59,319,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,79,458,404,0,0,0,0,79,458,ru.po,,ru,,russian,,,ru

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,79,458,499,0,0,0,0,79,458,ro.po,,ro,,romanian,,,ro

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,79,458,625,0,0,0,0,79,458,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,78,455,539,0,0,0,0,78,455,pt.po,,pt,,portuguese,,,pt

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,30,91,101,14,79,15,149,59,319,ps.po,,ps,,pashto,,,ps

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,79,458,451,0,0,0,0,79,458,pl.po,,pl,,polish,,,pl

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,78,455,471,0,0,0,0,78,455,pa.po,,pa,,punjabi,,,pa

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,75,354,360,0,0,0,0,75,354,or.po,,or,,odia,,,or

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,78,455,543,0,0,0,0,78,455,oc.po,,oc,,occitan,,,oc

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,34,143,141,18,113,7,63,59,319,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,79,458,458,0,0,0,0,79,458,nl.po,,nl,,dutch,,,nl

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,80,457,402,0,0,0,0,80,457,ne.po,,ne,,nepali,,,ne

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,14,28,24,3,8,42,283,59,319,nds.po,,nds,,low german,,,nds

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,80,457,422,0,0,0,0,80,457,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,1,0,0,7,22,51,297,59,319,ms.po,,ms,,malay,,,ms

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,75,354,317,0,0,0,0,75,354,mr.po,,mr,,marathi,,,mr

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,1,0,0,7,22,51,297,59,319,mn.po,,mn,,mongolian,,,mn

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,79,456,374,0,0,0,0,79,456,ml.po,,ml,,malayalam,,,ml

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,42,187,213,15,106,2,26,59,319,mk.po,,mk,,macedonian,,,mk

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,18,66,66,28,167,13,86,59,319,mg.po,,mg,,malagasy,,,mg

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,22,77,76,12,82,25,160,59,319,mai.po,,mai,,maithili,,,mai

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,79,458,361,0,0,0,0,79,458,lv.po,,lv,,latvian,,,lv

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,79,458,384,0,0,0,0,79,458,lt.po,,lt,,lithuanian,,,lt

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,20,68,75,20,117,19,134,59,319,ku.po,,ku,,kurdish,,,ku

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,79,458,362,0,0,0,0,79,458,ko.po,,ko,,korean,,,ko

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,75,354,311,0,0,0,0,75,354,kn.po,,kn,,kannada,,,kn

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,75,359,126,0,0,0,0,75,359,km.po,,km,,khmer,,,km

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,79,458,378,0,0,0,0,79,458,kk.po,,kk,,kazakh,,,kk

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,17,63,51,28,166,14,90,59,319,ka.po,,ka,,georgian,,,ka

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,78,455,123,0,0,1,3,79,458,ja.po,,ja,,japanese,,,ja

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,79,458,468,0,0,0,0,79,458,it.po,,it,,italian,,,it

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,80,457,478,0,0,0,0,80,457,is.po,,is,,icelandic,,,is

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,79,458,435,0,0,0,0,79,458,id.po,,id,,indonesian,,,id

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,79,458,455,0,0,0,0,79,458,hu.po,,hu,,hungarian,,,hu

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,79,456,427,0,0,0,0,79,456,hr.po,,hr,,croatian,,,hr

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,75,354,384,0,0,0,0,75,354,hi.po,,hi,,hindi,,,hi

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,78,455,456,0,0,0,0,78,455,he.po,,he,,hebrew,,,he

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,78,455,440,0,0,0,0,78,455,gu.po,,gu,,gujarati,,,gu

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,79,458,611,0,0,0,0,79,458,gl.po,,gl,,galician,,,gl

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,80,457,595,0,0,0,0,80,457,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,36,102,119,1,2,34,247,71,351,ga.po,,ga,,irish,,,ga

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,79,458,536,0,0,0,0,79,458,fur.po,,fur,,friulian,,,fur

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,79,458,632,0,0,0,0,79,458,fr.po,,fr,,french,,,fr

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,79,458,353,0,0,0,0,79,458,fi.po,,fi,,finnish,,,fi

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,80,457,468,0,0,0,0,80,457,fa.po,,fa,,persian,,,fa

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,80,457,365,0,0,0,0,80,457,eu.po,,eu,,basque,,,eu

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,71,351,296,0,0,0,0,71,351,et.po,,et,,estonian,,,et

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,79,458,542,0,0,0,0,79,458,es.po,,es,,spanish,,,es

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,79,456,443,0,0,0,0,79,456,eo.po,,eo,,esperanto,,,eo

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,78,455,458,0,0,0,0,78,455,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,14,55,55,29,171,16,93,59,319,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,29,144,144,30,175,0,0,59,319,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,79,458,525,0,0,0,0,79,458,el.po,,el,,greek,,,el

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,34,143,56,19,116,6,60,59,319,dz.po,,dz,,dzongkha,,,dz

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,79,458,429,0,0,0,0,79,458,de.po,,de,,german,,,de

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,79,458,454,0,0,0,0,79,458,da.po,,da,,danish,,,da

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,19,74,72,29,170,11,75,59,319,cy.po,,cy,,welsh,,,cy

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,79,458,419,0,0,0,0,79,458,cs.po,,cs,,czech,,,cs

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,71,343,307,0,0,0,0,71,343,crh.po,,crh,,crimean turkish,,,crh

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,80,457,570,0,0,0,0,80,457,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,79,456,569,0,0,0,0,79,456,ca.po,,ca,,catalan,,,ca

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,78,455,425,0,0,0,0,78,455,bs.po,,bs,,bosnian,,,bs

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,50,263,311,9,56,0,0,59,319,br.po,,br,,breton,,,br

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,75,354,416,0,0,0,0,75,354,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,50,263,300,9,56,0,0,59,319,bn.po,,bn,,bangla,,,bn

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,64,326,401,0,0,0,0,64,326,bg.po,,bg,,bulgarian,,,bg

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,42,187,165,15,106,2,26,59,319,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,80,457,394,0,0,0,0,80,457,be.po,,be,,belarusian,,,be

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,1,0,0,7,22,51,297,59,319,az.po,,az,,azerbaijani,,,az

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,58,306,333,1,13,0,0,59,319,ast.po,,ast,,asturian,,,ast

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,75,354,367,0,0,0,0,75,354,as.po,,as,,assamese,,,as

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,76,355,320,0,0,0,0,76,355,ar.po,,ar,,arabic,,,ar

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,78,455,518,0,0,0,0,78,455,an.po,,an,,aragonese,,,an

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,1,0,0,5,13,53,306,59,319,am.po,,am,,amharic,,,am

+ gnome-screenshot-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,80,457,477,0,0,0,0,80,457,af.po,,af,,afrikaans,,,af

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,100,513,424,1,3,0,0,101,516,zu.po,,zu,,zulu,,,zu

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,58,364,111,0,0,0,0,58,364,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,87,431,145,0,0,0,0,87,431,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,50,299,96,0,0,0,0,50,299,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,20,117,148,28,86,65,519,113,722,yo.po,,yo,,yoruba,,,yo

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,99,498,397,1,8,1,27,101,533,xh.po,,xh,,xhosa,,,xh

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,101,533,712,0,0,0,0,101,533,wa.po,,wa,,walloon,,,wa

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,58,364,521,0,0,0,0,58,364,vi.po,,vi,,vietnamese,,,vi

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,64,193,178,0,0,47,510,111,703,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,64,193,178,0,0,47,510,111,703,uz.po,,uz,,uzbek,,,uz

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,59,319,287,0,0,0,0,59,319,uk.po,,uk,,ukrainian,,,uk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,110,563,463,0,0,0,0,110,563,ug.po,,ug,,uyghur,,,ug

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,58,364,307,0,0,0,0,58,364,tr.po,,tr,,turkish,,,tr

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tk.po,26,44,44,0,0,75,472,101,516,tk.po,,tk,,turkmen,,,tk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,59,319,119,0,0,0,0,59,319,th.po,,th,,thai,,,th

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,60,327,368,0,0,0,0,60,327,tg.po,,tg,,tajik,,,tg

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,59,323,290,0,0,0,0,59,323,te.po,,te,,telugu,,,te

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,59,323,293,0,0,0,0,59,323,ta.po,,ta,,tamil,,,ta

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,58,364,342,0,0,0,0,58,364,sv.po,,sv,,swedish,,,sv

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,50,299,310,0,0,0,0,50,299,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,58,364,379,0,0,0,0,58,364,sr.po,,sr,,serbian,,,sr

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,115,811,885,0,0,0,0,115,811,sq.po,,sq,,albanian,,,sq

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,58,364,350,0,0,0,0,58,364,sl.po,,sl,,slovenian,,,sl

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,50,299,295,0,0,0,0,50,299,sk.po,,sk,,slovak,,,sk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,115,811,757,0,0,0,0,115,811,si.po,,si,,sinhala,,,si

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,12,13,16,69,480,20,40,101,533,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,58,364,331,0,0,0,0,58,364,ru.po,,ru,,russian,,,ru

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,58,364,395,0,0,0,0,58,364,ro.po,,ro,,romanian,,,ro

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,58,364,426,0,0,0,0,58,364,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,59,319,370,0,0,0,0,59,319,pt.po,,pt,,portuguese,,,pt

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,70,244,255,0,0,43,435,113,679,ps.po,,ps,,pashto,,,ps

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,58,364,337,0,0,0,0,58,364,pl.po,,pl,,polish,,,pl

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,50,299,319,0,0,0,0,50,299,pa.po,,pa,,punjabi,,,pa

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,59,323,343,0,0,0,0,59,323,or.po,,or,,odia,,,or

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,50,299,333,0,0,0,0,50,299,oc.po,,oc,,occitan,,,oc

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,100,513,736,1,3,0,0,101,516,nso.po,,nso,,northern sotho,,,nso

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,97,489,455,0,0,0,0,97,489,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,58,364,370,0,0,0,0,58,364,nl.po,,nl,,dutch,,,nl

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,32,90,94,0,0,18,209,50,299,ne.po,,ne,,nepali,,,ne

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,68,209,176,0,0,43,429,111,638,nds.po,,nds,,low german,,,nds

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,50,299,294,0,0,0,0,50,299,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,59,323,307,0,0,0,0,59,323,ms.po,,ms,,malay,,,ms

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,59,323,320,0,0,0,0,59,323,mr.po,,mr,,marathi,,,mr

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,100,513,408,1,3,0,0,101,516,mn.po,,mn,,mongolian,,,mn

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,58,364,294,0,0,0,0,58,364,ml.po,,ml,,malayalam,,,ml

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,114,714,793,0,0,0,0,114,714,mk.po,,mk,,macedonian,,,mk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,6,8,8,0,0,95,508,101,516,mi.po,,mi,,maori,,,mi

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,106,571,586,0,0,0,0,106,571,mg.po,,mg,,malagasy,,,mg

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,61,267,283,0,0,50,371,111,638,mai.po,,mai,,maithili,,,mai

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,58,364,306,0,0,0,0,58,364,lv.po,,lv,,latvian,,,lv

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,58,364,291,0,0,0,0,58,364,lt.po,,lt,,lithuanian,,,lt

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,46,208,196,19,56,49,450,114,714,ku.po,,ku,,kurdish,,,ku

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,58,364,283,0,0,0,0,58,364,ko.po,,ko,,korean,,,ko

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,59,323,285,0,0,0,0,59,323,kn.po,,kn,,kannada,,,kn

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,59,323,168,0,0,0,0,59,323,km.po,,km,,khmer,,,km

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,58,364,346,0,0,0,0,58,364,kk.po,,kk,,kazakh,,,kk

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/kab.po,49,250,247,0,0,9,114,58,364,kab.po,,kab,,kabyle,,,kab

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,88,434,335,0,0,26,280,114,714,ka.po,,ka,,georgian,,,ka

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,56,343,107,0,0,2,21,58,364,ja.po,,ja,,japanese,,,ja

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,58,364,379,0,0,0,0,58,364,it.po,,it,,italian,,,it

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,58,364,382,0,0,0,0,58,364,is.po,,is,,icelandic,,,is

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ig.po,20,117,131,28,86,65,519,113,722,ig.po,,ig,,igbo,,,ig

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,58,364,346,0,0,0,0,58,364,id.po,,id,,indonesian,,,id

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,103,570,546,0,0,0,0,103,570,hy.po,,hy,,armenian,,,hy

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,58,364,316,0,0,0,0,58,364,hu.po,,hu,,hungarian,,,hu

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,58,364,341,0,0,0,0,58,364,hr.po,,hr,,croatian,,,hr

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,59,323,424,0,0,0,0,59,323,hi.po,,hi,,hindi,,,hi

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,59,319,289,0,0,0,0,59,319,he.po,,he,,hebrew,,,he

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ha.po,20,117,153,28,86,65,519,113,722,ha.po,,ha,,hausa,,,ha

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,50,298,343,0,0,0,0,50,298,gu.po,,gu,,gujarati,,,gu

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,58,364,407,0,0,0,0,58,364,gl.po,,gl,,galician,,,gl

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,58,364,477,0,0,0,0,58,364,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,78,274,361,0,0,35,401,113,675,ga.po,,ga,,irish,,,ga

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,96,448,414,0,0,0,0,96,448,fy.po,,fy,,western frisian,,,fy

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,58,364,420,0,0,0,0,58,364,fur.po,,fur,,friulian,,,fur

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,58,364,419,0,0,0,0,58,364,fr.po,,fr,,french,,,fr

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,55,276,219,2,21,1,67,58,364,fi.po,,fi,,finnish,,,fi

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,50,299,339,0,0,0,0,50,299,fa.po,,fa,,persian,,,fa

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,58,364,344,0,0,0,0,58,364,eu.po,,eu,,basque,,,eu

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,50,299,257,0,0,0,0,50,299,et.po,,et,,estonian,,,et

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,58,364,420,0,0,0,0,58,364,es.po,,es,,spanish,,,es

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,58,364,331,0,0,0,0,58,364,eo.po,,eo,,esperanto,,,eo

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,50,298,298,0,0,0,0,50,298,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,126,888,887,0,0,0,0,126,888,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,99,556,556,12,82,0,0,111,638,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,58,364,400,0,0,0,0,58,364,el.po,,el,,greek,,,el

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,130,899,348,0,0,0,0,130,899,dz.po,,dz,,dzongkha,,,dz

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,58,364,366,0,0,0,0,58,364,de.po,,de,,german,,,de

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,58,364,343,0,0,0,0,58,364,da.po,,da,,danish,,,da

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,104,569,623,0,0,0,0,104,569,cy.po,,cy,,welsh,,,cy

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/csb.po,92,447,413,4,27,1,1,97,475,csb.po,,csb,,kashubian,,,csb

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,58,364,335,0,0,0,0,58,364,cs.po,,cs,,czech,,,cs

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,110,563,503,0,0,0,0,110,563,crh.po,,crh,,crimean turkish,,,crh

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,50,299,352,0,0,0,0,50,299,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,58,364,416,0,0,0,0,58,364,ca.po,,ca,,catalan,,,ca

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,60,327,328,0,0,0,0,60,327,bs.po,,bs,,bosnian,,,bs

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,112,668,732,1,7,0,0,113,675,br.po,,br,,breton,,,br

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,59,323,380,0,0,0,0,59,323,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,92,446,500,0,0,0,0,92,446,bn.po,,bn,,bangla,,,bn

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,50,299,341,0,0,0,0,50,299,bg.po,,bg,,bulgarian,,,bg

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,108,533,461,0,0,6,181,114,714,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,58,364,332,0,0,0,0,58,364,be.po,,be,,belarusian,,,be

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,100,513,427,1,3,0,0,101,516,az.po,,az,,azerbaijani,,,az

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,111,711,791,1,6,1,5,113,722,ast.po,,ast,,asturian,,,ast

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,59,323,376,0,0,0,0,59,323,as.po,,as,,assamese,,,as

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,58,256,217,0,0,1,67,59,323,ar.po,,ar,,arabic,,,ar

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,59,319,368,0,0,0,0,59,319,an.po,,an,,aragonese,,,an

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,52,145,143,4,11,45,360,101,516,am.po,,am,,amharic,,,am

+ gnome-session-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,50,299,309,0,0,0,0,50,299,af.po,,af,,afrikaans,,,af

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,47,313,257,42,196,82,525,171,1034,zu.po,,zu,,zulu,,,zu

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,371,2549,601,0,0,0,0,371,2549,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,429,2607,645,0,0,0,0,429,2607,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,384,2659,578,0,0,0,0,384,2659,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,47,313,251,42,196,82,525,171,1034,xh.po,,xh,,xhosa,,,xh

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,6,18,27,36,94,129,922,171,1034,wa.po,,wa,,walloon,,,wa

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,406,2416,2967,0,0,0,0,406,2416,vi.po,,vi,,vietnamese,,,vi

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,416,2494,2142,0,0,0,0,416,2494,uk.po,,uk,,ukrainian,,,uk

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,575,3618,2937,0,0,8,87,583,3705,ug.po,,ug,,uyghur,,,ug

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,371,2549,2191,0,0,0,0,371,2549,tr.po,,tr,,turkish,,,tr

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,572,3740,1059,0,0,0,0,572,3740,th.po,,th,,thai,,,th

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,162,401,448,0,0,439,3297,601,3698,tg.po,,tg,,tajik,,,tg

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,429,2607,2181,0,0,0,0,429,2607,te.po,,te,,telugu,,,te

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,429,2607,2102,0,0,0,0,429,2607,ta.po,,ta,,tamil,,,ta

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,371,2549,2440,0,0,0,0,371,2549,sv.po,,sv,,swedish,,,sv

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,370,2547,2480,0,0,0,0,370,2547,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,371,2549,2493,0,0,0,0,371,2549,sr.po,,sr,,serbian,,,sr

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,70,408,399,28,120,73,506,171,1034,sq.po,,sq,,albanian,,,sq

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,371,2549,2505,0,0,0,0,371,2549,sl.po,,sl,,slovenian,,,sl

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,349,2281,2116,3,28,32,350,384,2659,sk.po,,sk,,slovak,,,sk

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,12,21,28,13,29,146,984,171,1034,si.po,,si,,sinhala,,,si

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,6,6,6,76,494,89,534,171,1034,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,336,2292,2064,0,0,0,0,336,2292,ru.po,,ru,,russian,,,ru

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,371,2549,2775,0,0,0,0,371,2549,ro.po,,ro,,romanian,,,ro

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,371,2549,2888,0,0,0,0,371,2549,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,406,2416,2740,0,0,0,0,406,2416,pt.po,,pt,,portuguese,,,pt

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,371,2549,2398,0,0,0,0,371,2549,pl.po,,pl,,polish,,,pl

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,429,2607,2927,0,0,0,0,429,2607,pa.po,,pa,,punjabi,,,pa

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,429,2607,2456,0,0,0,0,429,2607,or.po,,or,,odia,,,or

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,406,2416,2783,0,0,0,0,406,2416,oc.po,,oc,,occitan,,,oc

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,47,313,460,42,196,82,525,171,1034,nso.po,,nso,,northern sotho,,,nso

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,252,1704,1657,0,0,3,18,255,1722,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,371,2549,2601,0,0,0,0,371,2549,nl.po,,nl,,dutch,,,nl

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,207,967,919,100,528,77,1164,384,2659,ne.po,,ne,,nepali,,,ne

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,54,123,98,0,0,191,1501,245,1624,nds.po,,nds,,low german,,,nds

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,306,1600,1583,6,26,72,1033,384,2659,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,37,207,187,49,218,85,609,171,1034,ms.po,,ms,,malay,,,ms

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,429,2607,2318,0,0,0,0,429,2607,mr.po,,mr,,marathi,,,mr

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,70,408,328,32,129,69,497,171,1034,mn.po,,mn,,mongolian,,,mn

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,290,1678,1295,35,257,69,981,394,2916,ml.po,,ml,,malayalam,,,ml

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,551,3749,3960,0,0,0,0,551,3749,mk.po,,mk,,macedonian,,,mk

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,70,408,391,32,129,69,497,171,1034,mg.po,,mg,,malagasy,,,mg

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,68,227,263,0,0,177,1397,245,1624,mai.po,,mai,,maithili,,,mai

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,371,2549,2214,0,0,0,0,371,2549,lv.po,,lv,,latvian,,,lv

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,371,2549,2057,0,0,0,0,371,2549,lt.po,,lt,,lithuanian,,,lt

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,67,369,377,39,181,65,484,171,1034,ku.po,,ku,,kurdish,,,ku

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,371,2549,1979,0,0,0,0,371,2549,ko.po,,ko,,korean,,,ko

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,429,2607,2205,0,0,0,0,429,2607,kn.po,,kn,,kannada,,,kn

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,572,3740,1282,0,0,0,0,572,3740,km.po,,km,,khmer,,,km

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,286,1410,1288,0,0,85,1139,371,2549,kk.po,,kk,,kazakh,,,kk

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,72,436,315,33,114,66,484,171,1034,ka.po,,ka,,georgian,,,ka

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,606,3729,962,0,0,0,0,606,3729,ja.po,,ja,,japanese,,,ja

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,371,2549,2774,0,0,0,0,371,2549,it.po,,it,,italian,,,it

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,288,1378,1404,0,0,83,1171,371,2549,is.po,,is,,icelandic,,,is

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,371,2549,2339,0,0,0,0,371,2549,id.po,,id,,indonesian,,,id

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,371,2549,2131,0,0,0,0,371,2549,hu.po,,hu,,hungarian,,,hu

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,371,2549,2378,0,0,0,0,371,2549,hr.po,,hr,,croatian,,,hr

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,429,2607,2968,0,0,0,0,429,2607,hi.po,,hi,,hindi,,,hi

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,384,2659,2562,0,0,0,0,384,2659,he.po,,he,,hebrew,,,he

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,405,2303,2321,0,0,0,0,405,2303,gu.po,,gu,,gujarati,,,gu

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,371,2549,2943,0,0,0,0,371,2549,gl.po,,gl,,galician,,,gl

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,272,1325,1944,0,0,112,1334,384,2659,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,129,366,434,0,0,117,1261,246,1627,ga.po,,ga,,irish,,,ga

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,371,2549,3148,0,0,0,0,371,2549,fur.po,,fur,,friulian,,,fur

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,371,2549,2957,0,0,0,0,371,2549,fr.po,,fr,,french,,,fr

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,266,1345,1030,27,216,78,988,371,2549,fi.po,,fi,,finnish,,,fi

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,486,2647,3054,6,24,80,1261,572,3932,fa.po,,fa,,persian,,,fa

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,384,2659,2163,0,0,0,0,384,2659,eu.po,,eu,,basque,,,eu

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,325,1913,1488,0,0,0,0,325,1913,et.po,,et,,estonian,,,et

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,371,2549,2971,0,0,0,0,371,2549,es.po,,es,,spanish,,,es

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,367,2501,2362,0,0,0,0,367,2501,eo.po,,eo,,esperanto,,,eo

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,371,2549,2549,0,0,0,0,371,2549,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,62,398,400,33,127,76,509,171,1034,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,254,1652,1652,26,307,0,0,280,1959,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,371,2549,2850,0,0,0,0,371,2549,el.po,,el,,greek,,,el

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,73,441,176,35,130,63,463,171,1034,dz.po,,dz,,dzongkha,,,dz

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,371,2549,2508,0,0,0,0,371,2549,de.po,,de,,german,,,de

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,371,2549,2416,0,0,0,0,371,2549,da.po,,da,,danish,,,da

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,70,408,410,28,120,73,506,171,1034,cy.po,,cy,,welsh,,,cy

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,371,2549,2400,0,0,0,0,371,2549,cs.po,,cs,,czech,,,cs

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,579,3694,3076,0,0,0,0,579,3694,crh.po,,crh,,crimean turkish,,,crh

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,384,2659,3121,0,0,0,0,384,2659,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,384,2659,3124,0,0,0,0,384,2659,ca.po,,ca,,catalan,,,ca

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,416,2494,2426,0,0,0,0,416,2494,bs.po,,bs,,bosnian,,,bs

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,65,129,160,6,20,172,1469,243,1618,br.po,,br,,breton,,,br

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,429,2607,2682,0,0,0,0,429,2607,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,288,1752,1844,0,0,0,0,288,1752,bn.po,,bn,,bangla,,,bn

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,572,3740,3973,0,0,0,0,572,3740,bg.po,,bg,,bulgarian,,,bg

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,171,1034,845,0,0,0,0,171,1034,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,371,2549,2164,0,0,0,0,371,2549,be.po,,be,,belarusian,,,be

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,47,313,260,42,196,82,525,171,1034,az.po,,az,,azerbaijani,,,az

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,569,3892,4208,0,0,0,0,569,3892,ast.po,,ast,,asturian,,,ast

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,429,2607,2511,0,0,0,0,429,2607,as.po,,as,,assamese,,,as

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,318,1683,1582,23,80,149,1381,490,3144,ar.po,,ar,,arabic,,,ar

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,3,3,5,27,60,141,971,171,1034,am.po,,am,,amharic,,,am

+ gnome-settings-daemon-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,102,509,496,22,85,66,486,190,1080,af.po,,af,,afrikaans,,,af

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/sv/sv.po,232,4113,3533,0,0,0,0,232,4113,sv.po,,sv,,swedish,,,sv

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/ro/ro.po,19,141,143,23,202,187,3745,229,4088,ro.po,,ro,,romanian,,,ro

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,232,4113,4276,0,0,0,0,232,4113,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pt/pt.po,229,4089,4167,0,0,0,0,229,4089,pt.po,,pt,,portuguese,,,pt

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/pl/pl.po,232,4113,3200,0,0,0,0,232,4113,pl.po,,pl,,polish,,,pl

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/ko/ko.po,232,4113,2765,0,0,0,0,232,4113,ko.po,,ko,,korean,,,ko

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/hu/hu.po,232,4113,3177,0,0,0,0,232,4113,hu.po,,hu,,hungarian,,,hu

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/fr/fr.po,232,4113,4370,0,0,0,0,232,4113,fr.po,,fr,,french,,,fr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/es/es.po,232,4113,4335,0,0,0,0,232,4113,es.po,,es,,spanish,,,es

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/el/el.po,229,4089,4061,0,0,0,0,229,4089,el.po,,el,,greek,,,el

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/de/de.po,232,4113,3790,0,0,0,0,232,4113,de.po,,de,,german,,,de

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,help/cs/cs.po,232,4113,3526,0,0,0,0,232,4113,cs.po,,cs,,czech,,,cs

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,304,1444,440,0,0,0,0,304,1444,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,292,1289,430,0,0,0,0,292,1289,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,304,1439,483,0,0,0,0,304,1439,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,298,1365,1969,0,0,0,0,298,1365,vi.po,,vi,,vietnamese,,,vi

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,301,1396,1287,0,0,0,0,301,1396,uk.po,,uk,,ukrainian,,,uk

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ug.po,308,1280,1149,0,0,0,0,308,1280,ug.po,,ug,,uyghur,,,ug

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,304,1444,1264,0,0,0,0,304,1444,tr.po,,tr,,turkish,,,tr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,298,1365,589,0,0,0,0,298,1365,th.po,,th,,thai,,,th

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,291,1285,1309,0,0,0,0,291,1285,tg.po,,tg,,tajik,,,tg

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,292,1289,1161,0,0,0,0,292,1289,te.po,,te,,telugu,,,te

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ta.po,292,1289,1142,0,0,0,0,292,1289,ta.po,,ta,,tamil,,,ta

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,304,1444,1286,0,0,0,0,304,1444,sv.po,,sv,,swedish,,,sv

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,304,1439,1487,0,0,0,0,304,1439,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,304,1444,1491,0,0,0,0,304,1444,sr.po,,sr,,serbian,,,sr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sq.po,177,645,806,0,0,0,0,177,645,sq.po,,sq,,albanian,,,sq

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,304,1444,1480,0,0,0,0,304,1444,sl.po,,sl,,slovenian,,,sl

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,302,1440,1340,0,0,0,0,302,1440,sk.po,,sk,,slovak,,,sk

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/si.po,131,258,310,0,0,93,581,224,839,si.po,,si,,sinhala,,,si

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/rw.po,22,22,23,86,471,61,117,169,610,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,304,1444,1370,0,0,0,0,304,1444,ru.po,,ru,,russian,,,ru

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,304,1444,1667,0,0,0,0,304,1444,ro.po,,ro,,romanian,,,ro

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,304,1444,1829,0,0,0,0,304,1444,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,301,1396,1747,0,0,0,0,301,1396,pt.po,,pt,,portuguese,,,pt

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ps.po,177,479,567,0,0,53,389,230,868,ps.po,,ps,,pashto,,,ps

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,304,1444,1391,0,0,0,0,304,1444,pl.po,,pl,,polish,,,pl

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,304,1439,1538,0,0,0,0,304,1439,pa.po,,pa,,punjabi,,,pa

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/or.po,308,1280,1294,0,0,0,0,308,1280,or.po,,or,,odia,,,or

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,301,1396,1891,0,0,0,0,301,1396,oc.po,,oc,,occitan,,,oc

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nn.po,231,874,858,0,0,0,0,231,874,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,304,1444,1383,0,0,0,0,304,1444,nl.po,,nl,,dutch,,,nl

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,313,1462,1357,0,0,0,0,313,1462,ne.po,,ne,,nepali,,,ne

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nds.po,56,97,89,0,0,188,836,244,933,nds.po,,nds,,low german,,,nds

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,314,1463,1489,0,0,0,0,314,1463,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ms.po,143,502,487,0,0,0,0,143,502,ms.po,,ms,,malay,,,ms

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mr.po,292,1289,1164,0,0,0,0,292,1289,mr.po,,mr,,marathi,,,mr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mn.po,142,498,452,0,0,0,0,142,498,mn.po,,mn,,mongolian,,,mn

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,305,1440,1233,0,0,0,0,305,1440,ml.po,,ml,,malayalam,,,ml

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mk.po,275,1072,1236,0,0,0,0,275,1072,mk.po,,mk,,macedonian,,,mk

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mg.po,209,845,929,1,1,0,0,210,846,mg.po,,mg,,malagasy,,,mg

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/mai.po,175,577,664,0,0,69,356,244,933,mai.po,,mai,,maithili,,,mai

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,304,1444,1291,0,0,0,0,304,1444,lv.po,,lv,,latvian,,,lv

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,304,1444,1355,0,0,0,0,304,1444,lt.po,,lt,,lithuanian,,,lt

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/li.po,116,388,377,20,67,7,47,143,502,li.po,,li,,limburgish,,,li

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ky.po,308,1283,1139,0,0,0,0,308,1283,ky.po,,ky,,kyrgyz,,,ky

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ku.po,87,154,172,0,0,90,491,177,645,ku.po,,ku,,kurdish,,,ku

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,304,1444,1261,0,0,0,0,304,1444,ko.po,,ko,,korean,,,ko

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,292,1289,1159,0,0,0,0,292,1289,kn.po,,kn,,kannada,,,kn

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/km.po,294,1283,571,0,0,0,0,294,1283,km.po,,km,,khmer,,,km

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,304,1444,1280,0,0,0,0,304,1444,kk.po,,kk,,kazakh,,,kk

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ka.po,224,839,738,0,0,0,0,224,839,ka.po,,ka,,georgian,,,ka

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,301,1437,469,0,0,3,7,304,1444,ja.po,,ja,,japanese,,,ja

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,304,1444,1560,0,0,0,0,304,1444,it.po,,it,,italian,,,it

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,305,1440,1275,0,0,0,0,305,1440,is.po,,is,,icelandic,,,is

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,304,1444,1420,0,0,0,0,304,1444,id.po,,id,,indonesian,,,id

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,304,1444,1336,0,0,0,0,304,1444,hu.po,,hu,,hungarian,,,hu

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,302,1440,1400,0,0,0,0,302,1440,hr.po,,hr,,croatian,,,hr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/hi.po,292,1289,1417,0,0,0,0,292,1289,hi.po,,hi,,hindi,,,hi

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,298,1365,1323,0,0,0,0,298,1365,he.po,,he,,hebrew,,,he

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gu.po,308,1280,1348,0,0,0,0,308,1280,gu.po,,gu,,gujarati,,,gu

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,304,1444,1852,0,0,0,0,304,1444,gl.po,,gl,,galician,,,gl

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,313,1462,2024,0,0,0,0,313,1462,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,158,294,370,3,9,130,900,291,1203,ga.po,,ga,,irish,,,ga

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,304,1444,1699,0,0,0,0,304,1444,fur.po,,fur,,friulian,,,fur

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,304,1444,1972,0,0,0,0,304,1444,fr.po,,fr,,french,,,fr

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,304,1444,1034,0,0,0,0,304,1444,fi.po,,fi,,finnish,,,fi

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,313,1462,1704,0,0,0,0,313,1462,fa.po,,fa,,persian,,,fa

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,304,1444,1259,0,0,0,0,304,1444,eu.po,,eu,,basque,,,eu

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,292,1289,1018,0,0,0,0,292,1289,et.po,,et,,estonian,,,et

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,304,1444,1905,0,0,0,0,304,1444,es.po,,es,,spanish,,,es

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,303,1407,1194,0,0,0,0,303,1407,eo.po,,eo,,esperanto,,,eo

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,304,1439,1462,0,0,0,0,304,1439,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en_ca.po,177,645,644,0,0,0,0,177,645,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,210,727,728,34,206,0,0,244,933,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,304,1444,1519,0,0,0,0,304,1444,el.po,,el,,greek,,,el

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/dz.po,230,868,501,0,0,0,0,230,868,dz.po,,dz,,dzongkha,,,dz

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,304,1444,1398,0,0,0,0,304,1444,de.po,,de,,german,,,de

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,302,1440,1275,0,0,0,0,302,1440,da.po,,da,,danish,,,da

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/cy.po,177,645,711,0,0,0,0,177,645,cy.po,,cy,,welsh,,,cy

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,304,1444,1381,0,0,0,0,304,1444,cs.po,,cs,,czech,,,cs

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,313,1462,1833,0,0,0,0,313,1462,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,303,1441,1813,0,0,1,1,304,1442,ca.po,,ca,,catalan,,,ca

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,292,1289,1244,0,0,0,0,292,1289,bs.po,,bs,,bosnian,,,bs

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,292,1289,1317,0,0,0,0,292,1289,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bn.po,244,933,1055,0,0,0,0,244,933,bn.po,,bn,,bangla,,,bn

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,313,1462,1581,0,0,0,0,313,1462,bg.po,,bg,,bulgarian,,,bg

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,184,545,507,0,0,54,368,238,913,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,313,1462,1424,0,0,0,0,313,1462,be.po,,be,,belarusian,,,be

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/az.po,143,502,449,0,0,0,0,143,502,az.po,,az,,azerbaijani,,,az

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ast.po,238,913,1131,0,0,1,5,239,918,ast.po,,ast,,asturian,,,ast

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,292,1289,1253,0,0,0,0,292,1289,as.po,,as,,assamese,,,as

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,304,1439,1575,0,0,0,0,304,1439,ar.po,,ar,,arabic,,,ar

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,289,1276,1596,0,0,0,0,289,1276,an.po,,an,,aragonese,,,an

+ gnome-system-monitor-3.32.1-2.fc30.src.rpm.stats.csv,po/am.po,43,74,90,20,33,80,395,143,502,am.po,,am,,amharic,,,am

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/sv/sv.po,538,5361,4892,0,0,0,0,538,5361,sv.po,,sv,,swedish,,,sv

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ru/ru.po,517,5232,4551,0,0,0,0,517,5232,ru.po,,ru,,russian,,,ru

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/pl/pl.po,538,5361,4355,0,0,0,0,538,5361,pl.po,,pl,,polish,,,pl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ca/ca.po,513,5247,5593,0,0,0,0,513,5247,ca.po,,ca,,catalan,,,ca

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/fr/fr.po,546,5468,6141,0,0,0,0,546,5468,fr.po,,fr,,french,,,fr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/el/el.po,513,5247,5419,0,0,0,0,513,5247,el.po,,el,,greek,,,el

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/gl/gl.po,225,1149,1244,23,108,254,3755,502,5012,gl.po,,gl,,galician,,,gl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,546,5468,5967,0,0,0,0,546,5468,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/de/de.po,546,5468,5453,0,0,0,0,546,5468,de.po,,de,,german,,,de

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/cs/cs.po,546,5468,5010,0,0,0,0,546,5468,cs.po,,cs,,czech,,,cs

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ro/ro.po,136,528,532,0,0,410,4940,546,5468,ro.po,,ro,,romanian,,,ro

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/es/es.po,546,5468,6142,0,0,0,0,546,5468,es.po,,es,,spanish,,,es

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/ko/ko.po,546,5468,4047,0,0,0,0,546,5468,ko.po,,ko,,korean,,,ko

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/fi/fi.po,481,4718,3149,16,225,20,289,517,5232,fi.po,,fi,,finnish,,,fi

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,help/hu/hu.po,538,5361,4551,0,0,0,0,538,5361,hu.po,,hu,,hungarian,,,hu

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,487,4145,4065,0,0,0,0,487,4145,mk.po,,mk,,macedonian,,,mk

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,488,2499,2977,0,0,0,0,488,2499,fur.po,,fur,,friulian,,,fur

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,493,4548,4706,0,0,0,0,493,4548,sq.po,,sq,,albanian,,,sq

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,55,69,71,395,4210,63,127,513,4406,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,339,3183,3289,65,365,38,355,442,3903,cy.po,,cy,,welsh,,,cy

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/br.po,216,639,702,1,12,245,3296,462,3947,br.po,,br,,breton,,,br

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,304,1032,1108,20,102,94,1015,418,2149,ga.po,,ga,,irish,,,ga

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,488,2499,2363,0,0,0,0,488,2499,sl.po,,sl,,slovenian,,,sl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,428,1785,1616,37,495,23,219,488,2499,ar.po,,ar,,arabic,,,ar

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,488,2499,2353,0,0,0,0,488,2499,id.po,,id,,indonesian,,,id

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,488,2499,2414,0,0,0,0,488,2499,nl.po,,nl,,dutch,,,nl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,342,3098,1233,84,548,61,499,487,4145,dz.po,,dz,,dzongkha,,,dz

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,468,2085,1549,10,296,10,118,488,2499,fi.po,,fi,,finnish,,,fi

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,487,2554,2779,0,0,0,0,487,2554,bg.po,,bg,,bulgarian,,,bg

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,488,2499,2973,0,0,0,0,488,2499,gl.po,,gl,,galician,,,gl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,470,3947,4839,0,0,47,659,517,4606,wa.po,,wa,,walloon,,,wa

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,487,2481,2050,0,0,1,18,488,2499,eu.po,,eu,,basque,,,eu

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,488,2499,2319,0,0,0,0,488,2499,hr.po,,hr,,croatian,,,hr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,486,2503,3017,0,0,0,0,486,2503,oc.po,,oc,,occitan,,,oc

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,184,389,342,311,4177,20,36,515,4602,ka.po,,ka,,georgian,,,ka

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,488,2499,2940,0,0,0,0,488,2499,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,487,2554,3241,0,0,0,0,487,2554,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,488,2499,2354,0,0,0,0,488,2499,sr.po,,sr,,serbian,,,sr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,487,2554,3049,0,0,0,0,487,2554,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,488,2499,2270,0,0,0,0,488,2499,ru.po,,ru,,russian,,,ru

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,433,2308,1973,0,0,0,0,433,2308,ug.po,,ug,,uyghur,,,ug

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,488,2499,2205,0,0,0,0,488,2499,tr.po,,tr,,turkish,,,tr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,442,2209,2362,0,0,0,0,442,2209,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,402,1638,1541,0,0,85,916,487,2554,is.po,,is,,icelandic,,,is

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,488,2499,2092,0,0,0,0,488,2499,lv.po,,lv,,latvian,,,lv

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,455,2265,1863,18,129,10,91,483,2485,ml.po,,ml,,malayalam,,,ml

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,482,2416,2233,0,0,6,83,488,2499,eo.po,,eo,,esperanto,,,eo

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,488,2499,2663,0,0,0,0,488,2499,ro.po,,ro,,romanian,,,ro

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,474,3480,2757,2,45,45,897,521,4422,mn.po,,mn,,mongolian,,,mn

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,496,4218,4219,0,0,0,0,496,4218,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,442,2209,1883,0,0,0,0,442,2209,ta.po,,ta,,tamil,,,ta

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,477,2511,2497,0,0,0,0,477,2511,he.po,,he,,hebrew,,,he

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,473,2336,2504,1,7,12,160,486,2503,pa.po,,pa,,punjabi,,,pa

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,459,3933,3589,3,14,0,0,462,3947,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,442,2209,1841,0,0,0,0,442,2209,te.po,,te,,telugu,,,te

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,488,2499,2662,0,0,0,0,488,2499,el.po,,el,,greek,,,el

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,419,2157,1695,0,0,0,0,419,2157,et.po,,et,,estonian,,,et

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,511,4558,4454,12,60,0,0,523,4618,mg.po,,mg,,malagasy,,,mg

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,440,2218,2087,0,0,0,0,440,2218,bs.po,,bs,,bosnian,,,bs

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,348,3013,3089,0,0,43,383,391,3396,mai.po,,mai,,maithili,,,mai

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,180,350,372,29,84,308,3978,517,4412,am.po,,am,,amharic,,,am

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,488,2499,3048,0,0,0,0,488,2499,es.po,,es,,spanish,,,es

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,423,2045,2348,0,0,19,164,442,2209,hi.po,,hi,,hindi,,,hi

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,486,2503,727,0,0,0,0,486,2503,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,488,2499,2216,0,0,0,0,488,2499,kk.po,,kk,,kazakh,,,kk

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,372,1619,1730,1,6,145,2981,518,4606,ku.po,,ku,,kurdish,,,ku

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,488,2499,2839,0,0,0,0,488,2499,it.po,,it,,italian,,,it

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,430,2248,720,0,0,0,0,430,2248,km.po,,km,,khmer,,,km

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,483,4141,4096,0,0,0,0,483,4141,bn.po,,bn,,bangla,,,bn

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,476,2370,792,0,0,12,129,488,2499,ja.po,,ja,,japanese,,,ja

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,471,2341,2214,8,73,7,89,486,2503,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,488,2499,2991,0,0,0,0,488,2499,ca.po,,ca,,catalan,,,ca

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,488,2499,707,0,0,0,0,488,2499,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,493,2543,2570,0,0,0,0,493,2543,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,437,2182,2144,0,0,0,0,437,2182,tg.po,,tg,,tajik,,,tg

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,477,2511,805,0,0,0,0,477,2511,th.po,,th,,thai,,,th

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,487,4145,4425,0,0,0,0,487,4145,ast.po,,ast,,asturian,,,ast

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,430,3842,3156,0,0,2,45,432,3887,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,511,4597,4609,0,0,0,0,511,4597,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,273,806,977,1,3,247,3803,521,4612,si.po,,si,,sinhala,,,si

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,488,2499,2344,0,0,0,0,488,2499,cs.po,,cs,,czech,,,cs

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,492,2542,2395,0,0,0,0,492,2542,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,439,2204,617,3,5,0,0,442,2209,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,488,2499,2166,0,0,0,0,488,2499,hu.po,,hu,,hungarian,,,hu

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,327,1321,1211,77,475,38,413,442,2209,ne.po,,ne,,nepali,,,ne

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,440,2218,2646,0,0,0,0,440,2218,an.po,,an,,aragonese,,,an

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,427,2073,2232,9,93,6,43,442,2209,gu.po,,gu,,gujarati,,,gu

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,442,2209,2268,0,0,0,0,442,2209,as.po,,as,,assamese,,,as

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,477,2511,2161,0,0,0,0,477,2511,uk.po,,uk,,ukrainian,,,uk

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,518,4397,3646,2,7,1,18,521,4422,xh.po,,xh,,xhosa,,,xh

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,233,1064,1029,8,29,211,2835,452,3928,nds.po,,nds,,low german,,,nds

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,508,2642,2427,0,0,0,0,508,2642,pl.po,,pl,,polish,,,pl

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/hy.po,117,261,236,47,170,273,3463,437,3894,hy.po,,hy,,armenian,,,hy

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,488,2499,2283,0,0,0,0,488,2499,da.po,,da,,danish,,,da

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,487,2554,2813,0,0,0,0,487,2554,fa.po,,fa,,persian,,,fa

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,488,2499,2098,0,0,0,0,488,2499,lt.po,,lt,,lithuanian,,,lt

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,259,899,1024,0,0,131,2495,390,3394,ps.po,,ps,,pashto,,,ps

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,453,2346,2188,25,98,14,98,492,2542,sk.po,,sk,,slovak,,,sk

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,488,2499,3415,0,0,0,0,488,2499,vi.po,,vi,,vietnamese,,,vi

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,442,2209,2040,0,0,0,0,442,2209,mr.po,,mr,,marathi,,,mr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,484,3691,3219,11,68,26,663,521,4422,ms.po,,ms,,malay,,,ms

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,488,2499,3010,0,0,0,0,488,2499,fr.po,,fr,,french,,,fr

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,488,2499,2494,0,0,0,0,488,2499,de.po,,de,,german,,,de

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,442,2209,1934,0,0,0,0,442,2209,kn.po,,kn,,kannada,,,kn

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,477,2511,2819,0,0,0,0,477,2511,pt.po,,pt,,portuguese,,,pt

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,488,2499,2064,0,0,0,0,488,2499,ko.po,,ko,,korean,,,ko

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,511,4360,3358,9,44,1,18,521,4422,az.po,,az,,azerbaijani,,,az

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,434,2309,2400,0,0,0,0,434,2309,or.po,,or,,odia,,,or

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,488,2499,2332,0,0,0,0,488,2499,sv.po,,sv,,swedish,,,sv

+ gnome-terminal-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,488,2499,2264,0,0,0,0,488,2499,be.po,,be,,belarusian,,,be

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ln.po,4,10,13,0,0,0,0,4,10,ln.po,,ln,,lingala,,,ln

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gd.po,6,15,18,0,0,0,0,6,15,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/it.po,6,15,16,0,0,0,0,6,15,it.po,,it,,italian,,,it

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/eu.po,6,15,14,0,0,0,0,6,15,eu.po,,eu,,basque,,,eu

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hi.po,5,12,11,0,0,0,0,5,12,hi.po,,hi,,hindi,,,hi

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hr.po,6,15,13,0,0,0,0,6,15,hr.po,,hr,,croatian,,,hr

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ga.po,5,12,10,0,0,0,0,5,12,ga.po,,ga,,irish,,,ga

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/en_ca.po,9,24,24,0,0,0,0,9,24,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/tr.po,6,15,15,0,0,0,0,6,15,tr.po,,tr,,turkish,,,tr

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/lt.po,6,15,11,0,0,0,0,6,15,lt.po,,lt,,lithuanian,,,lt

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/da.po,6,15,16,0,0,0,0,6,15,da.po,,da,,danish,,,da

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/km.po,9,24,9,0,0,0,0,9,24,km.po,,km,,khmer,,,km

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/as.po,9,24,23,0,0,0,0,9,24,as.po,,as,,assamese,,,as

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fa.po,6,15,15,0,0,0,0,6,15,fa.po,,fa,,persian,,,fa

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/en_gb.po,9,24,24,0,0,0,0,9,24,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/kn.po,5,12,14,0,0,0,0,5,12,kn.po,,kn,,kannada,,,kn

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ko.po,6,15,11,0,0,0,0,6,15,ko.po,,ko,,korean,,,ko

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/id.po,6,15,14,0,0,0,0,6,15,id.po,,id,,indonesian,,,id

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sv.po,6,15,16,0,0,0,0,6,15,sv.po,,sv,,swedish,,,sv

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/is.po,6,15,16,0,0,0,0,6,15,is.po,,is,,icelandic,,,is

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ne.po,6,15,13,0,0,0,0,6,15,ne.po,,ne,,nepali,,,ne

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/kk.po,6,15,13,0,0,0,0,6,15,kk.po,,kk,,kazakh,,,kk

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,6,15,15,0,0,0,0,6,15,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/cs.po,6,15,15,0,0,0,0,6,15,cs.po,,cs,,czech,,,cs

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/af.po,6,15,15,0,0,0,0,6,15,af.po,,af,,afrikaans,,,af

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/th.po,9,24,9,0,0,0,0,9,24,th.po,,th,,thai,,,th

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/tg.po,5,12,12,0,0,0,0,5,12,tg.po,,tg,,tajik,,,tg

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/vi.po,9,24,31,0,0,0,0,9,24,vi.po,,vi,,vietnamese,,,vi

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/an.po,9,24,26,0,0,0,0,9,24,an.po,,an,,aragonese,,,an

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_cn.po,6,15,6,0,0,0,0,6,15,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ug.po,9,24,23,0,0,0,0,9,24,ug.po,,ug,,uyghur,,,ug

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/hu.po,6,15,14,0,0,0,0,6,15,hu.po,,hu,,hungarian,,,hu

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sr.po,6,15,14,0,0,0,0,6,15,sr.po,,sr,,serbian,,,sr

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gu.po,9,24,24,0,0,0,0,9,24,gu.po,,gu,,gujarati,,,gu

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fi.po,6,15,13,0,0,0,0,6,15,fi.po,,fi,,finnish,,,fi

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bn_in.po,5,12,11,0,0,0,0,5,12,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pt.po,6,15,14,0,0,0,0,6,15,pt.po,,pt,,portuguese,,,pt

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pt_br.po,6,15,14,0,0,0,0,6,15,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/eo.po,6,15,14,0,0,0,0,6,15,eo.po,,eo,,esperanto,,,eo

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/lv.po,6,15,13,0,0,0,0,6,15,lv.po,,lv,,latvian,,,lv

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/es.po,6,15,15,0,0,0,0,6,15,es.po,,es,,spanish,,,es

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,9,24,23,0,0,0,0,9,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pa.po,6,15,15,0,0,0,0,6,15,pa.po,,pa,,punjabi,,,pa

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/el.po,6,15,14,0,0,0,0,6,15,el.po,,el,,greek,,,el

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_tw.po,6,15,6,0,0,0,0,6,15,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/de.po,6,15,17,0,0,0,0,6,15,de.po,,de,,german,,,de

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sl.po,6,15,17,0,0,0,0,6,15,sl.po,,sl,,slovenian,,,sl

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ta.po,9,24,23,0,0,0,0,9,24,ta.po,,ta,,tamil,,,ta

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/te.po,9,24,23,0,0,0,0,9,24,te.po,,te,,telugu,,,te

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sk.po,6,15,15,0,0,0,0,6,15,sk.po,,sk,,slovak,,,sk

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ro.po,9,24,27,0,0,0,0,9,24,ro.po,,ro,,romanian,,,ro

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/uk.po,6,15,14,0,0,0,0,6,15,uk.po,,uk,,ukrainian,,,uk

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/mr.po,9,24,23,0,0,0,0,9,24,mr.po,,mr,,marathi,,,mr

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/nb.po,6,15,16,0,0,0,0,6,15,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/gl.po,6,15,15,0,0,0,0,6,15,gl.po,,gl,,galician,,,gl

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/nl.po,6,15,18,0,0,0,0,6,15,nl.po,,nl,,dutch,,,nl

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ja.po,9,24,9,0,0,0,0,9,24,ja.po,,ja,,japanese,,,ja

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fur.po,6,15,16,0,0,0,0,6,15,fur.po,,fur,,friulian,,,fur

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bg.po,6,15,15,0,0,0,0,6,15,bg.po,,bg,,bulgarian,,,bg

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/be.po,6,15,15,0,0,0,0,6,15,be.po,,be,,belarusian,,,be

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ru.po,6,15,12,0,0,0,0,6,15,ru.po,,ru,,russian,,,ru

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/et.po,9,24,17,0,0,0,0,9,24,et.po,,et,,estonian,,,et

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/pl.po,6,15,17,0,0,0,0,6,15,pl.po,,pl,,polish,,,pl

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ml.po,5,12,11,0,0,0,0,5,12,ml.po,,ml,,malayalam,,,ml

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fy.po,9,24,18,0,0,0,0,9,24,fy.po,,fy,,western frisian,,,fy

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ar.po,9,24,23,0,0,0,0,9,24,ar.po,,ar,,arabic,,,ar

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/oc.po,4,10,12,0,0,0,0,4,10,oc.po,,oc,,occitan,,,oc

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/fr.po,6,15,20,0,0,0,0,6,15,fr.po,,fr,,french,,,fr

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/bs.po,4,10,9,0,0,0,0,4,10,bs.po,,bs,,bosnian,,,bs

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/zh_hk.po,9,24,9,0,0,0,0,9,24,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/sr@latin.po,6,15,14,0,0,0,0,6,15,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/ca.po,6,15,15,0,0,0,0,6,15,ca.po,,ca,,catalan,,,ca

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/or.po,9,24,24,0,0,0,0,9,24,or.po,,or,,odia,,,or

+ gnome-themes-extra-3.28-5.fc30.src.rpm.stats.csv,po/he.po,6,15,13,0,0,0,0,6,15,he.po,,he,,hebrew,,,he

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/de/de.po,3202,56807,54927,0,0,0,0,3202,56807,de.po,,de,,german,,,de

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/kn/kn.po,350,897,882,0,0,2971,59356,3321,60253,kn.po,,kn,,kannada,,,kn

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fr/fr.po,2704,47231,50188,321,7417,79,1325,3104,55973,fr.po,,fr,,french,,,fr

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/as/as.po,2407,30614,27469,319,4795,495,23177,3221,58586,as.po,,as,,assamese,,,as

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hu/hu.po,3201,56823,45700,0,0,0,0,3201,56823,hu.po,,hu,,hungarian,,,hu

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/it/it.po,2088,36623,36404,480,7593,747,15915,3315,60131,it.po,,it,,italian,,,it

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ta/ta.po,2795,50123,38336,275,5971,80,1791,3150,57885,ta.po,,ta,,tamil,,,ta

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ro/ro.po,169,1855,1837,0,0,3035,54970,3204,56825,ro.po,,ro,,romanian,,,ro

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/vi/vi.po,2237,36788,39571,0,0,689,20176,2926,56964,vi.po,,vi,,vietnamese,,,vi

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sv/sv.po,3201,56823,52768,0,0,0,0,3201,56823,sv.po,,sv,,swedish,,,sv

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ru/ru.po,2884,50476,42172,247,6960,40,732,3171,58168,ru.po,,ru,,russian,,,ru

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/he/he.po,4,8,11,0,0,3133,56398,3137,56406,he.po,,he,,hebrew,,,he

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt/pt.po,3115,55812,57231,19,532,6,81,3140,56425,pt.po,,pt,,portuguese,,,pt

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/te/te.po,939,14118,10266,197,2937,2012,40704,3148,57759,te.po,,te,,telugu,,,te

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pl/pl.po,3201,56823,45248,0,0,0,0,3201,56823,pl.po,,pl,,polish,,,pl

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/lv/lv.po,3191,57078,44920,5,20,0,0,3196,57098,lv.po,,lv,,latvian,,,lv

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/id/id.po,1798,20821,18532,402,6368,966,29651,3166,56840,id.po,,id,,indonesian,,,id

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pa/pa.po,192,532,564,149,863,1900,44621,2241,46016,pa.po,,pa,,punjabi,,,pa

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/fi/fi.po,2052,28273,19055,649,15400,503,13152,3204,56825,fi.po,,fi,,finnish,,,fi

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/es/es.po,3075,54687,57662,111,1699,18,439,3204,56825,es.po,,es,,spanish,,,es

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr@latin/sr@latin.po,3168,56855,51793,0,0,0,0,3168,56855,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/zh_cn/zh_cn.po,2794,51114,5179,375,5958,147,3041,3316,60113,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/nl/nl.po,3168,56853,57429,0,0,0,0,3168,56853,nl.po,,nl,,dutch,,,nl

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gu/gu.po,2515,39284,39210,412,9639,223,8947,3150,57870,gu.po,,gu,,gujarati,,,gu

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ja/ja.po,1739,27509,3394,729,15161,636,13312,3104,55982,ja.po,,ja,,japanese,,,ja

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sl/sl.po,2939,52634,44589,190,4255,70,1761,3199,58650,sl.po,,sl,,slovenian,,,sl

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/sr/sr.po,3168,56855,51793,0,0,0,0,3168,56855,sr.po,,sr,,serbian,,,sr

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hr/hr.po,307,2687,2329,18,30,2847,54227,3172,56944,hr.po,,hr,,croatian,,,hr

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/el/el.po,3111,56124,56974,0,0,0,0,3111,56124,el.po,,el,,greek,,,el

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/hi/hi.po,164,3074,3661,1,19,2114,43704,2279,46797,hi.po,,hi,,hindi,,,hi

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/pt_br/pt_br.po,3201,56823,59860,0,0,0,0,3201,56823,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/cs/cs.po,3201,56823,49138,0,0,0,0,3201,56823,cs.po,,cs,,czech,,,cs

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/da/da.po,1445,11583,10661,0,0,1756,45240,3201,56823,da.po,,da,,danish,,,da

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/gl/gl.po,2431,35551,36371,641,18198,132,3076,3204,56825,gl.po,,gl,,galician,,,gl

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/ca/ca.po,3047,54705,57389,121,1537,34,565,3202,56807,ca.po,,ca,,catalan,,,ca

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,gnome-help/mr/mr.po,2559,44257,33981,563,12746,23,656,3145,57659,mr.po,,mr,,marathi,,,mr

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/de/de.po,542,7433,7064,0,0,0,0,542,7433,de.po,,de,,german,,,de

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/hu/hu.po,547,7497,6920,0,0,0,0,547,7497,hu.po,,hu,,hungarian,,,hu

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/sv/sv.po,661,9090,8055,0,0,0,0,661,9090,sv.po,,sv,,swedish,,,sv

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/es/es.po,593,7515,8331,15,527,53,1048,661,9090,es.po,,es,,spanish,,,es

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/pt_br/pt_br.po,542,7433,8003,0,0,0,0,542,7433,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/cs/cs.po,542,7433,6580,0,0,0,0,542,7433,cs.po,,cs,,czech,,,cs

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/ko/ko.po,661,9090,6736,0,0,0,0,661,9090,ko.po,,ko,,korean,,,ko

+ gnome-user-docs-3.32.1-1.fc30.src.rpm.stats.csv,system-admin-guide/gl/gl.po,238,1590,1823,19,118,285,5725,542,7433,gl.po,,gl,,galician,,,gl

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,15,70,70,0,0,0,0,15,70,en_ca.po,,en,ca,english,,canada,en_ca

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,52,57,0,0,0,0,11,52,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ja.po,10,51,14,0,0,0,0,10,51,ja.po,,ja,,japanese,,,ja

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/af.po,10,52,54,0,0,0,0,10,52,af.po,,af,,afrikaans,,,af

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/da.po,11,52,44,0,0,0,0,11,52,da.po,,da,,danish,,,da

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nl.po,11,52,60,0,0,0,0,11,52,nl.po,,nl,,dutch,,,nl

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mk.po,13,61,62,0,0,0,0,13,61,mk.po,,mk,,macedonian,,,mk

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/he.po,10,52,49,0,0,0,0,10,52,he.po,,he,,hebrew,,,he

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/rw.po,2,2,4,11,59,0,0,13,61,rw.po,,rw,,kinyarwanda,,,rw

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sq.po,13,61,77,0,0,0,0,13,61,sq.po,,sq,,albanian,,,sq

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/tr.po,11,52,51,0,0,0,0,11,52,tr.po,,tr,,turkish,,,tr

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mr.po,29,160,160,0,0,0,0,29,160,mr.po,,mr,,marathi,,,mr

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,10,52,17,0,0,0,0,10,52,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/de.po,11,52,56,0,0,0,0,11,52,de.po,,de,,german,,,de

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/be.po,10,52,60,0,0,0,0,10,52,be.po,,be,,belarusian,,,be

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/it.po,11,52,57,0,0,0,0,11,52,it.po,,it,,italian,,,it

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,51,316,419,0,0,0,0,51,316,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/te.po,29,160,126,0,0,0,0,29,160,te.po,,te,,telugu,,,te

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/vi.po,11,52,87,0,0,0,0,11,52,vi.po,,vi,,vietnamese,,,vi

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/cs.po,11,52,50,0,0,0,0,11,52,cs.po,,cs,,czech,,,cs

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/br.po,51,326,379,0,0,0,0,51,326,br.po,,br,,breton,,,br

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ast.po,51,326,353,0,0,0,0,51,326,ast.po,,ast,,asturian,,,ast

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/kk.po,10,51,51,0,0,0,0,10,51,kk.po,,kk,,kazakh,,,kk

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/eo.po,10,52,51,0,0,0,0,10,52,eo.po,,eo,,esperanto,,,eo

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hr.po,10,52,51,0,0,0,0,10,52,hr.po,,hr,,croatian,,,hr

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bg.po,10,52,61,0,0,0,0,10,52,bg.po,,bg,,bulgarian,,,bg

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bn.po,51,326,374,0,0,0,0,51,326,bn.po,,bn,,bangla,,,bn

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/mai.po,6,8,11,0,0,40,280,46,288,mai.po,,mai,,maithili,,,mai

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hi.po,29,160,186,0,0,0,0,29,160,hi.po,,hi,,hindi,,,hi

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/oc.po,10,52,64,0,0,0,0,10,52,oc.po,,oc,,occitan,,,oc

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sr.po,11,52,59,0,0,0,0,11,52,sr.po,,sr,,serbian,,,sr

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pt.po,10,52,56,0,0,0,0,10,52,pt.po,,pt,,portuguese,,,pt

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/bs.po,26,136,134,0,0,0,0,26,136,bs.po,,bs,,bosnian,,,bs

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ko.po,11,52,42,0,0,0,0,11,52,ko.po,,ko,,korean,,,ko

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ro.po,11,52,59,0,0,0,0,11,52,ro.po,,ro,,romanian,,,ro

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/is.po,10,52,50,0,0,0,0,10,52,is.po,,is,,icelandic,,,is

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pl.po,11,52,53,0,0,0,0,11,52,pl.po,,pl,,polish,,,pl

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ne.po,10,52,47,0,0,0,0,10,52,ne.po,,ne,,nepali,,,ne

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/km.po,30,184,67,0,0,0,0,30,184,km.po,,km,,khmer,,,km

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/th.po,51,316,89,0,0,0,0,51,316,th.po,,th,,thai,,,th

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ga.po,46,288,361,0,0,0,0,46,288,ga.po,,ga,,irish,,,ga

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ta.po,29,160,139,0,0,0,0,29,160,ta.po,,ta,,tamil,,,ta

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,10,51,13,0,0,0,0,10,51,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/lv.po,10,51,48,0,0,0,0,10,51,lv.po,,lv,,latvian,,,lv

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sk.po,10,52,51,0,0,0,0,10,52,sk.po,,sk,,slovak,,,sk

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/or.po,29,160,169,0,0,0,0,29,160,or.po,,or,,odia,,,or

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/eu.po,10,52,47,0,0,0,0,10,52,eu.po,,eu,,basque,,,eu

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ar.po,34,247,214,0,0,0,0,34,247,ar.po,,ar,,arabic,,,ar

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/tg.po,26,136,136,0,0,0,0,26,136,tg.po,,tg,,tajik,,,tg

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fur.po,10,51,54,0,0,0,0,10,51,fur.po,,fur,,friulian,,,fur

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/lt.po,11,52,44,0,0,0,0,11,52,lt.po,,lt,,lithuanian,,,lt

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fi.po,11,52,48,0,0,0,0,11,52,fi.po,,fi,,finnish,,,fi

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ca.po,10,52,65,0,0,0,0,10,52,ca.po,,ca,,catalan,,,ca

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,10,52,52,0,0,0,0,10,52,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fa.po,10,52,58,0,0,0,0,10,52,fa.po,,fa,,persian,,,fa

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,10,52,65,0,0,0,0,10,52,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/id.po,11,52,57,0,0,0,0,11,52,id.po,,id,,indonesian,,,id

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/kn.po,29,160,126,0,0,0,0,29,160,kn.po,,kn,,kannada,,,kn

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,51,326,326,0,0,0,0,51,326,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ml.po,10,52,44,0,0,0,0,10,52,ml.po,,ml,,malayalam,,,ml

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,10,52,59,0,0,0,0,10,52,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gd.po,10,52,63,0,0,0,0,10,52,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/el.po,10,51,62,0,0,0,0,10,51,el.po,,el,,greek,,,el

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,29,160,38,0,0,0,0,29,160,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sv.po,11,52,52,0,0,0,0,11,52,sv.po,,sv,,swedish,,,sv

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/uk.po,10,52,45,0,0,0,0,10,52,uk.po,,uk,,ukrainian,,,uk

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/et.po,10,52,55,0,0,0,0,10,52,et.po,,et,,estonian,,,et

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nb.po,10,52,49,0,0,0,0,10,52,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/an.po,29,160,187,0,0,0,0,29,160,an.po,,an,,aragonese,,,an

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gu.po,10,52,56,0,0,0,0,10,52,gu.po,,gu,,gujarati,,,gu

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ln.po,10,52,57,0,0,0,0,10,52,ln.po,,ln,,lingala,,,ln

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/es.po,11,52,62,0,0,0,0,11,52,es.po,,es,,spanish,,,es

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/pa.po,10,52,57,0,0,0,0,10,52,pa.po,,pa,,punjabi,,,pa

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/as.po,29,160,186,0,0,0,0,29,160,as.po,,as,,assamese,,,as

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/gl.po,10,51,58,0,0,0,0,10,51,gl.po,,gl,,galician,,,gl

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ug.po,29,224,183,0,0,0,0,29,224,ug.po,,ug,,uyghur,,,ug

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/nn.po,51,326,320,0,0,0,0,51,326,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/fr.po,11,52,69,0,0,0,0,11,52,fr.po,,fr,,french,,,fr

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/hu.po,11,52,48,0,0,0,0,11,52,hu.po,,hu,,hungarian,,,hu

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/sl.po,11,52,55,0,0,0,0,11,52,sl.po,,sl,,slovenian,,,sl

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/dz.po,16,75,33,0,0,0,0,16,75,dz.po,,dz,,dzongkha,,,dz

+ gnome-user-share-3.32.0.1-1.fc30.src.rpm.stats.csv,po/ru.po,11,52,55,0,0,0,0,11,52,ru.po,,ru,,russian,,,ru

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/id.po,68,256,227,0,0,0,0,68,256,id.po,,id,,indonesian,,,id

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pa.po,68,256,275,0,0,0,0,68,256,pa.po,,pa,,punjabi,,,pa

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/te.po,68,256,208,0,0,0,0,68,256,te.po,,te,,telugu,,,te

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/oc.po,68,256,287,0,0,0,0,68,256,oc.po,,oc,,occitan,,,oc

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/af.po,63,229,232,2,7,1,10,66,246,af.po,,af,,afrikaans,,,af

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sk.po,68,256,221,0,0,0,0,68,256,sk.po,,sk,,slovak,,,sk

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bn.po,10,11,13,2,2,11,13,23,26,bn.po,,bn,,bangla,,,bn

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hi.po,68,256,267,0,0,0,0,68,256,hi.po,,hi,,hindi,,,hi

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/en_gb.po,68,256,256,0,0,0,0,68,256,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ka.po,10,11,11,2,2,11,13,23,26,ka.po,,ka,,georgian,,,ka

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ga.po,36,46,50,1,4,31,206,68,256,ga.po,,ga,,irish,,,ga

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ta.po,68,256,204,0,0,0,0,68,256,ta.po,,ta,,tamil,,,ta

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/vi.po,68,256,299,0,0,0,0,68,256,vi.po,,vi,,vietnamese,,,vi

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/tr.po,68,256,214,0,0,0,0,68,256,tr.po,,tr,,turkish,,,tr

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ca.po,68,256,292,0,0,0,0,68,256,ca.po,,ca,,catalan,,,ca

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/th.po,68,256,72,0,0,0,0,68,256,th.po,,th,,thai,,,th

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ro.po,68,256,250,0,0,0,0,68,256,ro.po,,ro,,romanian,,,ro

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/et.po,68,256,176,0,0,0,0,68,256,et.po,,et,,estonian,,,et

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/kn.po,10,11,12,2,2,11,13,23,26,kn.po,,kn,,kannada,,,kn

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/lt.po,68,256,209,0,0,0,0,68,256,lt.po,,lt,,lithuanian,,,lt

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/be@latin.po,10,11,11,2,2,11,13,23,26,be@latin.po,latin,be,,belarusian,,,be@latin

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ms.po,7,8,9,5,5,11,13,23,26,ms.po,,ms,,malay,,,ms

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,68,256,292,0,0,0,0,68,256,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/en@shaw.po,10,11,11,2,2,11,13,23,26,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nn.po,10,11,11,2,2,11,13,23,26,nn.po,,nn,,norwegian nynorsk,,,nn

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sr.po,68,256,208,0,0,0,0,68,256,sr.po,,sr,,serbian,,,sr

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/or.po,10,11,12,2,2,11,13,23,26,or.po,,or,,odia,,,or

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nl.po,68,256,237,0,0,0,0,68,256,nl.po,,nl,,dutch,,,nl

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sr@latin.po,68,256,208,0,0,0,0,68,256,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ar.po,10,11,11,2,2,11,13,23,26,ar.po,,ar,,arabic,,,ar

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/gl.po,68,256,292,0,0,0,0,68,256,gl.po,,gl,,galician,,,gl

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/gu.po,10,11,14,2,2,11,13,23,26,gu.po,,gu,,gujarati,,,gu

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mk.po,10,11,11,2,2,11,13,23,26,mk.po,,mk,,macedonian,,,mk

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sl.po,68,256,229,0,0,0,0,68,256,sl.po,,sl,,slovenian,,,sl

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/es.po,68,256,310,0,0,0,0,68,256,es.po,,es,,spanish,,,es

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hu.po,68,256,190,0,0,0,0,68,256,hu.po,,hu,,hungarian,,,hu

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/lv.po,68,256,203,0,0,0,0,68,256,lv.po,,lv,,latvian,,,lv

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fr.po,68,256,293,0,0,0,0,68,256,fr.po,,fr,,french,,,fr

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mr.po,10,11,11,2,2,11,13,23,26,mr.po,,mr,,marathi,,,mr

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nb.po,68,256,219,0,0,0,0,68,256,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ml.po,68,256,194,0,0,0,0,68,256,ml.po,,ml,,malayalam,,,ml

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ug.po,17,28,30,0,0,51,228,68,256,ug.po,,ug,,uyghur,,,ug

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bs.po,68,256,227,0,0,0,0,68,256,bs.po,,bs,,bosnian,,,bs

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/as.po,68,256,238,0,0,0,0,68,256,as.po,,as,,assamese,,,as

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_cn.po,68,256,68,0,0,0,0,68,256,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bg.po,68,256,235,0,0,0,0,68,256,bg.po,,bg,,bulgarian,,,bg

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ast.po,10,11,13,2,2,11,13,23,26,ast.po,,ast,,asturian,,,ast

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/it.po,68,256,264,0,0,0,0,68,256,it.po,,it,,italian,,,it

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/tg.po,11,11,15,0,0,57,245,68,256,tg.po,,tg,,tajik,,,tg

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_hk.po,68,256,69,0,0,0,0,68,256,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/nds.po,23,26,28,0,0,0,0,23,26,nds.po,,nds,,low german,,,nds

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fa.po,68,256,271,0,0,0,0,68,256,fa.po,,fa,,persian,,,fa

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/eo.po,58,201,183,0,0,8,45,66,246,eo.po,,eo,,esperanto,,,eo

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pt_br.po,68,256,285,0,0,0,0,68,256,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/zh_tw.po,68,256,69,0,0,0,0,68,256,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ko.po,68,256,160,0,0,0,0,68,256,ko.po,,ko,,korean,,,ko

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/pl.po,68,256,239,0,0,0,0,68,256,pl.po,,pl,,polish,,,pl

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ps.po,7,8,8,1,1,15,17,23,26,ps.po,,ps,,pashto,,,ps

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/cs.po,68,256,234,0,0,0,0,68,256,cs.po,,cs,,czech,,,cs

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/he.po,68,256,217,0,0,0,0,68,256,he.po,,he,,hebrew,,,he

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/km.po,66,246,75,0,0,0,0,66,246,km.po,,km,,khmer,,,km

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/eu.po,68,256,205,0,0,0,0,68,256,eu.po,,eu,,basque,,,eu

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/bn_in.po,10,11,11,2,2,11,13,23,26,bn_in.po,,bn,in,bangla,,india,bn_in

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/el.po,68,256,250,0,0,0,0,68,256,el.po,,el,,greek,,,el

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fur.po,68,256,266,0,0,0,0,68,256,fur.po,,fur,,friulian,,,fur

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sq.po,10,11,14,2,2,11,13,23,26,sq.po,,sq,,albanian,,,sq

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/hr.po,11,39,36,0,0,57,217,68,256,hr.po,,hr,,croatian,,,hr

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ku.po,10,11,11,2,2,11,13,23,26,ku.po,,ku,,kurdish,,,ku

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/fi.po,68,256,169,0,0,0,0,68,256,fi.po,,fi,,finnish,,,fi

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/da.po,68,256,210,0,0,0,0,68,256,da.po,,da,,danish,,,da

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/dz.po,10,11,11,2,2,11,13,23,26,dz.po,,dz,,dzongkha,,,dz

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/be.po,68,256,175,0,0,0,0,68,256,be.po,,be,,belarusian,,,be

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/uk.po,68,256,205,0,0,0,0,68,256,uk.po,,uk,,ukrainian,,,uk

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/sv.po,68,256,233,0,0,0,0,68,256,sv.po,,sv,,swedish,,,sv

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ru.po,68,256,165,0,0,0,0,68,256,ru.po,,ru,,russian,,,ru

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/mai.po,3,4,5,1,1,19,21,23,26,mai.po,,mai,,maithili,,,mai

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/ja.po,68,256,69,0,0,0,0,68,256,ja.po,,ja,,japanese,,,ja

+ gnome-video-effects-0.4.3-5.fc30.src.rpm.stats.csv,po/de.po,68,256,225,0,0,0,0,68,256,de.po,,de,,german,,,de

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,192,60,0,0,0,0,41,192,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,37,164,56,0,0,0,0,37,164,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,42,192,88,0,0,0,0,42,192,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/vi.po,42,195,284,0,0,0,0,42,195,vi.po,,vi,,vietnamese,,,vi

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/uk.po,42,192,168,0,0,0,0,42,192,uk.po,,uk,,ukrainian,,,uk

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/tr.po,42,195,165,0,0,0,0,42,195,tr.po,,tr,,turkish,,,tr

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/th.po,42,192,65,0,0,0,0,42,192,th.po,,th,,thai,,,th

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/tg.po,42,195,220,0,0,0,0,42,195,tg.po,,tg,,tajik,,,tg

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/te.po,81,216,198,0,0,0,0,81,216,te.po,,te,,telugu,,,te

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sv.po,42,195,203,0,0,0,0,42,195,sv.po,,sv,,swedish,,,sv

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,42,192,182,0,0,0,0,42,192,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sr.po,42,195,183,0,0,0,0,42,195,sr.po,,sr,,serbian,,,sr

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sl.po,42,195,166,0,0,0,0,42,195,sl.po,,sl,,slovenian,,,sl

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/sk.po,42,192,185,0,0,0,0,42,192,sk.po,,sk,,slovak,,,sk

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ru.po,42,195,162,0,0,0,0,42,195,ru.po,,ru,,russian,,,ru

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ro.po,42,195,208,0,0,0,0,42,195,ro.po,,ro,,romanian,,,ro

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,42,195,223,0,0,0,0,42,195,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pt.po,42,192,216,0,0,0,0,42,192,pt.po,,pt,,portuguese,,,pt

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pl.po,42,195,188,0,0,0,0,42,195,pl.po,,pl,,polish,,,pl

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/pa.po,41,191,228,0,0,0,0,41,191,pa.po,,pa,,punjabi,,,pa

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/oc.po,42,192,215,0,0,0,0,42,192,oc.po,,oc,,occitan,,,oc

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/nl.po,42,195,210,0,0,0,0,42,195,nl.po,,nl,,dutch,,,nl

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ne.po,42,192,179,0,0,0,0,42,192,ne.po,,ne,,nepali,,,ne

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/nb.po,42,192,186,0,0,0,0,42,192,nb.po,,nb,,norwegian bokmål,,,nb

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ml.po,42,192,141,0,0,0,0,42,192,ml.po,,ml,,malayalam,,,ml

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/lv.po,42,195,163,0,0,0,0,42,195,lv.po,,lv,,latvian,,,lv

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/lt.po,42,195,147,0,0,0,0,42,195,lt.po,,lt,,lithuanian,,,lt

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ko.po,42,192,155,0,0,0,0,42,192,ko.po,,ko,,korean,,,ko

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/kn.po,67,129,142,0,0,5,74,72,203,kn.po,,kn,,kannada,,,kn

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/kk.po,41,192,172,0,0,0,0,41,192,kk.po,,kk,,kazakh,,,kk

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ja.po,40,191,65,0,0,2,4,42,195,ja.po,,ja,,japanese,,,ja

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/it.po,42,195,196,0,0,0,0,42,195,it.po,,it,,italian,,,it

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/is.po,42,192,204,0,0,0,0,42,192,is.po,,is,,icelandic,,,is

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/id.po,42,195,195,0,0,0,0,42,195,id.po,,id,,indonesian,,,id

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/hu.po,42,195,179,0,0,0,0,42,195,hu.po,,hu,,hungarian,,,hu

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/hr.po,42,195,175,0,0,0,0,42,195,hr.po,,hr,,croatian,,,hr

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/he.po,42,192,191,0,0,0,0,42,192,he.po,,he,,hebrew,,,he

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/gl.po,42,195,207,0,0,0,0,42,195,gl.po,,gl,,galician,,,gl

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/gd.po,41,191,248,0,0,0,0,41,191,gd.po,,gd,,scottish gaelic,,,gd

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ga.po,38,113,123,0,0,3,70,41,183,ga.po,,ga,,irish,,,ga

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fur.po,42,195,209,0,0,0,0,42,195,fur.po,,fur,,friulian,,,fur

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fr.po,42,195,228,0,0,0,0,42,195,fr.po,,fr,,french,,,fr

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fi.po,42,195,140,0,0,0,0,42,195,fi.po,,fi,,finnish,,,fi

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/fa.po,42,192,205,0,0,0,0,42,192,fa.po,,fa,,persian,,,fa

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/eu.po,42,195,166,0,0,0,0,42,195,eu.po,,eu,,basque,,,eu

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/et.po,42,195,160,0,0,0,0,42,195,et.po,,et,,estonian,,,et

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/es.po,42,195,211,0,0,0,0,42,195,es.po,,es,,spanish,,,es

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/eo.po,42,195,194,0,0,0,0,42,195,eo.po,,eo,,esperanto,,,eo

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,42,195,198,0,0,0,0,42,195,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/el.po,42,195,234,0,0,0,0,42,195,el.po,,el,,greek,,,el

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/de.po,42,195,223,0,0,0,0,42,195,de.po,,de,,german,,,de

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/da.po,42,195,200,0,0,0,0,42,195,da.po,,da,,danish,,,da

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/cs.po,42,195,190,0,0,0,0,42,195,cs.po,,cs,,czech,,,cs

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,41,191,219,0,0,0,0,41,191,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ca.po,41,192,220,0,0,0,0,41,192,ca.po,,ca,,catalan,,,ca

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/bs.po,42,184,168,0,0,0,0,42,184,bs.po,,bs,,bosnian,,,bs

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/bg.po,42,192,222,0,0,0,0,42,192,bg.po,,bg,,bulgarian,,,bg

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/be.po,42,192,177,0,0,0,0,42,192,be.po,,be,,belarusian,,,be

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/as.po,41,183,182,0,0,0,0,41,183,as.po,,as,,assamese,,,as

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/ar.po,36,98,102,0,0,5,93,41,191,ar.po,,ar,,arabic,,,ar

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/an.po,42,184,191,0,0,0,0,42,184,an.po,,an,,aragonese,,,an

+ gnome-weather-3.32.1-2.fc30.src.rpm.stats.csv,po/af.po,40,191,205,0,0,0,0,40,191,af.po,,af,,afrikaans,,,af

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/hu.po,424,2524,2294,1133,6451,637,4459,2194,13434,hu.po,,hu,,hungarian,,,hu

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1932,11431,5338,176,1287,86,716,2194,13434,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/cs.po,2191,13419,13386,2,10,1,5,2194,13434,cs.po,,cs,,czech,,,cs

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/sv.po,1379,7982,7819,602,3778,213,1674,2194,13434,sv.po,,sv,,swedish,,,sv

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/id.po,424,2524,2366,1133,6451,637,4459,2194,13434,id.po,,id,,indonesian,,,id

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/zh_cn.po,2164,13261,4683,21,127,9,46,2194,13434,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/en@boldquot.po,2194,13434,13443,0,0,0,0,2194,13434,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/de.po,2159,13089,13422,29,296,6,49,2194,13434,de.po,,de,,german,,,de

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/et.po,424,2524,2224,1133,6451,637,4459,2194,13434,et.po,,et,,estonian,,,et

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ru.po,2191,13419,12826,2,10,1,5,2194,13434,ru.po,,ru,,russian,,,ru

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ro.po,823,4864,5237,853,4832,518,3738,2194,13434,ro.po,,ro,,romanian,,,ro

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/el.po,424,2524,2685,1133,6451,637,4459,2194,13434,el.po,,el,,greek,,,el

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/nb.po,2166,13252,12728,23,125,5,57,2194,13434,nb.po,,nb,,norwegian bokmål,,,nb

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/sk.po,423,2519,2463,1134,6456,637,4459,2194,13434,sk.po,,sk,,slovak,,,sk

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/uk.po,2138,13048,13776,45,295,11,91,2194,13434,uk.po,,uk,,ukrainian,,,uk

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/tr.po,1320,7635,7201,630,3919,244,1880,2194,13434,tr.po,,tr,,turkish,,,tr

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/pl.po,2192,13423,13597,1,6,1,5,2194,13434,pl.po,,pl,,polish,,,pl

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/gl.po,422,2496,2952,1154,6571,618,4367,2194,13434,gl.po,,gl,,galician,,,gl

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/eo.po,298,1664,1573,1217,6924,679,4846,2194,13434,eo.po,,eo,,esperanto,,,eo

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/da.po,1394,8105,7686,588,3662,212,1667,2194,13434,da.po,,da,,danish,,,da

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/pt.po,365,2083,2357,1162,6610,667,4741,2194,13434,pt.po,,pt,,portuguese,,,pt

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/en@quot.po,2194,13434,13434,0,0,0,0,2194,13434,en@quot.po,quot,en,,english,,,en@quot

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/es.po,2177,13247,15305,7,39,10,148,2194,13434,es.po,,es,,spanish,,,es

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ca.po,428,2505,3108,1134,6503,632,4426,2194,13434,ca.po,,ca,,catalan,,,ca

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/ja.po,2194,13434,3903,0,0,0,0,2194,13434,ja.po,,ja,,japanese,,,ja

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/it.po,424,2524,2800,1133,6451,637,4459,2194,13434,it.po,,it,,italian,,,it

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/fi.po,424,2524,2068,1133,6451,637,4459,2194,13434,fi.po,,fi,,finnish,,,fi

+ gnupg2-2.2.13-1.fc30.src.rpm.stats.csv,po/fr.po,1946,11450,13970,172,1282,76,702,2194,13434,fr.po,,fr,,french,,,fr

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/ms.po,162,710,657,145,621,78,456,385,1787,ms.po,,ms,,malay,,,ms

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/pt_br.po,281,1247,1430,59,286,45,254,385,1787,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/fr.po,281,1247,1452,59,286,45,254,385,1787,fr.po,,fr,,french,,,fr

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/pl.po,281,1247,1180,59,286,45,254,385,1787,pl.po,,pl,,polish,,,pl

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/cs.po,281,1247,1172,59,286,45,254,385,1787,cs.po,,cs,,czech,,,cs

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/es.po,281,1247,1338,59,286,45,254,385,1787,es.po,,es,,spanish,,,es

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/vi.po,281,1247,1814,59,286,45,254,385,1787,vi.po,,vi,,vietnamese,,,vi

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/de.po,261,1162,1052,56,282,68,343,385,1787,de.po,,de,,german,,,de

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/eo.po,281,1247,1185,59,286,45,254,385,1787,eo.po,,eo,,esperanto,,,eo

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/uk.po,281,1247,1202,59,286,45,254,385,1787,uk.po,,uk,,ukrainian,,,uk

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/zh_cn.po,281,1247,480,59,286,45,254,385,1787,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/it.po,281,1247,1414,59,286,45,254,385,1787,it.po,,it,,italian,,,it

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/sr.po,281,1247,1176,59,286,45,254,385,1787,sr.po,,sr,,serbian,,,sr

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/sv.po,281,1247,1048,59,286,45,254,385,1787,sv.po,,sv,,swedish,,,sv

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/nl.po,281,1247,1154,59,286,45,254,385,1787,nl.po,,nl,,dutch,,,nl

+ gnutls-3.6.7-1.fc30.src.rpm.stats.csv,po/fi.po,281,1247,887,59,286,45,254,385,1787,fi.po,,fi,,finnish,,,fi

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/da.po,93,612,605,13,262,1,7,107,881,da.po,,da,,danish,,,da

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ru.po,107,881,935,0,0,0,0,107,881,ru.po,,ru,,russian,,,ru

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/fr.po,94,615,700,12,259,1,7,107,881,fr.po,,fr,,french,,,fr

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/sk.po,84,541,549,17,298,6,42,107,881,sk.po,,sk,,slovak,,,sk

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/pt_br.po,107,881,1037,0,0,0,0,107,881,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/eu.po,15,43,44,23,218,69,620,107,881,eu.po,,eu,,basque,,,eu

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/uk.po,107,881,981,0,0,0,0,107,881,uk.po,,uk,,ukrainian,,,uk

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/be.po,15,43,42,22,214,70,624,107,881,be.po,,be,,belarusian,,,be

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/pa.po,62,252,282,11,59,34,570,107,881,pa.po,,pa,,punjabi,,,pa

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/lt.po,16,89,86,27,272,64,520,107,881,lt.po,,lt,,lithuanian,,,lt

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ky.po,16,89,89,26,239,65,553,107,881,ky.po,,ky,,kyrgyz,,,ky

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ca.po,94,615,791,12,259,1,7,107,881,ca.po,,ca,,catalan,,,ca

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/id.po,90,591,642,13,262,4,28,107,881,id.po,,id,,indonesian,,,id

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/it.po,94,615,692,12,259,1,7,107,881,it.po,,it,,italian,,,it

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/af.po,15,43,42,22,214,70,624,107,881,af.po,,af,,afrikaans,,,af

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/sr.po,94,615,639,12,259,1,7,107,881,sr.po,,sr,,serbian,,,sr

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/nl.po,107,881,956,0,0,0,0,107,881,nl.po,,nl,,dutch,,,nl

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/th.po,94,615,378,12,259,1,7,107,881,th.po,,th,,thai,,,th

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/hr.po,94,615,620,12,259,1,7,107,881,hr.po,,hr,,croatian,,,hr

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/vi.po,107,881,1314,0,0,0,0,107,881,vi.po,,vi,,vietnamese,,,vi

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/pt.po,15,43,57,22,214,70,624,107,881,pt.po,,pt,,portuguese,,,pt

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/he.po,15,43,52,23,218,69,620,107,881,he.po,,he,,hebrew,,,he

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/hu.po,107,881,880,0,0,0,0,107,881,hu.po,,hu,,hungarian,,,hu

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/nb.po,94,615,669,12,259,1,7,107,881,nb.po,,nb,,norwegian bokmål,,,nb

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/sv.po,107,881,897,0,0,0,0,107,881,sv.po,,sv,,swedish,,,sv

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/zh_tw.po,94,615,352,12,259,1,7,107,881,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/zh_cn.po,94,615,339,12,259,1,7,107,881,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ro.po,15,43,47,22,214,70,624,107,881,ro.po,,ro,,romanian,,,ro

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/et.po,107,881,774,0,0,0,0,107,881,et.po,,et,,estonian,,,et

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ga.po,107,881,967,0,0,0,0,107,881,ga.po,,ga,,irish,,,ga

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/sl.po,93,612,647,13,262,1,7,107,881,sl.po,,sl,,slovenian,,,sl

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/fi.po,94,615,550,12,259,1,7,107,881,fi.po,,fi,,finnish,,,fi

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/el.po,49,272,305,35,314,23,295,107,881,el.po,,el,,greek,,,el

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/pl.po,107,881,906,0,0,0,0,107,881,pl.po,,pl,,polish,,,pl

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/cs.po,94,615,640,12,259,1,7,107,881,cs.po,,cs,,czech,,,cs

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/de.po,94,615,653,12,259,1,7,107,881,de.po,,de,,german,,,de

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/es.po,90,591,701,13,262,4,28,107,881,es.po,,es,,spanish,,,es

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ja.po,107,881,528,0,0,0,0,107,881,ja.po,,ja,,japanese,,,ja

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/eo.po,94,615,633,12,259,1,7,107,881,eo.po,,eo,,esperanto,,,eo

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/bg.po,107,881,1066,0,0,0,0,107,881,bg.po,,bg,,bulgarian,,,bg

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/ko.po,4,11,11,17,72,86,798,107,881,ko.po,,ko,,korean,,,ko

+ grep-3.1-9.fc30.src.rpm.stats.csv,po/tr.po,15,43,44,23,218,69,620,107,881,tr.po,,tr,,turkish,,,tr

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_tw.po,36,191,58,0,0,0,0,36,191,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_hk.po,36,187,57,0,0,0,0,36,187,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/zh_cn.po,36,191,68,0,0,0,0,36,191,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/uk.po,36,187,177,0,0,0,0,36,187,uk.po,,uk,,ukrainian,,,uk

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/tr.po,36,191,166,0,0,0,0,36,191,tr.po,,tr,,turkish,,,tr

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/tg.po,36,187,199,0,0,0,0,36,187,tg.po,,tg,,tajik,,,tg

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sv.po,36,191,179,0,0,0,0,36,191,sv.po,,sv,,swedish,,,sv

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sr@latin.po,37,194,204,0,0,0,0,37,194,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sr.po,36,191,201,0,0,0,0,36,191,sr.po,,sr,,serbian,,,sr

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sl.po,36,191,214,0,0,0,0,36,191,sl.po,,sl,,slovenian,,,sl

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/sk.po,36,191,209,0,0,0,0,36,191,sk.po,,sk,,slovak,,,sk

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ru.po,37,194,190,0,0,0,0,37,194,ru.po,,ru,,russian,,,ru

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ro.po,36,191,231,0,0,0,0,36,191,ro.po,,ro,,romanian,,,ro

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pt_br.po,36,191,227,0,0,0,0,36,191,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pt.po,37,194,216,0,0,0,0,37,194,pt.po,,pt,,portuguese,,,pt

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pl.po,36,191,197,0,0,0,0,36,191,pl.po,,pl,,polish,,,pl

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/pa.po,36,187,226,0,0,0,0,36,187,pa.po,,pa,,punjabi,,,pa

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/oc.po,36,191,246,0,0,0,0,36,191,oc.po,,oc,,occitan,,,oc

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/nl.po,37,194,180,0,0,0,0,37,194,nl.po,,nl,,dutch,,,nl

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ne.po,21,96,94,7,41,8,54,36,191,ne.po,,ne,,nepali,,,ne

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/nb.po,37,194,205,0,0,0,0,37,194,nb.po,,nb,,norwegian bokmål,,,nb

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ml.po,36,191,156,0,0,0,0,36,191,ml.po,,ml,,malayalam,,,ml

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/lv.po,36,191,181,0,0,0,0,36,191,lv.po,,lv,,latvian,,,lv

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/lt.po,36,191,164,0,0,0,0,36,191,lt.po,,lt,,lithuanian,,,lt

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ko.po,36,191,168,0,0,0,0,36,191,ko.po,,ko,,korean,,,ko

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ja.po,35,184,76,0,0,0,0,35,184,ja.po,,ja,,japanese,,,ja

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/it.po,36,191,238,0,0,0,0,36,191,it.po,,it,,italian,,,it

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/id.po,36,191,200,0,0,0,0,36,191,id.po,,id,,indonesian,,,id

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/hu.po,36,191,192,0,0,0,0,36,191,hu.po,,hu,,hungarian,,,hu

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/hr.po,36,191,180,0,0,0,0,36,191,hr.po,,hr,,croatian,,,hr

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/he.po,37,194,194,0,0,0,0,37,194,he.po,,he,,hebrew,,,he

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/gl.po,36,191,257,0,0,0,0,36,191,gl.po,,gl,,galician,,,gl

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fur.po,36,191,250,0,0,0,0,36,191,fur.po,,fur,,friulian,,,fur

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fr.po,36,191,247,0,0,0,0,36,191,fr.po,,fr,,french,,,fr

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/fi.po,19,85,71,0,0,17,106,36,191,fi.po,,fi,,finnish,,,fi

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/eu.po,37,194,205,0,0,0,0,37,194,eu.po,,eu,,basque,,,eu

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/es.po,36,191,269,0,0,0,0,36,191,es.po,,es,,spanish,,,es

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/eo.po,36,191,182,0,0,0,0,36,191,eo.po,,eo,,esperanto,,,eo

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/en_gb.po,37,194,194,0,0,0,0,37,194,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/el.po,37,194,219,0,0,0,0,37,194,el.po,,el,,greek,,,el

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/de.po,36,191,203,0,0,0,0,36,191,de.po,,de,,german,,,de

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/da.po,36,191,188,0,0,0,0,36,191,da.po,,da,,danish,,,da

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/cs.po,36,191,202,0,0,0,0,36,191,cs.po,,cs,,czech,,,cs

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,36,191,278,0,0,0,0,36,191,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/ca.po,36,191,278,0,0,0,0,36,191,ca.po,,ca,,catalan,,,ca

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/bs.po,36,187,177,0,0,0,0,36,187,bs.po,,bs,,bosnian,,,bs

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/bg.po,37,194,218,0,0,0,0,37,194,bg.po,,bg,,bulgarian,,,bg

+ grilo-0.3.7-2.fc30.src.rpm.stats.csv,po/as.po,36,187,188,0,0,0,0,36,187,as.po,,as,,assamese,,,as

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/pl/pl.po,54,1294,1204,0,0,0,0,54,1294,pl.po,,pl,,polish,,,pl

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,54,1294,1346,0,0,0,0,54,1294,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/es/es.po,36,668,699,0,0,11,205,47,873,es.po,,es,,spanish,,,es

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/de/de.po,54,1294,1222,0,0,0,0,54,1294,de.po,,de,,german,,,de

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/sv/sv.po,54,1294,1233,0,0,0,0,54,1294,sv.po,,sv,,swedish,,,sv

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,help/cs/cs.po,54,1294,1216,0,0,0,0,54,1294,cs.po,,cs,,czech,,,cs

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sr@latin.po,133,536,541,0,0,0,0,133,536,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ne.po,44,77,79,52,186,37,273,133,536,ne.po,,ne,,nepali,,,ne

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fur.po,133,537,700,0,0,0,0,133,537,fur.po,,fur,,friulian,,,fur

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_cn.po,133,536,215,0,0,0,0,133,536,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/hu.po,133,537,473,0,0,0,0,133,537,hu.po,,hu,,hungarian,,,hu

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/bs.po,136,554,494,0,0,0,0,136,554,bs.po,,bs,,bosnian,,,bs

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/he.po,133,536,475,0,0,0,0,133,536,he.po,,he,,hebrew,,,he

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/eo.po,67,229,214,0,0,58,254,125,483,eo.po,,eo,,esperanto,,,eo

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/es.po,133,537,643,0,0,0,0,133,537,es.po,,es,,spanish,,,es

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pl.po,133,537,585,0,0,0,0,133,537,pl.po,,pl,,polish,,,pl

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/cs.po,133,537,481,0,0,0,0,133,537,cs.po,,cs,,czech,,,cs

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ru.po,132,528,502,0,0,0,0,132,528,ru.po,,ru,,russian,,,ru

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/gl.po,133,537,695,0,0,0,0,133,537,gl.po,,gl,,galician,,,gl

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ro.po,133,537,639,0,0,0,0,133,537,ro.po,,ro,,romanian,,,ro

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_tw.po,133,537,220,0,0,0,0,133,537,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pt_br.po,133,537,617,0,0,0,0,133,537,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/tr.po,133,537,510,0,0,0,0,133,537,tr.po,,tr,,turkish,,,tr

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/da.po,133,537,524,0,0,0,0,133,537,da.po,,da,,danish,,,da

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ja.po,124,480,190,0,0,1,3,125,483,ja.po,,ja,,japanese,,,ja

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/id.po,133,537,507,0,0,0,0,133,537,id.po,,id,,indonesian,,,id

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/uk.po,125,483,458,0,0,0,0,125,483,uk.po,,uk,,ukrainian,,,uk

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/it.po,133,537,604,0,0,0,0,133,537,it.po,,it,,italian,,,it

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/oc.po,132,528,620,0,0,0,0,132,528,oc.po,,oc,,occitan,,,oc

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sl.po,133,537,528,0,0,0,0,133,537,sl.po,,sl,,slovenian,,,sl

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/lv.po,133,537,458,0,0,0,0,133,537,lv.po,,lv,,latvian,,,lv

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sr.po,133,536,541,0,0,0,0,133,536,sr.po,,sr,,serbian,,,sr

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/pt.po,133,536,594,0,0,0,0,133,536,pt.po,,pt,,portuguese,,,pt

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/de.po,133,537,532,0,0,0,0,133,537,de.po,,de,,german,,,de

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ko.po,133,537,453,0,0,0,0,133,537,ko.po,,ko,,korean,,,ko

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/hr.po,133,537,476,0,0,0,0,133,537,hr.po,,hr,,croatian,,,hr

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fi.po,46,99,84,0,0,87,438,133,537,fi.po,,fi,,finnish,,,fi

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ca.po,133,536,698,0,0,0,0,133,536,ca.po,,ca,,catalan,,,ca

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/nb.po,123,467,530,0,0,10,69,133,536,nb.po,,nb,,norwegian bokmål,,,nb

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/lt.po,133,537,436,0,0,0,0,133,537,lt.po,,lt,,lithuanian,,,lt

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/eu.po,133,536,499,0,0,0,0,133,536,eu.po,,eu,,basque,,,eu

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/el.po,133,536,547,0,0,0,0,133,536,el.po,,el,,greek,,,el

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/nl.po,133,536,526,0,0,0,0,133,536,nl.po,,nl,,dutch,,,nl

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/fr.po,133,537,633,0,0,0,0,133,537,fr.po,,fr,,french,,,fr

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/as.po,132,533,546,0,0,0,0,132,533,as.po,,as,,assamese,,,as

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sv.po,133,537,568,0,0,0,0,133,537,sv.po,,sv,,swedish,,,sv

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/zh_hk.po,132,533,227,0,0,0,0,132,533,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ml.po,27,51,51,0,0,98,432,125,483,ml.po,,ml,,malayalam,,,ml

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/en_gb.po,133,536,535,0,0,0,0,133,536,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/sk.po,133,536,494,0,0,0,0,133,536,sk.po,,sk,,slovak,,,sk

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,133,536,698,0,0,0,0,133,536,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ grilo-plugins-0.3.8-2.fc30.src.rpm.stats.csv,po/bg.po,133,536,593,0,0,0,0,133,536,bg.po,,bg,,bulgarian,,,bg

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/ast.po,193,962,1090,294,1618,857,4539,1344,7119,ast.po,,ast,,asturian,,,ast

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/ca.po,1344,7119,9408,0,0,0,0,1344,7119,ca.po,,ca,,catalan,,,ca

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/da.po,1344,7119,6636,0,0,0,0,1344,7119,da.po,,da,,danish,,,da

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/de.po,1337,7003,6648,0,0,7,116,1344,7119,de.po,,de,,german,,,de

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/de_ch.po,1337,7003,6648,0,0,7,116,1344,7119,de_ch.po,,de,ch,german,,switzerland,de_ch

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/de@hebrew.po,1337,7003,6650,0,0,7,116,1344,7119,de@hebrew.po,hebrew,de,,german,,,de@hebrew

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

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@cyrillic.po,1341,7111,7111,1,4,2,4,1344,7119,en@cyrillic.po,cyrillic,en,,english,,,en@cyrillic

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

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

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@piglatin.po,1344,7119,7128,0,0,0,0,1344,7119,en@piglatin.po,piglatin,en,,english,,,en@piglatin

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/en@quot.po,1344,7119,7119,0,0,0,0,1344,7119,en@quot.po,quot,en,,english,,,en@quot

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/eo.po,496,2432,2251,68,403,780,4284,1344,7119,eo.po,,eo,,esperanto,,,eo

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/es.po,1314,6962,8812,22,132,8,25,1344,7119,es.po,,es,,spanish,,,es

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/fi.po,1314,6962,5587,23,134,7,23,1344,7119,fi.po,,fi,,finnish,,,fi

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/fr.po,1314,6962,8698,23,134,7,23,1344,7119,fr.po,,fr,,french,,,fr

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/gl.po,1137,5711,7201,103,670,104,738,1344,7119,gl.po,,gl,,galician,,,gl

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/hr.po,1344,7119,6868,0,0,0,0,1344,7119,hr.po,,hr,,croatian,,,hr

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/hu.po,1344,7119,7002,0,0,0,0,1344,7119,hu.po,,hu,,hungarian,,,hu

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/id.po,322,1633,1638,273,1517,749,3969,1344,7119,id.po,,id,,indonesian,,,id

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/it.po,1344,7119,7898,0,0,0,0,1344,7119,it.po,,it,,italian,,,it

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/ja.po,231,1063,408,399,1597,714,4459,1344,7119,ja.po,,ja,,japanese,,,ja

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/ko.po,192,959,816,228,1299,924,4861,1344,7119,ko.po,,ko,,korean,,,ko

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/lt.po,1104,5359,5109,17,89,223,1671,1344,7119,lt.po,,lt,,lithuanian,,,lt

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/nb.po,1344,7119,7057,0,0,0,0,1344,7119,nb.po,,nb,,norwegian bokmål,,,nb

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/nl.po,1343,7115,7054,1,4,0,0,1344,7119,nl.po,,nl,,dutch,,,nl

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/pa.po,663,2456,2720,73,339,608,4324,1344,7119,pa.po,,pa,,punjabi,,,pa

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/pl.po,1344,7119,7178,0,0,0,0,1344,7119,pl.po,,pl,,polish,,,pl

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/pt_br.po,1013,4531,5407,181,984,150,1604,1344,7119,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/ru.po,1344,7119,7014,0,0,0,0,1344,7119,ru.po,,ru,,russian,,,ru

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/sl.po,1067,5382,5546,119,719,158,1018,1344,7119,sl.po,,sl,,slovenian,,,sl

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/sr.po,1314,6962,7004,21,128,9,29,1344,7119,sr.po,,sr,,serbian,,,sr

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/sv.po,1344,7119,6673,0,0,0,0,1344,7119,sv.po,,sv,,swedish,,,sv

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/tr.po,827,3690,3455,15,66,502,3363,1344,7119,tr.po,,tr,,turkish,,,tr

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/uk.po,1344,7119,7481,0,0,0,0,1344,7119,uk.po,,uk,,ukrainian,,,uk

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/vi.po,1344,7119,10567,0,0,0,0,1344,7119,vi.po,,vi,,vietnamese,,,vi

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/zh_cn.po,348,1731,681,271,1489,725,3899,1344,7119,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ grub2-2.02-75.fc30.src.rpm.stats.csv,po/zh_tw.po,352,1741,734,240,1296,752,4082,1344,7119,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,572,6378,1080,0,0,0,0,572,6378,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,496,5665,914,0,0,0,0,496,5665,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,560,6232,1008,0,0,0,0,560,6232,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,154,762,963,0,0,121,1668,275,2430,vi.po,,vi,,vietnamese,,,vi

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,106,1033,825,0,0,312,3552,418,4585,uk.po,,uk,,ukrainian,,,uk

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,428,3600,2844,0,0,40,1690,468,5290,ug.po,,ug,,uyghur,,,ug

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,578,6423,5387,0,0,0,0,578,6423,tr.po,,tr,,turkish,,,tr

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,4,8,8,0,0,464,5282,468,5290,tg.po,,tg,,tajik,,,tg

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,578,6423,5800,0,0,0,0,578,6423,sv.po,,sv,,swedish,,,sv

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,572,6378,6138,0,0,0,0,572,6378,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,578,6423,6191,0,0,0,0,578,6423,sr.po,,sr,,serbian,,,sr

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,578,6423,5836,0,0,0,0,578,6423,sl.po,,sl,,slovenian,,,sl

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,566,6311,6038,0,0,0,0,566,6311,sk.po,,sk,,slovak,,,sk

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,490,4136,3625,62,1877,20,365,572,6378,ru.po,,ru,,russian,,,ru

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,252,1304,1494,3,299,317,4775,572,6378,ro.po,,ro,,romanian,,,ro

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,578,6423,7252,0,0,0,0,578,6423,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,560,6232,7008,0,0,0,0,560,6232,pt.po,,pt,,portuguese,,,pt

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,578,6423,5839,0,0,0,0,578,6423,pl.po,,pl,,polish,,,pl

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,236,2202,2292,1,7,159,2015,396,4224,pa.po,,pa,,punjabi,,,pa

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,242,2113,1913,0,0,176,2472,418,4585,or.po,,or,,odia,,,or

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,531,5849,7068,1,14,0,0,532,5863,oc.po,,oc,,occitan,,,oc

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,404,3033,2836,0,0,174,3390,578,6423,nl.po,,nl,,dutch,,,nl

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,176,901,903,165,825,225,4585,566,6311,ne.po,,ne,,nepali,,,ne

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,306,1575,1489,20,194,240,4542,566,6311,nb.po,,nb,,norwegian bokmål,,,nb

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,101,582,442,11,59,357,4649,469,5290,ml.po,,ml,,malayalam,,,ml

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,572,6378,5334,0,0,0,0,572,6378,lv.po,,lv,,latvian,,,lv

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,578,6423,5041,0,0,0,0,578,6423,lt.po,,lt,,lithuanian,,,lt

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,226,944,936,0,0,346,5434,572,6378,kk.po,,kk,,kazakh,,,kk

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,166,1337,293,79,612,35,692,280,2641,ja.po,,ja,,japanese,,,ja

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,578,6423,6991,0,0,0,0,578,6423,it.po,,it,,italian,,,it

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,169,957,1004,0,0,391,5275,560,6232,is.po,,is,,icelandic,,,is

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,578,6423,5961,0,0,0,0,578,6423,id.po,,id,,indonesian,,,id

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,578,6423,5714,0,0,0,0,578,6423,hu.po,,hu,,hungarian,,,hu

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,589,6560,5797,0,0,0,0,589,6560,hr.po,,hr,,croatian,,,hr

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,468,5290,6120,0,0,0,0,468,5290,hi.po,,hi,,hindi,,,hi

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,570,6343,6343,0,0,0,0,570,6343,he.po,,he,,hebrew,,,he

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,246,1128,1131,12,86,238,4451,496,5665,gu.po,,gu,,gujarati,,,gu

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,578,6423,7401,0,0,0,0,578,6423,gl.po,,gl,,galician,,,gl

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,520,5279,6467,0,0,58,1144,578,6423,fur.po,,fur,,friulian,,,fur

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,578,6423,7857,0,0,0,0,578,6423,fr.po,,fr,,french,,,fr

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,106,406,318,21,92,363,5060,490,5558,fi.po,,fi,,finnish,,,fi

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,578,6423,5418,0,0,0,0,578,6423,eu.po,,eu,,basque,,,eu

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,578,6423,7631,0,0,0,0,578,6423,es.po,,es,,spanish,,,es

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,224,1494,1390,10,120,336,4729,570,6343,eo.po,,eo,,esperanto,,,eo

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,572,6378,6376,0,0,0,0,572,6378,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,532,5863,6193,0,0,0,0,532,5863,el.po,,el,,greek,,,el

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,578,6423,6100,0,0,0,0,578,6423,de.po,,de,,german,,,de

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,578,6423,5684,0,0,0,0,578,6423,da.po,,da,,danish,,,da

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,578,6423,6028,0,0,0,0,578,6423,cs.po,,cs,,czech,,,cs

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,550,5942,7339,2,71,14,298,566,6311,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,550,5942,7357,2,71,14,298,566,6311,ca.po,,ca,,catalan,,,ca

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,527,5813,5446,0,0,0,0,527,5813,bs.po,,bs,,bosnian,,,bs

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,37,254,300,0,0,435,5065,472,5319,bg.po,,bg,,bulgarian,,,bg

+ gsettings-desktop-schemas-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,69,678,574,0,0,349,3907,418,4585,as.po,,as,,assamese,,,as

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/zh_tw.po,32,78,34,0,0,0,0,32,78,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,32,78,34,0,0,0,0,32,78,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/vi.po,27,56,89,5,22,0,0,32,78,vi.po,,vi,,vietnamese,,,vi

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/tr.po,32,78,79,0,0,0,0,32,78,tr.po,,tr,,turkish,,,tr

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sv.po,32,78,77,0,0,0,0,32,78,sv.po,,sv,,swedish,,,sv

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sr.po,32,78,81,0,0,0,0,32,78,sr.po,,sr,,serbian,,,sr

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sr@latin.po,32,78,81,0,0,0,0,32,78,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sl.po,32,78,80,0,0,0,0,32,78,sl.po,,sl,,slovenian,,,sl

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/sk.po,32,78,80,0,0,0,0,32,78,sk.po,,sk,,slovak,,,sk

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ru.po,26,53,51,4,9,2,16,32,78,ru.po,,ru,,russian,,,ru

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ro.po,32,78,84,0,0,0,0,32,78,ro.po,,ro,,romanian,,,ro

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pt.po,29,62,64,3,16,0,0,32,78,pt.po,,pt,,portuguese,,,pt

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pt_br.po,32,78,86,0,0,0,0,32,78,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pl.po,32,78,75,0,0,0,0,32,78,pl.po,,pl,,polish,,,pl

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/pa.po,32,78,99,0,0,0,0,32,78,pa.po,,pa,,punjabi,,,pa

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/oc.po,25,53,62,5,9,2,16,32,78,oc.po,,oc,,occitan,,,oc

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/nl.po,32,78,79,0,0,0,0,32,78,nl.po,,nl,,dutch,,,nl

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ne.po,32,78,87,0,0,0,0,32,78,ne.po,,ne,,nepali,,,ne

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/nb.po,32,78,74,0,0,0,0,32,78,nb.po,,nb,,norwegian bokmål,,,nb

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ml.po,32,78,85,0,0,0,0,32,78,ml.po,,ml,,malayalam,,,ml

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/lv.po,32,78,76,0,0,0,0,32,78,lv.po,,lv,,latvian,,,lv

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/lt.po,32,78,72,0,0,0,0,32,78,lt.po,,lt,,lithuanian,,,lt

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ko.po,32,78,78,0,0,0,0,32,78,ko.po,,ko,,korean,,,ko

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ja.po,26,53,29,4,9,2,16,32,78,ja.po,,ja,,japanese,,,ja

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/it.po,32,78,80,0,0,0,0,32,78,it.po,,it,,italian,,,it

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/id.po,32,78,90,0,0,0,0,32,78,id.po,,id,,indonesian,,,id

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/hu.po,32,78,72,0,0,0,0,32,78,hu.po,,hu,,hungarian,,,hu

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/hr.po,32,78,77,0,0,0,0,32,78,hr.po,,hr,,croatian,,,hr

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/he.po,26,53,53,4,9,2,16,32,78,he.po,,he,,hebrew,,,he

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/gl.po,32,78,96,0,0,0,0,32,78,gl.po,,gl,,galician,,,gl

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fur.po,32,78,85,0,0,0,0,32,78,fur.po,,fur,,friulian,,,fur

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fr.po,32,78,89,0,0,0,0,32,78,fr.po,,fr,,french,,,fr

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fi.po,32,78,73,0,0,0,0,32,78,fi.po,,fi,,finnish,,,fi

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/fa.po,32,78,89,0,0,0,0,32,78,fa.po,,fa,,persian,,,fa

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/es.po,32,78,98,0,0,0,0,32,78,es.po,,es,,spanish,,,es

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/eo.po,32,78,84,0,0,0,0,32,78,eo.po,,eo,,esperanto,,,eo

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/en_gb.po,32,78,78,0,0,0,0,32,78,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/el.po,32,78,81,0,0,0,0,32,78,el.po,,el,,greek,,,el

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/de.po,32,78,79,0,0,0,0,32,78,de.po,,de,,german,,,de

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/da.po,32,78,78,0,0,0,0,32,78,da.po,,da,,danish,,,da

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/cs.po,32,78,79,0,0,0,0,32,78,cs.po,,cs,,czech,,,cs

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,32,78,99,0,0,0,0,32,78,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ca.po,32,78,99,0,0,0,0,32,78,ca.po,,ca,,catalan,,,ca

+ gspell-1.8.1-3.fc30.src.rpm.stats.csv,po/ar.po,32,78,83,0,0,0,0,32,78,ar.po,,ar,,arabic,,,ar

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/gl.po,336,1861,2206,11,79,31,170,378,2110,gl.po,,gl,,galician,,,gl

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/pl.po,378,2110,1997,0,0,0,0,378,2110,pl.po,,pl,,polish,,,pl

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,373,2074,543,2,5,3,31,378,2110,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sr.po,373,2074,2136,2,5,3,31,378,2110,sr.po,,sr,,serbian,,,sr

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/bg.po,373,2074,2319,2,5,3,31,378,2110,bg.po,,bg,,bulgarian,,,bg

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/hr.po,378,2110,2083,0,0,0,0,378,2110,hr.po,,hr,,croatian,,,hr

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fur.po,186,888,1037,2,5,190,1217,378,2110,fur.po,,fur,,friulian,,,fur

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ca.po,317,1736,2259,24,153,37,221,378,2110,ca.po,,ca,,catalan,,,ca

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/vi.po,373,2074,3100,2,5,3,31,378,2110,vi.po,,vi,,vietnamese,,,vi

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/az.po,24,41,41,12,43,342,2026,378,2110,az.po,,az,,azerbaijani,,,az

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/cs.po,373,2074,2102,2,5,3,31,378,2110,cs.po,,cs,,czech,,,cs

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sl.po,349,1947,1915,8,52,21,111,378,2110,sl.po,,sl,,slovenian,,,sl

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/hu.po,373,2074,1873,2,5,3,31,378,2110,hu.po,,hu,,hungarian,,,hu

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,349,1965,495,5,30,24,115,378,2110,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sv.po,378,2110,1970,0,0,0,0,378,2110,sv.po,,sv,,swedish,,,sv

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/be.po,42,175,169,22,121,314,1814,378,2110,be.po,,be,,belarusian,,,be

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/nb.po,373,2074,1894,2,5,3,31,378,2110,nb.po,,nb,,norwegian bokmål,,,nb

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/eu.po,292,1544,1333,34,209,52,357,378,2110,eu.po,,eu,,basque,,,eu

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/de.po,373,2074,2104,2,5,3,31,378,2110,de.po,,de,,german,,,de

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ast.po,293,1550,1723,32,197,53,363,378,2110,ast.po,,ast,,asturian,,,ast

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fr.po,373,2074,2445,2,5,3,31,378,2110,fr.po,,fr,,french,,,fr

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/tr.po,378,2110,1852,0,0,0,0,378,2110,tr.po,,tr,,turkish,,,tr

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sq.po,137,595,697,85,461,156,1054,378,2110,sq.po,,sq,,albanian,,,sq

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/es.po,322,1759,2195,22,147,34,204,378,2110,es.po,,es,,spanish,,,es

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ru.po,378,2110,1940,0,0,0,0,378,2110,ru.po,,ru,,russian,,,ru

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/it.po,378,2110,2406,0,0,0,0,378,2110,it.po,,it,,italian,,,it

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/id.po,369,2027,1939,5,37,4,46,378,2110,id.po,,id,,indonesian,,,id

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/lt.po,305,1667,1403,28,173,45,270,378,2110,lt.po,,lt,,lithuanian,,,lt

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,369,2027,2390,5,37,4,46,378,2110,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/af.po,166,743,759,80,420,132,947,378,2110,af.po,,af,,afrikaans,,,af

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ja.po,173,688,270,20,99,185,1323,378,2110,ja.po,,ja,,japanese,,,ja

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,134,583,583,86,465,158,1062,378,2110,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/fi.po,318,1743,1364,24,153,36,214,378,2110,fi.po,,fi,,finnish,,,fi

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/ro.po,304,1666,1984,28,173,46,271,378,2110,ro.po,,ro,,romanian,,,ro

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/uk.po,378,2110,2029,0,0,0,0,378,2110,uk.po,,uk,,ukrainian,,,uk

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/el.po,317,1736,1820,23,149,38,225,378,2110,el.po,,el,,greek,,,el

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/da.po,378,2110,1972,0,0,0,0,378,2110,da.po,,da,,danish,,,da

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/rw.po,5,4,4,198,1032,175,1074,378,2110,rw.po,,rw,,kinyarwanda,,,rw

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/eo.po,67,161,169,4,16,307,1933,378,2110,eo.po,,eo,,esperanto,,,eo

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/sk.po,364,2008,1987,5,37,9,65,378,2110,sk.po,,sk,,slovak,,,sk

+ gstreamer1-1.15.2-2.fc30.src.rpm.stats.csv,po/nl.po,373,2074,2177,2,5,3,31,378,2110,nl.po,,nl,,dutch,,,nl

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sl.po,10,73,63,3,22,16,102,29,197,sl.po,,sl,,slovenian,,,sl

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/gl.po,10,73,101,3,22,16,102,29,197,gl.po,,gl,,galician,,,gl

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ro.po,8,49,59,4,26,17,122,29,197,ro.po,,ro,,romanian,,,ro

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ky.po,4,26,20,3,21,22,150,29,197,ky.po,,ky,,kyrgyz,,,ky

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sq.po,5,30,36,6,39,18,128,29,197,sq.po,,sq,,albanian,,,sq

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hu.po,28,194,197,0,0,1,3,29,197,hu.po,,hu,,hungarian,,,hu

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hr.po,29,197,207,0,0,0,0,29,197,hr.po,,hr,,croatian,,,hr

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/af.po,2,12,13,8,53,19,132,29,197,af.po,,af,,afrikaans,,,af

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/id.po,28,194,189,0,0,1,3,29,197,id.po,,id,,indonesian,,,id

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/uk.po,29,197,212,0,0,0,0,29,197,uk.po,,uk,,ukrainian,,,uk

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/bg.po,28,194,246,0,0,1,3,29,197,bg.po,,bg,,bulgarian,,,bg

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nb.po,28,194,173,0,0,1,3,29,197,nb.po,,nb,,norwegian bokmål,,,nb

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/da.po,29,197,175,0,0,0,0,29,197,da.po,,da,,danish,,,da

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/es.po,10,73,95,6,39,13,85,29,197,es.po,,es,,spanish,,,es

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/tr.po,29,197,152,0,0,0,0,29,197,tr.po,,tr,,turkish,,,tr

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lv.po,17,126,105,9,57,3,14,29,197,lv.po,,lv,,latvian,,,lv

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fur.po,28,194,252,0,0,1,3,29,197,fur.po,,fur,,friulian,,,fur

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/mt.po,7,43,39,7,43,15,111,29,197,mt.po,,mt,,maltese,,,mt

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/az.po,2,12,10,8,53,19,132,29,197,az.po,,az,,azerbaijani,,,az

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sv.po,29,197,197,0,0,0,0,29,197,sv.po,,sv,,swedish,,,sv

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ca.po,10,73,99,3,22,16,102,29,197,ca.po,,ca,,catalan,,,ca

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nl.po,28,194,227,0,0,1,3,29,197,nl.po,,nl,,dutch,,,nl

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sk.po,21,152,140,7,42,1,3,29,197,sk.po,,sk,,slovak,,,sk

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/cs.po,28,194,211,0,0,1,3,29,197,cs.po,,cs,,czech,,,cs

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/it.po,29,197,235,0,0,0,0,29,197,it.po,,it,,italian,,,it

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sr.po,28,194,218,0,0,1,3,29,197,sr.po,,sr,,serbian,,,sr

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fi.po,8,49,38,7,43,14,105,29,197,fi.po,,fi,,finnish,,,fi

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/vi.po,28,194,297,0,0,1,3,29,197,vi.po,,vi,,vietnamese,,,vi

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/el.po,10,73,72,3,22,16,102,29,197,el.po,,el,,greek,,,el

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pl.po,29,197,219,0,0,0,0,29,197,pl.po,,pl,,polish,,,pl

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ru.po,29,197,188,0,0,0,0,29,197,ru.po,,ru,,russian,,,ru

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,28,194,29,0,0,1,3,29,197,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/de.po,29,197,205,0,0,0,0,29,197,de.po,,de,,german,,,de

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eu.po,8,49,47,4,26,17,122,29,197,eu.po,,eu,,basque,,,eu

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eo.po,8,59,52,5,36,16,102,29,197,eo.po,,eo,,esperanto,,,eo

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ja.po,10,73,20,6,39,13,85,29,197,ja.po,,ja,,japanese,,,ja

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fr.po,28,194,238,0,0,1,3,29,197,fr.po,,fr,,french,,,fr

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/or.po,2,12,10,8,53,19,132,29,197,or.po,,or,,odia,,,or

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lt.po,5,30,26,6,39,18,128,29,197,lt.po,,lt,,lithuanian,,,lt

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,28,194,268,0,0,1,3,29,197,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gstreamer1-plugins-bad-free-1.15.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,2,12,12,8,53,19,132,29,197,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/gl.po,136,677,840,13,65,55,234,204,976,gl.po,,gl,,galician,,,gl

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/pl.po,204,976,940,0,0,0,0,204,976,pl.po,,pl,,polish,,,pl

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,196,939,335,1,5,7,32,204,976,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sr.po,196,939,915,1,5,7,32,204,976,sr.po,,sr,,serbian,,,sr

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/bg.po,191,912,968,4,28,9,36,204,976,bg.po,,bg,,bulgarian,,,bg

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/hr.po,203,973,939,1,3,0,0,204,976,hr.po,,hr,,croatian,,,hr

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fur.po,131,590,681,2,8,71,378,204,976,fur.po,,fur,,friulian,,,fur

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ca.po,124,640,823,22,95,58,241,204,976,ca.po,,ca,,catalan,,,ca

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/vi.po,196,939,1439,1,5,7,32,204,976,vi.po,,vi,,vietnamese,,,vi

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/az.po,2,8,7,18,123,184,845,204,976,az.po,,az,,azerbaijani,,,az

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/cs.po,196,939,932,1,5,7,32,204,976,cs.po,,cs,,czech,,,cs

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sl.po,136,677,628,11,55,57,244,204,976,sl.po,,sl,,slovenian,,,sl

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/hu.po,196,939,818,1,5,7,32,204,976,hu.po,,hu,,hungarian,,,hu

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sv.po,204,976,807,0,0,0,0,204,976,sv.po,,sv,,swedish,,,sv

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/nb.po,196,939,796,1,5,7,32,204,976,nb.po,,nb,,norwegian bokmål,,,nb

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/eu.po,85,407,397,19,73,100,496,204,976,eu.po,,eu,,basque,,,eu

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/de.po,204,976,868,0,0,0,0,204,976,de.po,,de,,german,,,de

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fr.po,196,939,1154,1,5,7,32,204,976,fr.po,,fr,,french,,,fr

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/tr.po,204,976,853,0,0,0,0,204,976,tr.po,,tr,,turkish,,,tr

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sq.po,2,8,9,18,123,184,845,204,976,sq.po,,sq,,albanian,,,sq

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/es.po,126,651,827,20,84,58,241,204,976,es.po,,es,,spanish,,,es

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ru.po,204,976,875,0,0,0,0,204,976,ru.po,,ru,,russian,,,ru

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/it.po,204,976,1067,0,0,0,0,204,976,it.po,,it,,italian,,,it

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/id.po,196,939,912,1,5,7,32,204,976,id.po,,id,,indonesian,,,id

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/lt.po,70,316,265,30,137,104,523,204,976,lt.po,,lt,,lithuanian,,,lt

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,196,939,1171,1,5,7,32,204,976,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/af.po,2,8,9,18,123,184,845,204,976,af.po,,af,,afrikaans,,,af

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ja.po,94,448,197,20,75,90,453,204,976,ja.po,,ja,,japanese,,,ja

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,2,8,8,18,123,184,845,204,976,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/lv.po,154,770,635,7,41,43,165,204,976,lv.po,,lv,,latvian,,,lv

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/fi.po,124,640,416,22,95,58,241,204,976,fi.po,,fi,,finnish,,,fi

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/ro.po,80,394,416,18,64,106,518,204,976,ro.po,,ro,,romanian,,,ro

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/or.po,2,8,7,18,123,184,845,204,976,or.po,,or,,odia,,,or

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/uk.po,204,976,935,0,0,0,0,204,976,uk.po,,uk,,ukrainian,,,uk

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/el.po,126,651,687,20,84,58,241,204,976,el.po,,el,,greek,,,el

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/da.po,204,976,836,0,0,0,0,204,976,da.po,,da,,danish,,,da

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/eo.po,28,167,162,3,17,173,792,204,976,eo.po,,eo,,esperanto,,,eo

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/sk.po,186,887,804,4,28,14,61,204,976,sk.po,,sk,,slovak,,,sk

+ gstreamer1-plugins-base-1.15.2-2.fc30.src.rpm.stats.csv,po/nl.po,191,912,911,4,28,9,36,204,976,nl.po,,nl,,dutch,,,nl

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/gl.po,65,558,715,20,152,13,92,98,802,gl.po,,gl,,galician,,,gl

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/pl.po,98,802,784,0,0,0,0,98,802,pl.po,,pl,,polish,,,pl

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,88,716,147,6,43,4,43,98,802,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sr.po,88,716,740,6,43,4,43,98,802,sr.po,,sr,,serbian,,,sr

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/bg.po,88,716,741,6,43,4,43,98,802,bg.po,,bg,,bulgarian,,,bg

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/hr.po,98,802,756,0,0,0,0,98,802,hr.po,,hr,,croatian,,,hr

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fur.po,80,665,840,7,52,11,85,98,802,fur.po,,fur,,friulian,,,fur

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ca.po,53,458,593,29,231,16,113,98,802,ca.po,,ca,,catalan,,,ca

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/vi.po,88,716,1097,6,43,4,43,98,802,vi.po,,vi,,vietnamese,,,vi

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/az.po,1,10,9,34,254,63,538,98,802,az.po,,az,,azerbaijani,,,az

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/cs.po,88,716,639,6,43,4,43,98,802,cs.po,,cs,,czech,,,cs

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sl.po,67,572,531,20,152,11,78,98,802,sl.po,,sl,,slovenian,,,sl

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/hu.po,88,716,666,6,43,4,43,98,802,hu.po,,hu,,hungarian,,,hu

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,6,54,8,1,9,91,739,98,802,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sv.po,98,802,791,0,0,0,0,98,802,sv.po,,sv,,swedish,,,sv

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/nb.po,88,716,665,6,43,4,43,98,802,nb.po,,nb,,norwegian bokmål,,,nb

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/eu.po,44,405,376,33,258,21,139,98,802,eu.po,,eu,,basque,,,eu

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/de.po,98,802,845,0,0,0,0,98,802,de.po,,de,,german,,,de

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fr.po,88,716,866,6,43,4,43,98,802,fr.po,,fr,,french,,,fr

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/tr.po,97,784,622,0,0,1,18,98,802,tr.po,,tr,,turkish,,,tr

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sq.po,1,10,13,36,265,61,527,98,802,sq.po,,sq,,albanian,,,sq

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/es.po,56,483,602,28,221,14,98,98,802,es.po,,es,,spanish,,,es

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ru.po,98,802,694,0,0,0,0,98,802,ru.po,,ru,,russian,,,ru

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/zh_hk.po,6,54,8,1,9,91,739,98,802,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/it.po,98,802,924,0,0,0,0,98,802,it.po,,it,,italian,,,it

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/id.po,86,702,663,8,57,4,43,98,802,id.po,,id,,indonesian,,,id

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/lt.po,44,405,308,33,258,21,139,98,802,lt.po,,lt,,lithuanian,,,lt

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/mt.po,40,340,319,36,293,22,169,98,802,mt.po,,mt,,maltese,,,mt

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,88,716,875,6,43,4,43,98,802,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/af.po,1,10,8,34,254,63,538,98,802,af.po,,af,,afrikaans,,,af

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ja.po,65,558,161,20,152,13,92,98,802,ja.po,,ja,,japanese,,,ja

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/en_gb.po,1,10,10,36,265,61,527,98,802,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/lv.po,67,572,467,20,152,11,78,98,802,lv.po,,lv,,latvian,,,lv

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/fi.po,50,432,344,32,258,16,112,98,802,fi.po,,fi,,finnish,,,fi

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/ro.po,44,405,448,33,258,21,139,98,802,ro.po,,ro,,romanian,,,ro

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/or.po,1,10,9,38,295,59,497,98,802,or.po,,or,,odia,,,or

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/uk.po,98,802,783,0,0,0,0,98,802,uk.po,,uk,,ukrainian,,,uk

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/el.po,53,458,516,23,186,22,158,98,802,el.po,,el,,greek,,,el

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/da.po,98,802,756,0,0,0,0,98,802,da.po,,da,,danish,,,da

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/eo.po,6,41,38,1,9,91,752,98,802,eo.po,,eo,,esperanto,,,eo

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/sk.po,83,686,644,8,57,7,59,98,802,sk.po,,sk,,slovak,,,sk

+ gstreamer1-plugins-good-1.15.2-3.fc30.src.rpm.stats.csv,po/nl.po,88,716,724,6,43,4,43,98,802,nl.po,,nl,,dutch,,,nl

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sl.po,10,80,66,0,0,0,0,10,80,sl.po,,sl,,slovenian,,,sl

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/gl.po,10,80,107,0,0,0,0,10,80,gl.po,,gl,,galician,,,gl

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ro.po,8,56,63,1,4,1,20,10,80,ro.po,,ro,,romanian,,,ro

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sq.po,1,7,8,4,21,5,52,10,80,sq.po,,sq,,albanian,,,sq

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hu.po,10,80,76,0,0,0,0,10,80,hu.po,,hu,,hungarian,,,hu

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/hr.po,10,80,68,0,0,0,0,10,80,hr.po,,hr,,croatian,,,hr

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/af.po,1,7,8,4,21,5,52,10,80,af.po,,af,,afrikaans,,,af

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/id.po,10,80,71,0,0,0,0,10,80,id.po,,id,,indonesian,,,id

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/uk.po,10,80,74,0,0,0,0,10,80,uk.po,,uk,,ukrainian,,,uk

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/bg.po,10,80,99,0,0,0,0,10,80,bg.po,,bg,,bulgarian,,,bg

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nb.po,10,80,72,0,0,0,0,10,80,nb.po,,nb,,norwegian bokmål,,,nb

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/da.po,10,80,69,0,0,0,0,10,80,da.po,,da,,danish,,,da

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/es.po,10,80,105,0,0,0,0,10,80,es.po,,es,,spanish,,,es

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/tr.po,10,80,56,0,0,0,0,10,80,tr.po,,tr,,turkish,,,tr

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lv.po,10,80,59,0,0,0,0,10,80,lv.po,,lv,,latvian,,,lv

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fur.po,10,80,87,0,0,0,0,10,80,fur.po,,fur,,friulian,,,fur

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/mt.po,8,56,50,1,4,1,20,10,80,mt.po,,mt,,maltese,,,mt

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/az.po,1,7,6,4,21,5,52,10,80,az.po,,az,,azerbaijani,,,az

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sv.po,10,80,75,0,0,0,0,10,80,sv.po,,sv,,swedish,,,sv

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ca.po,10,80,102,0,0,0,0,10,80,ca.po,,ca,,catalan,,,ca

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/nl.po,10,80,83,0,0,0,0,10,80,nl.po,,nl,,dutch,,,nl

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sk.po,10,80,73,0,0,0,0,10,80,sk.po,,sk,,slovak,,,sk

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/cs.po,10,80,75,0,0,0,0,10,80,cs.po,,cs,,czech,,,cs

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/it.po,10,80,90,0,0,0,0,10,80,it.po,,it,,italian,,,it

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/sr.po,10,80,80,0,0,0,0,10,80,sr.po,,sr,,serbian,,,sr

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fi.po,8,56,47,1,4,1,20,10,80,fi.po,,fi,,finnish,,,fi

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/vi.po,10,80,100,0,0,0,0,10,80,vi.po,,vi,,vietnamese,,,vi

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/el.po,10,80,107,0,0,0,0,10,80,el.po,,el,,greek,,,el

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pl.po,10,80,85,0,0,0,0,10,80,pl.po,,pl,,polish,,,pl

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ru.po,10,80,67,0,0,0,0,10,80,ru.po,,ru,,russian,,,ru

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,10,80,32,0,0,0,0,10,80,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/de.po,10,80,91,0,0,0,0,10,80,de.po,,de,,german,,,de

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ms.po,8,56,51,1,4,1,20,10,80,ms.po,,ms,,malay,,,ms

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eu.po,8,56,56,1,4,1,20,10,80,eu.po,,eu,,basque,,,eu

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/eo.po,10,80,79,0,0,0,0,10,80,eo.po,,eo,,esperanto,,,eo

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/ja.po,10,80,18,0,0,0,0,10,80,ja.po,,ja,,japanese,,,ja

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/fr.po,10,80,89,0,0,0,0,10,80,fr.po,,fr,,french,,,fr

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/or.po,1,7,6,4,21,5,52,10,80,or.po,,or,,odia,,,or

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/lt.po,5,38,30,3,16,2,26,10,80,lt.po,,lt,,lithuanian,,,lt

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,10,80,107,0,0,0,0,10,80,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gstreamer1-plugins-ugly-free-1.15.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,1,7,7,4,21,5,52,10,80,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/wa.po,459,1797,2311,184,817,1076,7228,1719,9842,wa.po,,wa,,walloon,,,wa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/en_ca.po,1501,8620,8623,165,887,53,335,1719,9842,en_ca.po,,en,ca,english,,canada,en_ca

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/de.po,1911,10664,9730,0,0,0,0,1911,10664,de.po,,de,,german,,,de

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ar.po,1577,9006,7417,109,617,33,219,1719,9842,ar.po,,ar,,arabic,,,ar

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ka.po,1292,7118,4878,255,1448,172,1276,1719,9842,ka.po,,ka,,georgian,,,ka

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_hk.po,1716,9819,2089,0,0,0,0,1716,9819,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/am.po,91,161,170,250,902,1378,8779,1719,9842,am.po,,am,,amharic,,,am

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uz@cyrillic.po,384,1279,1012,47,210,1288,8353,1719,9842,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bs.po,987,5438,5106,486,2657,246,1747,1719,9842,bs.po,,bs,,bosnian,,,bs

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/lv.po,1500,7984,6338,58,330,161,1528,1719,9842,lv.po,,lv,,latvian,,,lv

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nso.po,987,5438,7966,485,2651,247,1753,1719,9842,nso.po,,nso,,northern sotho,,,nso

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/dz.po,1390,7921,3051,244,1359,85,562,1719,9842,dz.po,,dz,,dzongkha,,,dz

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/th.po,154,879,249,41,226,1524,8737,1719,9842,th.po,,th,,thai,,,th

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pt.po,1716,9819,11377,0,0,0,0,1716,9819,pt.po,,pt,,portuguese,,,pt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/yi.po,758,4040,4006,608,3317,353,2485,1719,9842,yi.po,,yi,,yiddish,,,yi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/br.po,164,281,323,17,50,1538,9511,1719,9842,br.po,,br,,breton,,,br

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/te.po,1680,9570,6784,31,202,8,70,1719,9842,te.po,,te,,telugu,,,te

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nn.po,903,4951,4476,514,2808,302,2083,1719,9842,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bn.po,1718,9837,9350,1,5,0,0,1719,9842,bn.po,,bn,,bangla,,,bn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ca@valencia.po,1718,9837,11460,1,5,0,0,1719,9842,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/xh.po,1102,6156,5347,425,2339,192,1347,1719,9842,xh.po,,xh,,xhosa,,,xh

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tr.po,1639,9337,7175,60,354,20,151,1719,9842,tr.po,,tr,,turkish,,,tr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hu.po,1729,9908,8112,0,0,0,0,1729,9908,hu.po,,hu,,hungarian,,,hu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nl.po,1641,9344,8717,58,347,20,151,1719,9842,nl.po,,nl,,dutch,,,nl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/eu.po,1716,9819,7953,0,0,0,0,1716,9819,eu.po,,eu,,basque,,,eu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/kk.po,7,7,7,164,368,1548,9467,1719,9842,kk.po,,kk,,kazakh,,,kk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pl.po,1729,9908,8858,0,0,0,0,1729,9908,pl.po,,pl,,polish,,,pl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ta.po,1680,9570,7251,31,202,8,70,1719,9842,ta.po,,ta,,tamil,,,ta

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_cn.po,1716,9819,2017,0,0,0,0,1716,9819,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mr.po,1718,9837,7966,1,5,0,0,1719,9842,mr.po,,mr,,marathi,,,mr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mai.po,1680,9570,9441,31,202,8,70,1719,9842,mai.po,,mai,,maithili,,,mai

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/be.po,758,4040,3415,608,3317,353,2485,1719,9842,be.po,,be,,belarusian,,,be

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bg.po,1718,9837,10226,1,5,0,0,1719,9842,bg.po,,bg,,bulgarian,,,bg

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/gu.po,1680,9570,9098,31,202,8,70,1719,9842,gu.po,,gu,,gujarati,,,gu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ku.po,69,108,110,86,280,1564,9454,1719,9842,ku.po,,ku,,kurdish,,,ku

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/en_gb.po,1721,9860,9849,0,0,0,0,1721,9860,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/az_ir.po,1,2,2,2,4,1716,9836,1719,9842,az_ir.po,,az,ir,azerbaijani,,iran,az_ir

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/li.po,758,4040,3744,608,3317,353,2485,1719,9842,li.po,,li,,limburgish,,,li

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/af.po,980,5396,5019,489,2677,250,1769,1719,9842,af.po,,af,,afrikaans,,,af

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/si.po,332,1377,1206,103,457,1284,8008,1719,9842,si.po,,si,,sinhala,,,si

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/is.po,69,376,332,249,1210,1401,8256,1719,9842,is.po,,is,,icelandic,,,is

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/it.po,1723,9871,10787,0,0,0,0,1723,9871,it.po,,it,,italian,,,it

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ang.po,33,91,82,54,225,1632,9526,1719,9842,ang.po,,ang,,old english,,,ang

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ms.po,925,5021,4230,508,2765,286,2056,1719,9842,ms.po,,ms,,malay,,,ms

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hi.po,1680,9570,10235,31,202,8,70,1719,9842,hi.po,,hi,,hindi,,,hi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ro.po,1723,9871,9712,0,0,0,0,1723,9871,ro.po,,ro,,romanian,,,ro

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ast.po,1690,9636,10837,23,157,6,49,1719,9842,ast.po,,ast,,asturian,,,ast

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/id.po,1729,9908,8933,0,0,0,0,1729,9908,id.po,,id,,indonesian,,,id

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sl.po,1716,9819,8802,0,0,0,0,1716,9819,sl.po,,sl,,slovenian,,,sl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/et.po,822,4033,2992,99,569,794,5215,1715,9817,et.po,,et,,estonian,,,et

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/my.po,1651,9398,6432,52,316,16,128,1719,9842,my.po,,my,,burmese,,,my

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/he.po,1716,9819,9819,0,0,0,0,1716,9819,he.po,,he,,hebrew,,,he

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mi.po,1,1,1,113,219,1605,9622,1719,9842,mi.po,,mi,,maori,,,mi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hr.po,1138,6381,5836,395,2095,186,1366,1719,9842,hr.po,,hr,,croatian,,,hr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/vi.po,1718,9837,13588,1,5,0,0,1719,9842,vi.po,,vi,,vietnamese,,,vi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sv.po,1716,9819,8097,0,0,0,0,1716,9819,sv.po,,sv,,swedish,,,sv

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uk.po,1718,9837,8324,1,5,0,0,1719,9842,uk.po,,uk,,ukrainian,,,uk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/cs.po,1716,9819,8344,0,0,0,0,1716,9819,cs.po,,cs,,czech,,,cs

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/uz.po,384,1279,1012,47,210,1288,8353,1719,9842,uz.po,,uz,,uzbek,,,uz

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr.po,1718,9837,9052,1,5,0,0,1719,9842,sr.po,,sr,,serbian,,,sr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ug.po,12,15,18,253,616,1451,9188,1716,9819,ug.po,,ug,,uyghur,,,ug

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ml.po,1680,9570,6829,31,202,8,70,1719,9842,ml.po,,ml,,malayalam,,,ml

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nds.po,560,1536,1242,1153,8239,6,67,1719,9842,nds.po,,nds,,low german,,,nds

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/gl.po,1716,9819,11730,0,0,0,0,1716,9819,gl.po,,gl,,galician,,,gl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ja.po,1713,9814,2317,0,0,3,5,1716,9819,ja.po,,ja,,japanese,,,ja

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/cy.po,1507,8597,8895,163,923,49,322,1719,9842,cy.po,,cy,,welsh,,,cy

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ps.po,509,1582,1638,33,172,1177,8088,1719,9842,ps.po,,ps,,pashto,,,ps

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mk.po,1489,8558,8759,176,945,54,339,1719,9842,mk.po,,mk,,macedonian,,,mk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/io.po,0,0,0,0,0,1719,9842,1719,9842,io.po,,io,,ido,,,io

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pt_br.po,1716,9819,11008,0,0,0,0,1716,9819,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/or.po,1680,9570,8501,31,202,8,70,1719,9842,or.po,,or,,odia,,,or

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ia.po,1,1,1,199,429,1519,9412,1719,9842,ia.po,,ia,,interlingua,,,ia

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tk.po,5,6,6,204,602,1510,9234,1719,9842,tk.po,,tk,,turkmen,,,tk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/el.po,1718,9837,10251,1,5,0,0,1719,9842,el.po,,el,,greek,,,el

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fa.po,308,1016,970,343,1492,1068,7334,1719,9842,fa.po,,fa,,persian,,,fa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr@ije.po,987,5438,5051,485,2655,247,1749,1719,9842,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/mn.po,987,5438,4334,486,2660,246,1744,1719,9842,mn.po,,mn,,mongolian,,,mn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/oc.po,2110,11611,14089,0,0,0,0,2110,11611,oc.po,,oc,,occitan,,,oc

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sq.po,1577,9006,9943,109,617,33,219,1719,9842,sq.po,,sq,,albanian,,,sq

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/nb.po,1479,7808,6611,130,1066,107,945,1716,9819,nb.po,,nb,,norwegian bokmål,,,nb

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sk.po,1559,8863,7526,122,720,38,259,1719,9842,sk.po,,sk,,slovak,,,sk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/da.po,1716,9819,8130,0,0,0,0,1716,9819,da.po,,da,,danish,,,da

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/lt.po,1718,9837,7657,1,5,0,0,1719,9842,lt.po,,lt,,lithuanian,,,lt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ca.po,1718,9837,11460,1,5,0,0,1719,9842,ca.po,,ca,,catalan,,,ca

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/sr@latin.po,1718,9837,9052,1,5,0,0,1719,9842,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/pa.po,1718,9837,9672,1,5,0,0,1719,9842,pa.po,,pa,,punjabi,,,pa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/bn_in.po,1718,9837,9344,1,5,0,0,1719,9842,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/crh.po,1641,9344,7537,58,347,20,151,1719,9842,crh.po,,crh,,crimean turkish,,,crh

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/hy.po,16,38,27,162,489,1541,9315,1719,9842,hy.po,,hy,,armenian,,,hy

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ne.po,1121,6287,5162,411,2240,187,1315,1719,9842,ne.po,,ne,,nepali,,,ne

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/zh_tw.po,1716,9819,2089,0,0,0,0,1716,9819,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/tt.po,232,533,475,188,679,1299,8630,1719,9842,tt.po,,tt,,tatar,,,tt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/es.po,1716,9819,11866,0,0,0,0,1716,9819,es.po,,es,,spanish,,,es

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/eo.po,0,0,0,0,0,1719,9842,1719,9842,eo.po,,eo,,esperanto,,,eo

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/kn.po,1682,9574,7031,29,198,8,70,1719,9842,kn.po,,kn,,kannada,,,kn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fr.po,1716,9819,11527,0,0,0,0,1716,9819,fr.po,,fr,,french,,,fr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ur.po,4,4,4,42,69,1673,9769,1719,9842,ur.po,,ur,,urdu,,,ur

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/be@latin.po,1490,8572,7361,175,931,54,339,1719,9842,be@latin.po,latin,be,,belarusian,,,be@latin

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/az.po,987,5438,4244,485,2655,247,1749,1719,9842,az.po,,az,,azerbaijani,,,az

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ga.po,158,286,296,83,244,1478,9312,1719,9842,ga.po,,ga,,irish,,,ga

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ko.po,1716,9819,7563,0,0,0,0,1716,9819,ko.po,,ko,,korean,,,ko

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/fi.po,1718,9837,6213,1,5,0,0,1719,9842,fi.po,,fi,,finnish,,,fi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/ru.po,1718,9837,8315,1,5,0,0,1719,9842,ru.po,,ru,,russian,,,ru

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/as.po,1680,9570,8145,31,202,8,70,1719,9842,as.po,,as,,assamese,,,as

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po-properties/rw.po,84,104,104,1156,7791,479,1947,1719,9842,rw.po,,rw,,kinyarwanda,,,rw

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/wa.po,438,1881,2694,263,570,364,1411,1065,3862,wa.po,,wa,,walloon,,,wa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/en_ca.po,586,2734,2735,249,477,230,651,1065,3862,en_ca.po,,en,ca,english,,canada,en_ca

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/de.po,868,2604,2541,0,0,0,0,868,2604,de.po,,de,,german,,,de

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ar.po,866,2562,2420,0,0,0,0,866,2562,ar.po,,ar,,arabic,,,ar

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ka.po,650,3011,2416,222,395,193,456,1065,3862,ka.po,,ka,,georgian,,,ka

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_hk.po,866,2562,1183,0,0,0,0,866,2562,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/am.po,46,64,79,249,442,770,3356,1065,3862,am.po,,am,,amharic,,,am

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,621,1366,1292,64,128,380,2368,1065,3862,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bs.po,257,1447,1390,324,851,484,1564,1065,3862,bs.po,,bs,,bosnian,,,bs

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/lv.po,1065,3862,3364,0,0,0,0,1065,3862,lv.po,,lv,,latvian,,,lv

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nso.po,258,1448,2259,322,849,485,1565,1065,3862,nso.po,,nso,,northern sotho,,,nso

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/dz.po,524,2500,1298,404,759,137,603,1065,3862,dz.po,,dz,,dzongkha,,,dz

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/th.po,870,2610,1383,0,0,0,0,870,2610,th.po,,th,,thai,,,th

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pt.po,866,2562,2800,0,0,0,0,866,2562,pt.po,,pt,,portuguese,,,pt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/yi.po,205,1183,1189,343,960,517,1719,1065,3862,yi.po,,yi,,yiddish,,,yi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/br.po,530,1052,1227,12,47,523,2763,1065,3862,br.po,,br,,breton,,,br

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/te.po,1037,3689,3156,18,93,10,80,1065,3862,te.po,,te,,telugu,,,te

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nn.po,972,3463,3395,44,134,49,265,1065,3862,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bn.po,1065,3862,4093,0,0,0,0,1065,3862,bn.po,,bn,,bangla,,,bn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,1065,3862,4945,0,0,0,0,1065,3862,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/xh.po,325,1728,1528,299,728,441,1406,1065,3862,xh.po,,xh,,xhosa,,,xh

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tr.po,988,3511,3047,40,121,37,230,1065,3862,tr.po,,tr,,turkish,,,tr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hu.po,870,2610,2408,0,0,0,0,870,2610,hu.po,,hu,,hungarian,,,hu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nl.po,867,2581,2594,0,0,0,0,867,2581,nl.po,,nl,,dutch,,,nl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/eu.po,540,2125,1874,0,0,0,0,540,2125,eu.po,,eu,,basque,,,eu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/kk.po,866,2562,2305,0,0,0,0,866,2562,kk.po,,kk,,kazakh,,,kk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pl.po,862,2584,2598,0,0,0,0,862,2584,pl.po,,pl,,polish,,,pl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ta.po,1037,3689,3321,18,93,10,80,1065,3862,ta.po,,ta,,tamil,,,ta

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_cn.po,862,2553,1129,3,20,3,31,868,2604,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mr.po,1063,3840,3970,2,22,0,0,1065,3862,mr.po,,mr,,marathi,,,mr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mai.po,1037,3689,4108,18,93,10,80,1065,3862,mai.po,,mai,,maithili,,,mai

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/be.po,855,2469,2285,0,0,13,135,868,2604,be.po,,be,,belarusian,,,be

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bg.po,1065,3862,4582,0,0,0,0,1065,3862,bg.po,,bg,,bulgarian,,,bg

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/gu.po,844,2436,2775,19,106,3,20,866,2562,gu.po,,gu,,gujarati,,,gu

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ku.po,621,2761,3002,219,443,225,658,1065,3862,ku.po,,ku,,kurdish,,,ku

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/en_gb.po,867,2581,2582,0,0,0,0,867,2581,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,1052,3847,1065,3862,az_ir.po,,az,ir,azerbaijani,,iran,az_ir

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/li.po,205,1183,1145,343,960,517,1719,1065,3862,li.po,,li,,limburgish,,,li

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/af.po,927,3241,3225,24,61,114,560,1065,3862,af.po,,af,,afrikaans,,,af

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/si.po,482,2073,2186,268,561,315,1228,1065,3862,si.po,,si,,sinhala,,,si

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/is.po,215,1079,1062,318,849,532,1934,1065,3862,is.po,,is,,icelandic,,,is

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/it.po,867,2581,2742,0,0,0,0,867,2581,it.po,,it,,italian,,,it

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ang.po,78,312,272,171,421,816,3129,1065,3862,ang.po,,ang,,old english,,,ang

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ms.po,240,1320,1237,323,844,502,1698,1065,3862,ms.po,,ms,,malay,,,ms

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hi.po,1037,3689,4363,18,93,10,80,1065,3862,hi.po,,hi,,hindi,,,hi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ro.po,868,2604,2807,0,0,0,0,868,2604,ro.po,,ro,,romanian,,,ro

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ast.po,1053,3792,4231,9,49,3,21,1065,3862,ast.po,,ast,,asturian,,,ast

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/id.po,862,2584,2525,0,0,0,0,862,2584,id.po,,id,,indonesian,,,id

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sl.po,866,2562,2540,0,0,0,0,866,2562,sl.po,,sl,,slovenian,,,sl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/et.po,866,2562,2217,0,0,0,0,866,2562,et.po,,et,,estonian,,,et

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/my.po,1019,3612,2931,25,127,21,123,1065,3862,my.po,,my,,burmese,,,my

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/he.po,870,2610,2495,0,0,0,0,870,2610,he.po,,he,,hebrew,,,he

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mi.po,204,1018,1135,310,826,551,2018,1065,3862,mi.po,,mi,,maori,,,mi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hr.po,348,1906,1845,276,617,441,1339,1065,3862,hr.po,,hr,,croatian,,,hr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/vi.po,1063,3840,5204,2,22,0,0,1065,3862,vi.po,,vi,,vietnamese,,,vi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sv.po,866,2562,2479,0,0,0,0,866,2562,sv.po,,sv,,swedish,,,sv

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uk.po,1065,3862,3708,0,0,0,0,1065,3862,uk.po,,uk,,ukrainian,,,uk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/cs.po,867,2581,2414,0,0,0,0,867,2581,cs.po,,cs,,czech,,,cs

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/uz.po,621,1366,1292,64,128,380,2368,1065,3862,uz.po,,uz,,uzbek,,,uz

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr.po,1065,3862,3844,0,0,0,0,1065,3862,sr.po,,sr,,serbian,,,sr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ug.po,866,2562,2312,0,0,0,0,866,2562,ug.po,,ug,,uyghur,,,ug

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ml.po,1037,3689,3259,18,93,10,80,1065,3862,ml.po,,ml,,malayalam,,,ml

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nds.po,678,1422,1536,0,0,387,2440,1065,3862,nds.po,,nds,,low german,,,nds

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/gl.po,866,2562,3000,0,0,0,0,866,2562,gl.po,,gl,,galician,,,gl

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ja.po,861,2550,1329,5,29,4,31,870,2610,ja.po,,ja,,japanese,,,ja

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/cy.po,901,3190,3511,75,201,89,471,1065,3862,cy.po,,cy,,welsh,,,cy

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ps.po,413,859,939,29,69,623,2934,1065,3862,ps.po,,ps,,pashto,,,ps

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mk.po,559,2639,2994,272,560,234,663,1065,3862,mk.po,,mk,,macedonian,,,mk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/io.po,348,1168,1106,247,467,470,2227,1065,3862,io.po,,io,,ido,,,io

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pt_br.po,866,2562,2849,0,0,0,0,866,2562,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/or.po,1044,3721,3892,10,60,11,81,1065,3862,or.po,,or,,odia,,,or

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ia.po,868,2604,2983,0,0,0,0,868,2604,ia.po,,ia,,interlingua,,,ia

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tk.po,77,209,210,264,543,724,3110,1065,3862,tk.po,,tk,,turkmen,,,tk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/el.po,866,2562,2736,0,0,0,0,866,2562,el.po,,el,,greek,,,el

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fa.po,319,1713,1772,301,738,445,1411,1065,3862,fa.po,,fa,,persian,,,fa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr@ije.po,258,1448,1397,326,853,481,1561,1065,3862,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/mn.po,255,1429,1314,328,869,482,1564,1065,3862,mn.po,,mn,,mongolian,,,mn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/oc.po,1245,3525,4086,0,0,4,17,1249,3542,oc.po,,oc,,occitan,,,oc

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sq.po,987,3503,4104,39,119,39,240,1065,3862,sq.po,,sq,,albanian,,,sq

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/nb.po,868,2604,2585,0,0,0,0,868,2604,nb.po,,nb,,norwegian bokmål,,,nb

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sk.po,1043,3724,3552,14,83,8,55,1065,3862,sk.po,,sk,,slovak,,,sk

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/da.po,866,2562,2420,0,0,0,0,866,2562,da.po,,da,,danish,,,da

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/lt.po,1065,3862,3397,0,0,0,0,1065,3862,lt.po,,lt,,lithuanian,,,lt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ca.po,1065,3862,4949,0,0,0,0,1065,3862,ca.po,,ca,,catalan,,,ca

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/sr@latin.po,1065,3862,3844,0,0,0,0,1065,3862,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/pa.po,1065,3862,4366,0,0,0,0,1065,3862,pa.po,,pa,,punjabi,,,pa

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/bn_in.po,1063,3840,4178,2,22,0,0,1065,3862,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/crh.po,981,3469,3047,39,119,45,274,1065,3862,crh.po,,crh,,crimean turkish,,,crh

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/hy.po,299,1638,1500,301,790,465,1434,1065,3862,hy.po,,hy,,armenian,,,hy

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ne.po,343,1874,1801,258,607,464,1381,1065,3862,ne.po,,ne,,nepali,,,ne

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/zh_tw.po,866,2562,1183,0,0,0,0,866,2562,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/tt.po,179,608,466,236,477,650,2777,1065,3862,tt.po,,tt,,tatar,,,tt

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/es.po,868,2604,3060,0,0,0,0,868,2604,es.po,,es,,spanish,,,es

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/eo.po,503,2364,2212,228,483,334,1015,1065,3862,eo.po,,eo,,esperanto,,,eo

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/kn.po,1047,3748,3374,10,59,8,55,1065,3862,kn.po,,kn,,kannada,,,kn

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fr.po,866,2562,2975,0,0,0,0,866,2562,fr.po,,fr,,french,,,fr

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ur.po,12,12,14,42,44,1011,3806,1065,3862,ur.po,,ur,,urdu,,,ur

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/be@latin.po,986,3491,3344,39,119,40,252,1065,3862,be@latin.po,latin,be,,belarusian,,,be@latin

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/az.po,257,1447,1258,323,848,485,1567,1065,3862,az.po,,az,,azerbaijani,,,az

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ga.po,990,3234,3657,18,93,57,535,1065,3862,ga.po,,ga,,irish,,,ga

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ko.po,866,2562,2312,0,0,0,0,866,2562,ko.po,,ko,,korean,,,ko

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/fi.po,1065,3862,3092,0,0,0,0,1065,3862,fi.po,,fi,,finnish,,,fi

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/ru.po,1063,3840,3771,2,22,0,0,1065,3862,ru.po,,ru,,russian,,,ru

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/as.po,1039,3711,3899,18,96,8,55,1065,3862,as.po,,as,,assamese,,,as

+ gtk2-2.24.32-4.fc30.src.rpm.stats.csv,po/rw.po,28,32,36,545,2359,492,1471,1065,3862,rw.po,,rw,,kinyarwanda,,,rw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ja.po,1628,9159,2151,197,931,86,566,1911,10656,ja.po,,ja,,japanese,,,ja

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mn.po,890,4865,3867,522,2791,254,1765,1666,9421,mn.po,,mn,,mongolian,,,mn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nso.po,890,4865,7165,521,2782,255,1774,1666,9421,nso.po,,nso,,northern sotho,,,nso

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ta.po,2041,11341,8502,0,0,0,0,2041,11341,ta.po,,ta,,tamil,,,ta

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ne.po,1085,5689,4718,963,4712,177,1762,2225,12163,ne.po,,ne,,nepali,,,ne

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/as.po,2041,11341,9554,0,0,0,0,2041,11341,as.po,,as,,assamese,,,as

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ky.po,94,351,263,0,0,1817,10305,1911,10656,ky.po,,ky,,kyrgyz,,,ky

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fi.po,1629,8902,5674,408,2121,206,1236,2243,12259,fi.po,,fi,,finnish,,,fi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/az.po,890,4865,3819,521,2786,255,1770,1666,9421,az.po,,az,,azerbaijani,,,az

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/be@latin.po,1364,7766,6691,228,1205,74,450,1666,9421,be@latin.po,latin,be,,belarusian,,,be@latin

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nl.po,2243,12259,11695,0,0,0,0,2243,12259,nl.po,,nl,,dutch,,,nl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pt.po,2223,12154,14095,0,0,0,0,2223,12154,pt.po,,pt,,portuguese,,,pt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/my.po,1515,8550,5859,115,632,36,239,1666,9421,my.po,,my,,burmese,,,my

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_hk.po,2041,11341,2453,0,0,0,0,2041,11341,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ga.po,144,259,269,100,287,1422,8875,1666,9421,ga.po,,ga,,irish,,,ga

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/eu.po,2243,12259,9908,0,0,0,0,2243,12259,eu.po,,eu,,basque,,,eu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tr.po,2243,12259,9730,0,0,0,0,2243,12259,tr.po,,tr,,turkish,,,tr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ang.po,30,79,73,61,254,1575,9088,1666,9421,ang.po,,ang,,old english,,,ang

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hi.po,1911,10656,11375,0,0,0,0,1911,10656,hi.po,,hi,,hindi,,,hi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hy.po,1627,9220,7803,23,115,16,86,1666,9421,hy.po,,hy,,armenian,,,hy

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/am.po,86,152,157,270,976,1310,8293,1666,9421,am.po,,am,,amharic,,,am

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sk.po,2243,12259,11162,0,0,0,0,2243,12259,sk.po,,sk,,slovak,,,sk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en_gb.po,2223,12154,12167,0,0,0,0,2223,12154,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kn.po,1146,3235,3216,0,0,0,0,1146,3235,kn.po,,kn,,kannada,,,kn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mk.po,1363,7752,7949,229,1219,74,450,1666,9421,mk.po,,mk,,macedonian,,,mk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ast.po,1818,10199,11398,0,0,0,0,1818,10199,ast.po,,ast,,asturian,,,ast

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tg.po,2023,11243,10638,0,0,0,0,2023,11243,tg.po,,tg,,tajik,,,tg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uz.po,368,1220,962,88,399,1210,7802,1666,9421,uz.po,,uz,,uzbek,,,uz

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en@shaw.po,1362,7355,7355,310,2235,0,0,1672,9590,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/xh.po,1002,5559,4834,463,2493,201,1369,1666,9421,xh.po,,xh,,xhosa,,,xh

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ar.po,1446,8183,6712,167,908,53,330,1666,9421,ar.po,,ar,,arabic,,,ar

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hu.po,2243,12259,9978,0,0,0,0,2243,12259,hu.po,,hu,,hungarian,,,hu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ug.po,1908,10631,8566,0,0,7,53,1915,10684,ug.po,,ug,,uyghur,,,ug

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ko.po,2243,12259,9423,0,0,0,0,2243,12259,ko.po,,ko,,korean,,,ko

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ka.po,1183,6448,4441,304,1688,179,1285,1666,9421,ka.po,,ka,,georgian,,,ka

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/rw.po,82,101,100,1116,7392,468,1928,1666,9421,rw.po,,rw,,kinyarwanda,,,rw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ro.po,1798,9969,10048,294,1441,151,849,2243,12259,ro.po,,ro,,romanian,,,ro

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fur.po,669,3021,3483,27,102,1531,9053,2227,12176,fur.po,,fur,,friulian,,,fur

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/af.po,852,4606,4261,910,4648,467,2933,2229,12187,af.po,,af,,afrikaans,,,af

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bg.po,1915,10684,11145,0,0,0,0,1915,10684,bg.po,,bg,,bulgarian,,,bg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en.po,0,0,0,0,0,1778,9985,1778,9985,en.po,,en,,english,,,en

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/wa.po,427,1664,2145,223,988,1016,6769,1666,9421,wa.po,,wa,,walloon,,,wa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kk.po,277,661,588,0,0,1966,11598,2243,12259,kk.po,,kk,,kazakh,,,kk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/it.po,2243,12259,13361,0,0,0,0,2243,12259,it.po,,it,,italian,,,it

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nds.po,515,1405,1134,1125,7838,26,178,1666,9421,nds.po,,nds,,low german,,,nds

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lv.po,2243,12259,9790,0,0,0,0,2243,12259,lv.po,,lv,,latvian,,,lv

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/io.po,0,0,0,0,0,1666,9421,1666,9421,io.po,,io,,ido,,,io

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gl.po,2243,12259,14529,0,0,0,0,2243,12259,gl.po,,gl,,galician,,,gl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ur.po,4,4,4,44,74,1618,9343,1666,9421,ur.po,,ur,,urdu,,,ur

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/yi.po,681,3591,3559,632,3374,353,2456,1666,9421,yi.po,,yi,,yiddish,,,yi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gd.po,2227,12176,15288,0,0,0,0,2227,12176,gd.po,,gd,,scottish gaelic,,,gd

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr@latin.po,2227,12176,11384,0,0,0,0,2227,12176,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ia.po,1,1,1,207,454,1458,8966,1666,9421,ia.po,,ia,,interlingua,,,ia

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/id.po,2243,12259,10976,0,0,0,0,2243,12259,id.po,,id,,indonesian,,,id

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/es.po,2243,12259,14808,0,0,0,0,2243,12259,es.po,,es,,spanish,,,es

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pa.po,2181,11945,11750,2,18,2,24,2185,11987,pa.po,,pa,,punjabi,,,pa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_tw.po,2243,12259,2724,0,0,0,0,2243,12259,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/vi.po,2154,11849,16298,0,0,0,0,2154,11849,vi.po,,vi,,vietnamese,,,vi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mi.po,1,1,1,120,236,1545,9184,1666,9421,mi.po,,mi,,maori,,,mi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/cs.po,2243,12259,10613,0,0,0,0,2243,12259,cs.po,,cs,,czech,,,cs

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ms.po,840,4514,3815,540,2876,286,2031,1666,9421,ms.po,,ms,,malay,,,ms

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/el.po,2225,12163,12801,0,0,0,0,2225,12163,el.po,,el,,greek,,,el

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/br.po,157,265,306,18,41,1491,9115,1666,9421,br.po,,br,,breton,,,br

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/en_ca.po,1375,7814,7817,218,1161,73,446,1666,9421,en_ca.po,,en,ca,english,,canada,en_ca

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fr.po,2243,12259,14758,0,0,0,0,2243,12259,fr.po,,fr,,french,,,fr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tk.po,5,6,6,217,647,1444,8768,1666,9421,tk.po,,tk,,turkmen,,,tk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bn_in.po,1577,8957,8514,69,353,20,111,1666,9421,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/az_ir.po,0,0,0,2,4,1664,9417,1666,9421,az_ir.po,,az,ir,azerbaijani,,iran,az_ir

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/km.po,1911,10656,2871,0,0,0,0,1911,10656,km.po,,km,,khmer,,,km

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/kg.po,12,15,15,257,630,1397,8776,1666,9421,kg.po,,kg,,kongo,,,kg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/et.po,791,3778,2802,457,2259,979,6139,2227,12176,et.po,,et,,estonian,,,et

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/da.po,2243,12259,10083,0,0,0,0,2243,12259,da.po,,da,,danish,,,da

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr@ije.po,890,4865,4522,521,2786,255,1770,1666,9421,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mr.po,2041,11341,9083,0,0,0,0,2041,11341,mr.po,,mr,,marathi,,,mr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/zh_cn.po,2227,12176,2644,1,1,1,10,2229,12187,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/gu.po,1933,10695,10095,79,440,29,206,2041,11341,gu.po,,gu,,gujarati,,,gu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/fa.po,381,1236,1168,386,1801,1039,7092,1806,10129,fa.po,,fa,,persian,,,fa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pt_br.po,2243,12259,13818,0,0,0,0,2243,12259,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/eo.po,729,2911,2640,136,663,1362,8602,2227,12176,eo.po,,eo,,esperanto,,,eo

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/dz.po,1270,7185,2790,291,1563,105,673,1666,9421,dz.po,,dz,,dzongkha,,,dz

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/si.po,317,1290,1143,142,647,1207,7484,1666,9421,si.po,,si,,sinhala,,,si

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uz@cyrillic.po,368,1220,962,88,399,1210,7802,1666,9421,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/uk.po,1877,10467,8839,0,0,0,0,1877,10467,uk.po,,uk,,ukrainian,,,uk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sl.po,2243,12259,11145,0,0,0,0,2243,12259,sl.po,,sl,,slovenian,,,sl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bs.po,1919,10700,9951,0,0,0,0,1919,10700,bs.po,,bs,,bosnian,,,bs

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/pl.po,2243,12259,10989,0,0,0,0,2243,12259,pl.po,,pl,,polish,,,pl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/li.po,681,3591,3334,632,3374,353,2456,1666,9421,li.po,,li,,limburgish,,,li

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ku.po,66,103,102,97,325,1503,8993,1666,9421,ku.po,,ku,,kurdish,,,ku

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/crh.po,1692,9595,7730,9,102,18,145,1719,9842,crh.po,,crh,,crimean turkish,,,crh

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lg.po,0,0,0,0,0,1716,9819,1716,9819,lg.po,,lg,,ganda,,,lg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/he.po,2227,12176,12176,0,0,0,0,2227,12176,he.po,,he,,hebrew,,,he

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sr.po,2243,12259,11458,0,0,0,0,2243,12259,sr.po,,sr,,serbian,,,sr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ca.po,2236,12225,14501,4,18,1,9,2241,12252,ca.po,,ca,,catalan,,,ca

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nn.po,831,4515,4075,539,2880,296,2026,1666,9421,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/an.po,1633,8891,10178,380,2291,7,45,2020,11227,an.po,,an,,aragonese,,,an

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ru.po,2243,12259,10502,0,0,0,0,2243,12259,ru.po,,ru,,russian,,,ru

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/lt.po,2243,12259,9597,0,0,0,0,2243,12259,lt.po,,lt,,lithuanian,,,lt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/bn.po,1577,8957,8520,69,353,20,111,1666,9421,bn.po,,bn,,bangla,,,bn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/or.po,1749,9448,8442,82,578,46,441,1877,10467,or.po,,or,,odia,,,or

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/oc.po,2104,11544,13971,83,438,17,90,2204,12072,oc.po,,oc,,occitan,,,oc

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/mai.po,1540,8700,8583,98,540,28,181,1666,9421,mai.po,,mai,,maithili,,,mai

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/be.po,681,3591,3020,632,3374,353,2456,1666,9421,be.po,,be,,belarusian,,,be

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sq.po,1446,8183,9029,167,908,53,330,1666,9421,sq.po,,sq,,albanian,,,sq

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/sv.po,2243,12259,10152,0,0,0,0,2243,12259,sv.po,,sv,,swedish,,,sv

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ca@valencia.po,2225,12163,14425,0,0,0,0,2225,12163,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ml.po,1540,8700,6215,98,540,28,181,1666,9421,ml.po,,ml,,malayalam,,,ml

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/hr.po,2243,12259,10859,0,0,0,0,2243,12259,hr.po,,hr,,croatian,,,hr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/th.po,153,862,236,72,395,1441,8164,1666,9421,th.po,,th,,thai,,,th

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/te.po,1911,10656,7759,0,0,0,0,1911,10656,te.po,,te,,telugu,,,te

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/is.po,539,1577,1390,27,133,1661,10466,2227,12176,is.po,,is,,icelandic,,,is

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/de.po,2243,12259,11338,0,0,0,0,2243,12259,de.po,,de,,german,,,de

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/nb.po,1622,8025,6828,274,1927,205,1627,2101,11579,nb.po,,nb,,norwegian bokmål,,,nb

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/tt.po,220,509,455,222,836,1224,8076,1666,9421,tt.po,,tt,,tatar,,,tt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/ps.po,470,1445,1510,76,351,1120,7625,1666,9421,ps.po,,ps,,pashto,,,ps

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po-properties/cy.po,1381,7791,8074,216,1197,69,433,1666,9421,cy.po,,cy,,welsh,,,cy

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ja.po,1450,3824,2047,42,132,173,452,1665,4408,ja.po,,ja,,japanese,,,ja

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mn.po,82,395,338,265,506,474,1531,821,2432,mn.po,,mn,,mongolian,,,mn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nso.po,84,399,562,260,501,477,1532,821,2432,nso.po,,nso,,northern sotho,,,nso

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ta.po,1146,3235,3081,0,0,0,0,1146,3235,ta.po,,ta,,tamil,,,ta

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ne.po,709,1600,1628,565,1628,85,618,1359,3846,ne.po,,ne,,nepali,,,ne

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/as.po,1142,3231,3574,0,0,0,0,1142,3231,as.po,,as,,assamese,,,as

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ky.po,66,83,82,3,3,862,2609,931,2695,ky.po,,ky,,kyrgyz,,,ky

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fi.po,1191,3258,2783,95,219,377,929,1663,4406,fi.po,,fi,,finnish,,,fi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/az.po,83,398,331,261,500,477,1534,821,2432,az.po,,az,,azerbaijani,,,az

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/be@latin.po,743,2090,1940,41,107,37,235,821,2432,be@latin.po,latin,be,,belarusian,,,be@latin

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nl.po,1663,4406,4336,0,0,0,0,1663,4406,nl.po,,nl,,dutch,,,nl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pt.po,1351,3852,4234,0,0,0,0,1351,3852,pt.po,,pt,,portuguese,,,pt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/my.po,776,2216,1810,29,135,16,81,821,2432,my.po,,my,,burmese,,,my

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1142,3231,1571,0,0,0,0,1142,3231,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ga.po,882,2141,2357,51,273,163,896,1096,3310,ga.po,,ga,,irish,,,ga

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/eu.po,1663,4406,4206,0,0,0,0,1663,4406,eu.po,,eu,,basque,,,eu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tr.po,1663,4408,4108,0,0,0,0,1663,4408,tr.po,,tr,,turkish,,,tr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ang.po,27,79,71,138,256,656,2097,821,2432,ang.po,,ang,,old english,,,ang

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hi.po,1146,3235,3797,0,0,0,0,1146,3235,hi.po,,hi,,hindi,,,hi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hy.po,494,1993,1802,53,67,274,372,821,2432,hy.po,,hy,,armenian,,,hy

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/am.po,23,32,42,233,378,565,2022,821,2432,am.po,,am,,amharic,,,am

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sk.po,1516,4060,4027,26,51,124,298,1666,4409,sk.po,,sk,,slovak,,,sk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en_gb.po,1666,4409,4450,0,0,0,0,1666,4409,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kn.po,1146,3235,3216,0,0,0,0,1146,3235,kn.po,,kn,,kannada,,,kn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mk.po,342,1357,1470,249,435,230,640,821,2432,mk.po,,mk,,macedonian,,,mk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ast.po,810,2366,2499,10,55,1,11,821,2432,ast.po,,ast,,asturian,,,ast

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tg.po,1136,2881,3208,58,356,53,273,1247,3510,tg.po,,tg,,tajik,,,tg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uz.po,555,1157,1093,67,127,199,1148,821,2432,uz.po,,uz,,uzbek,,,uz

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en@shaw.po,782,3077,3078,235,633,0,0,1017,3710,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/xh.po,135,597,506,254,481,432,1354,821,2432,xh.po,,xh,,xhosa,,,xh

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ar.po,1217,3377,3270,7,12,144,468,1368,3857,ar.po,,ar,,arabic,,,ar

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hu.po,1663,4408,4209,0,0,0,0,1663,4408,hu.po,,hu,,hungarian,,,hu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ug.po,932,2707,2470,0,0,0,0,932,2707,ug.po,,ug,,uyghur,,,ug

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ko.po,1663,4406,4240,0,0,0,0,1663,4406,ko.po,,ko,,korean,,,ko

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ka.po,409,1612,1257,222,381,190,439,821,2432,ka.po,,ka,,georgian,,,ka

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/rw.po,21,24,26,323,983,477,1425,821,2432,rw.po,,rw,,kinyarwanda,,,rw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ro.po,1620,4307,4773,11,24,32,77,1663,4408,ro.po,,ro,,romanian,,,ro

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fur.po,1539,4097,4649,18,37,109,275,1666,4409,fur.po,,fur,,friulian,,,fur

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/af.po,1238,3162,3202,0,0,134,707,1372,3869,af.po,,af,,afrikaans,,,af

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bg.po,1334,3782,4286,0,0,0,0,1334,3782,bg.po,,bg,,bulgarian,,,bg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en.po,49,49,92,0,0,817,2517,866,2566,en.po,,en,,english,,,en

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/wa.po,251,797,1053,241,452,329,1183,821,2432,wa.po,,wa,,walloon,,,wa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kk.po,1522,4091,3836,0,0,141,315,1663,4406,kk.po,,kk,,kazakh,,,kk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/it.po,1663,4408,4719,0,0,0,0,1663,4408,it.po,,it,,italian,,,it

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nds.po,580,1062,1119,8,24,233,1346,821,2432,nds.po,,nds,,low german,,,nds

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lv.po,1666,4409,4164,0,0,0,0,1666,4409,lv.po,,lv,,latvian,,,lv

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/io.po,248,782,739,229,378,344,1272,821,2432,io.po,,io,,ido,,,io

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gl.po,1666,4409,5144,0,0,0,0,1666,4409,gl.po,,gl,,galician,,,gl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ur.po,11,11,13,43,45,767,2376,821,2432,ur.po,,ur,,urdu,,,ur

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/yi.po,55,288,315,262,490,504,1654,821,2432,yi.po,,yi,,yiddish,,,yi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gd.po,1372,3869,4975,0,0,0,0,1372,3869,gd.po,,gd,,scottish gaelic,,,gd

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1372,3869,3915,0,0,0,0,1372,3869,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ia.po,932,2706,3109,0,0,0,0,932,2706,ia.po,,ia,,interlingua,,,ia

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/id.po,1663,4408,4365,0,0,0,0,1663,4408,id.po,,id,,indonesian,,,id

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/es.po,1663,4408,5201,0,0,0,0,1663,4408,es.po,,es,,spanish,,,es

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pa.po,1335,3791,4225,0,0,0,0,1335,3791,pa.po,,pa,,punjabi,,,pa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1377,3875,1887,42,76,247,458,1666,4409,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/vi.po,1308,3731,5136,0,0,0,0,1308,3731,vi.po,,vi,,vietnamese,,,vi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mi.po,56,211,200,252,500,513,1721,821,2432,mi.po,,mi,,maori,,,mi

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/cs.po,1663,4408,4287,0,0,0,0,1663,4408,cs.po,,cs,,czech,,,cs

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ms.po,72,331,295,263,504,486,1597,821,2432,ms.po,,ms,,malay,,,ms

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/el.po,1234,3227,3487,60,136,290,764,1584,4127,el.po,,el,,greek,,,el

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/br.po,794,1424,1712,1,2,439,2037,1234,3463,br.po,,br,,breton,,,br

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/en_ca.po,357,1388,1387,238,416,226,628,821,2432,en_ca.po,,en,ca,english,,canada,en_ca

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fr.po,1666,4409,5163,0,0,0,0,1666,4409,fr.po,,fr,,french,,,fr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tk.po,35,73,74,239,427,547,1932,821,2432,tk.po,,tk,,turkmen,,,tk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bn_in.po,955,2772,3100,0,0,0,0,955,2772,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,808,2417,821,2432,az_ir.po,,az,ir,azerbaijani,,iran,az_ir

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/km.po,931,2695,1578,0,0,0,0,931,2695,km.po,,km,,khmer,,,km

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/kg.po,971,3230,3181,21,118,73,514,1065,3862,kg.po,,kg,,kongo,,,kg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/et.po,955,2408,2206,158,550,257,902,1370,3860,et.po,,et,,estonian,,,et

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/da.po,1663,4408,4122,0,0,0,0,1663,4408,da.po,,da,,danish,,,da

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr@ije.po,84,399,378,264,505,473,1528,821,2432,sr@ije.po,ije,sr,,serbian,,,sr@ije

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mr.po,1142,3231,3362,0,0,0,0,1142,3231,mr.po,,mr,,marathi,,,mr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1372,3869,1845,0,0,0,0,1372,3869,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/gu.po,1110,2996,3452,7,52,25,183,1142,3231,gu.po,,gu,,gujarati,,,gu

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/fa.po,1361,3850,4292,0,0,0,0,1361,3850,fa.po,,fa,,persian,,,fa

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pt_br.po,1663,4408,4961,0,0,0,0,1663,4408,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/eo.po,1522,4109,3955,20,39,124,261,1666,4409,eo.po,,eo,,esperanto,,,eo

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/dz.po,306,1223,605,380,627,135,582,821,2432,dz.po,,dz,,dzongkha,,,dz

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/si.po,279,908,979,243,421,299,1103,821,2432,si.po,,si,,sinhala,,,si

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,555,1157,1093,67,127,199,1148,821,2432,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/uk.po,1352,3855,3559,0,0,0,0,1352,3855,uk.po,,uk,,ukrainian,,,uk

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sl.po,1663,4406,4499,0,0,0,0,1663,4406,sl.po,,sl,,slovenian,,,sl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bs.po,1030,3062,2991,0,0,0,0,1030,3062,bs.po,,bs,,bosnian,,,bs

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/pl.po,1664,4410,4533,0,0,0,0,1664,4410,pl.po,,pl,,polish,,,pl

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/li.po,55,288,286,262,490,504,1654,821,2432,li.po,,li,,limburgish,,,li

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ku.po,775,2301,2489,3,14,44,137,822,2452,ku.po,,ku,,kurdish,,,ku

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/crh.po,789,2121,1901,21,72,114,459,924,2652,crh.po,,crh,,crimean turkish,,,crh

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lg.po,677,1889,2048,0,0,162,633,839,2522,lg.po,,lg,,ganda,,,lg

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/he.po,1370,3860,3820,0,0,0,0,1370,3860,he.po,,he,,hebrew,,,he

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sr.po,1518,4130,4187,34,72,111,204,1663,4406,sr.po,,sr,,serbian,,,sr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ca.po,1580,4182,5060,75,193,11,34,1666,4409,ca.po,,ca,,catalan,,,ca

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nn.po,854,2383,2324,15,58,55,210,924,2651,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/an.po,955,2772,3218,0,0,0,0,955,2772,an.po,,an,,aragonese,,,an

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ru.po,1437,3983,3860,23,45,206,381,1666,4409,ru.po,,ru,,russian,,,ru

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/lt.po,1666,4409,4027,0,0,0,0,1666,4409,lt.po,,lt,,lithuanian,,,lt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/bn.po,866,2566,2762,0,0,0,0,866,2566,bn.po,,bn,,bangla,,,bn

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/or.po,955,2772,2979,0,0,0,0,955,2772,or.po,,or,,odia,,,or

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/oc.po,1278,3532,4119,21,94,53,227,1352,3853,oc.po,,oc,,occitan,,,oc

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/mai.po,791,2273,2543,25,121,5,38,821,2432,mai.po,,mai,,maithili,,,mai

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/be.po,1048,2981,2786,0,0,0,0,1048,2981,be.po,,be,,belarusian,,,be

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sq.po,744,2102,2391,41,107,36,223,821,2432,sq.po,,sq,,albanian,,,sq

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/sv.po,1663,4408,4191,0,0,0,0,1663,4408,sv.po,,sv,,swedish,,,sv

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1361,3850,4686,0,0,0,0,1361,3850,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ml.po,955,2772,2485,0,0,0,0,955,2772,ml.po,,ml,,malayalam,,,ml

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/hr.po,1666,4409,4322,0,0,0,0,1666,4409,hr.po,,hr,,croatian,,,hr

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/th.po,1351,3852,2114,0,0,0,0,1351,3852,th.po,,th,,thai,,,th

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/te.po,1146,3235,3019,0,0,0,0,1146,3235,te.po,,te,,telugu,,,te

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/is.po,1527,4024,3994,17,40,119,342,1663,4406,is.po,,is,,icelandic,,,is

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/de.po,1663,4408,4294,0,0,0,0,1663,4408,de.po,,de,,german,,,de

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/nb.po,1370,3860,3854,0,0,0,0,1370,3860,nb.po,,nb,,norwegian bokmål,,,nb

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/tt.po,87,186,161,208,359,526,1887,821,2432,tt.po,,tt,,tatar,,,tt

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/ps.po,345,636,671,31,64,445,1732,821,2432,ps.po,,ps,,pashto,,,ps

+ gtk3-3.24.8-1.fc30.src.rpm.stats.csv,po/cy.po,670,1846,1951,66,138,85,448,821,2432,cy.po,,cy,,welsh,,,cy

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/si.po,7,8,9,9,14,90,300,106,322,si.po,,si,,sinhala,,,si

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pt.po,94,255,296,12,67,0,0,106,322,pt.po,,pt,,portuguese,,,pt

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en_ca.po,16,72,72,23,84,67,166,106,322,en_ca.po,,en,ca,english,,canada,en_ca

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sk.po,105,320,327,1,2,0,0,106,322,sk.po,,sk,,slovak,,,sk

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_cn.po,105,320,145,1,2,0,0,106,322,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/de.po,106,322,297,0,0,0,0,106,322,de.po,,de,,german,,,de

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/dz.po,16,72,44,25,87,65,163,106,322,dz.po,,dz,,dzongkha,,,dz

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nb.po,103,315,306,1,2,2,5,106,322,nb.po,,nb,,norwegian bokmål,,,nb

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/gl.po,105,320,384,1,2,0,0,106,322,gl.po,,gl,,galician,,,gl

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/eu.po,106,322,290,0,0,0,0,106,322,eu.po,,eu,,basque,,,eu

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/rw.po,1,1,1,5,7,100,314,106,322,rw.po,,rw,,kinyarwanda,,,rw

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pl.po,106,322,317,0,0,0,0,106,322,pl.po,,pl,,polish,,,pl

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mg.po,3,4,5,10,15,93,303,106,322,mg.po,,mg,,malagasy,,,mg

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hu.po,106,322,295,0,0,0,0,106,322,hu.po,,hu,,hungarian,,,hu

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fur.po,57,79,82,1,2,48,241,106,322,fur.po,,fur,,friulian,,,fur

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_tw.po,105,320,143,1,2,0,0,106,322,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mr.po,20,94,94,25,83,61,145,106,322,mr.po,,mr,,marathi,,,mr

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/he.po,94,255,253,12,67,0,0,106,322,he.po,,he,,hebrew,,,he

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en@shaw.po,22,74,74,29,115,55,133,106,322,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fi.po,59,163,128,16,73,31,86,106,322,fi.po,,fi,,finnish,,,fi

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sr@latin.po,105,320,331,1,2,0,0,106,322,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/be.po,105,320,314,1,2,0,0,106,322,be.po,,be,,belarusian,,,be

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/kk.po,79,145,144,1,2,26,175,106,322,kk.po,,kk,,kazakh,,,kk

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pa.po,43,130,136,23,87,40,105,106,322,pa.po,,pa,,punjabi,,,pa

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sq.po,3,4,5,10,15,93,303,106,322,sq.po,,sq,,albanian,,,sq

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/es.po,106,322,398,0,0,0,0,106,322,es.po,,es,,spanish,,,es

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/cs.po,106,322,320,0,0,0,0,106,322,cs.po,,cs,,czech,,,cs

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ar.po,20,94,85,25,83,61,145,106,322,ar.po,,ar,,arabic,,,ar

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bn_in.po,20,94,101,25,83,61,145,106,322,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/et.po,30,106,83,17,61,59,155,106,322,et.po,,et,,estonian,,,et

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ru.po,88,220,211,13,69,5,33,106,322,ru.po,,ru,,russian,,,ru

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/tg.po,11,11,13,6,8,89,303,106,322,tg.po,,tg,,tajik,,,tg

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ga.po,16,39,38,10,27,80,256,106,322,ga.po,,ga,,irish,,,ga

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/cy.po,3,4,4,10,15,93,303,106,322,cy.po,,cy,,welsh,,,cy

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fa.po,4,8,8,9,13,93,301,106,322,fa.po,,fa,,persian,,,fa

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,90,223,283,11,66,5,33,106,322,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/fr.po,106,322,403,0,0,0,0,106,322,fr.po,,fr,,french,,,fr

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/it.po,106,322,353,0,0,0,0,106,322,it.po,,it,,italian,,,it

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/uk.po,39,123,114,21,85,46,114,106,322,uk.po,,uk,,ukrainian,,,uk

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/te.po,39,123,114,21,85,46,114,106,322,te.po,,te,,telugu,,,te

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ro.po,105,320,375,1,2,0,0,106,322,ro.po,,ro,,romanian,,,ro

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/lv.po,105,320,300,1,2,0,0,106,322,lv.po,,lv,,latvian,,,lv

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/az.po,3,4,4,8,12,95,306,106,322,az.po,,az,,azerbaijani,,,az

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hr.po,105,320,310,1,2,0,0,106,322,hr.po,,hr,,croatian,,,hr

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/pt_br.po,106,322,371,0,0,0,0,106,322,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ml.po,20,94,69,25,83,61,145,106,322,ml.po,,ml,,malayalam,,,ml

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/lt.po,106,322,285,0,0,0,0,106,322,lt.po,,lt,,lithuanian,,,lt

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/hi.po,40,127,128,21,82,45,113,106,322,hi.po,,hi,,hindi,,,hi

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/kn.po,37,118,103,20,82,49,122,106,322,kn.po,,kn,,kannada,,,kn

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/as.po,84,213,225,16,75,6,34,106,322,as.po,,as,,assamese,,,as

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bn.po,26,103,110,25,86,55,133,106,322,bn.po,,bn,,bangla,,,bn

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/da.po,105,320,292,1,2,0,0,106,322,da.po,,da,,danish,,,da

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ne.po,16,72,70,23,84,67,166,106,322,ne.po,,ne,,nepali,,,ne

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/vi.po,94,255,378,12,67,0,0,106,322,vi.po,,vi,,vietnamese,,,vi

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/el.po,105,320,339,1,2,0,0,106,322,el.po,,el,,greek,,,el

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/eo.po,15,16,15,8,11,83,295,106,322,eo.po,,eo,,esperanto,,,eo

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mk.po,38,119,141,21,85,47,118,106,322,mk.po,,mk,,macedonian,,,mk

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bs.po,87,218,214,14,71,5,33,106,322,bs.po,,bs,,bosnian,,,bs

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ast.po,38,119,143,21,85,47,118,106,322,ast.po,,ast,,asturian,,,ast

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sv.po,106,322,280,0,0,0,0,106,322,sv.po,,sv,,swedish,,,sv

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sl.po,106,322,308,0,0,0,0,106,322,sl.po,,sl,,slovenian,,,sl

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/gu.po,67,162,174,21,79,18,81,106,322,gu.po,,gu,,gujarati,,,gu

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ko.po,105,320,301,1,2,0,0,106,322,ko.po,,ko,,korean,,,ko

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/xh.po,3,4,5,9,13,94,305,106,322,xh.po,,xh,,xhosa,,,xh

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/zh_hk.po,84,213,114,16,75,6,34,106,322,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mn.po,3,4,4,8,12,95,306,106,322,mn.po,,mn,,mongolian,,,mn

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nl.po,105,320,288,1,2,0,0,106,322,nl.po,,nl,,dutch,,,nl

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ms.po,3,4,4,9,13,94,305,106,322,ms.po,,ms,,malay,,,ms

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/id.po,106,322,327,0,0,0,0,106,322,id.po,,id,,indonesian,,,id

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ug.po,40,127,120,21,82,45,113,106,322,ug.po,,ug,,uyghur,,,ug

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ca.po,90,223,283,11,66,5,33,106,322,ca.po,,ca,,catalan,,,ca

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/bg.po,93,251,285,11,66,2,5,106,322,bg.po,,bg,,bulgarian,,,bg

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/nn.po,26,103,85,23,82,57,137,106,322,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ja.po,86,210,119,12,68,8,44,106,322,ja.po,,ja,,japanese,,,ja

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/th.po,40,127,66,20,81,46,114,106,322,th.po,,th,,thai,,,th

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/en_gb.po,94,255,254,12,67,0,0,106,322,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/mai.po,6,7,8,10,15,90,300,106,322,mai.po,,mai,,maithili,,,mai

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/ta.po,40,127,117,21,82,45,113,106,322,ta.po,,ta,,tamil,,,ta

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/tr.po,106,322,291,0,0,0,0,106,322,tr.po,,tr,,turkish,,,tr

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/or.po,34,113,110,21,83,51,126,106,322,or.po,,or,,odia,,,or

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/oc.po,105,320,396,1,2,0,0,106,322,oc.po,,oc,,occitan,,,oc

+ gtksourceview3-3.24.10-1.fc30.src.rpm.stats.csv,po/sr.po,106,322,333,0,0,0,0,106,322,sr.po,,sr,,serbian,,,sr

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/si.po,6,7,8,6,11,82,290,94,308,si.po,,si,,sinhala,,,si

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pt.po,82,241,278,12,67,0,0,94,308,pt.po,,pt,,portuguese,,,pt

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,15,71,71,19,80,60,157,94,308,en_ca.po,,en,ca,english,,canada,en_ca

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sk.po,93,306,313,1,2,0,0,94,308,sk.po,,sk,,slovak,,,sk

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,93,306,133,1,2,0,0,94,308,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/de.po,94,308,283,0,0,0,0,94,308,de.po,,de,,german,,,de

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/dz.po,15,71,43,21,83,58,154,94,308,dz.po,,dz,,dzongkha,,,dz

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nb.po,90,299,289,2,4,2,5,94,308,nb.po,,nb,,norwegian bokmål,,,nb

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/gl.po,94,308,372,0,0,0,0,94,308,gl.po,,gl,,galician,,,gl

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/eu.po,93,306,272,1,2,0,0,94,308,eu.po,,eu,,basque,,,eu

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/rw.po,1,1,1,3,5,90,302,94,308,rw.po,,rw,,kinyarwanda,,,rw

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pl.po,94,308,303,0,0,0,0,94,308,pl.po,,pl,,polish,,,pl

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mg.po,3,4,5,8,13,83,291,94,308,mg.po,,mg,,malagasy,,,mg

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hu.po,94,308,281,0,0,0,0,94,308,hu.po,,hu,,hungarian,,,hu

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fur.po,94,308,375,0,0,0,0,94,308,fur.po,,fur,,friulian,,,fur

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,94,308,133,0,0,0,0,94,308,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mr.po,19,93,93,18,76,57,139,94,308,mr.po,,mr,,marathi,,,mr

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/he.po,82,241,237,12,67,0,0,94,308,he.po,,he,,hebrew,,,he

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,20,72,72,23,109,51,127,94,308,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fi.po,48,150,115,15,72,31,86,94,308,fi.po,,fi,,finnish,,,fi

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,93,306,317,1,2,0,0,94,308,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/be.po,94,308,293,0,0,0,0,94,308,be.po,,be,,belarusian,,,be

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/kk.po,68,133,130,0,0,26,175,94,308,kk.po,,kk,,kazakh,,,kk

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pa.po,31,116,121,23,87,40,105,94,308,pa.po,,pa,,punjabi,,,pa

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sq.po,3,4,5,8,13,83,291,94,308,sq.po,,sq,,albanian,,,sq

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/es.po,94,308,384,0,0,0,0,94,308,es.po,,es,,spanish,,,es

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/cs.po,94,308,306,0,0,0,0,94,308,cs.po,,cs,,czech,,,cs

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ar.po,19,93,84,18,76,57,139,94,308,ar.po,,ar,,arabic,,,ar

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,19,93,100,18,76,57,139,94,308,bn_in.po,,bn,in,bangla,,india,bn_in

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/et.po,22,96,74,17,61,55,151,94,308,et.po,,et,,estonian,,,et

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ru.po,76,206,192,13,69,5,33,94,308,ru.po,,ru,,russian,,,ru

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/tg.po,4,4,4,6,8,84,296,94,308,tg.po,,tg,,tajik,,,tg

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ga.po,14,37,36,10,27,70,244,94,308,ga.po,,ga,,irish,,,ga

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/cy.po,3,4,4,8,13,83,291,94,308,cy.po,,cy,,welsh,,,cy

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fa.po,4,8,8,7,11,83,289,94,308,fa.po,,fa,,persian,,,fa

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,78,209,266,11,66,5,33,94,308,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/fr.po,94,308,382,0,0,0,0,94,308,fr.po,,fr,,french,,,fr

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/it.po,94,308,339,0,0,0,0,94,308,it.po,,it,,italian,,,it

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/uk.po,27,109,100,21,85,46,114,94,308,uk.po,,uk,,ukrainian,,,uk

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/te.po,27,109,97,21,85,46,114,94,308,te.po,,te,,telugu,,,te

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ro.po,94,308,359,0,0,0,0,94,308,ro.po,,ro,,romanian,,,ro

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/lv.po,94,308,287,0,0,0,0,94,308,lv.po,,lv,,latvian,,,lv

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/az.po,3,4,4,6,10,85,294,94,308,az.po,,az,,azerbaijani,,,az

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hr.po,94,308,297,0,0,0,0,94,308,hr.po,,hr,,croatian,,,hr

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,94,308,362,0,0,0,0,94,308,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ml.po,19,93,68,18,76,57,139,94,308,ml.po,,ml,,malayalam,,,ml

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/lt.po,94,308,270,0,0,0,0,94,308,lt.po,,lt,,lithuanian,,,lt

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/hi.po,28,113,113,21,82,45,113,94,308,hi.po,,hi,,hindi,,,hi

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/kn.po,26,107,91,20,82,48,119,94,308,kn.po,,kn,,kannada,,,kn

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/as.po,72,199,209,16,75,6,34,94,308,as.po,,as,,assamese,,,as

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bn.po,24,101,108,19,80,51,127,94,308,bn.po,,bn,,bangla,,,bn

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/da.po,94,308,278,0,0,0,0,94,308,da.po,,da,,danish,,,da

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ne.po,15,71,69,19,80,60,157,94,308,ne.po,,ne,,nepali,,,ne

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/vi.po,82,241,359,12,67,0,0,94,308,vi.po,,vi,,vietnamese,,,vi

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/el.po,94,308,323,0,0,0,0,94,308,el.po,,el,,greek,,,el

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/eo.po,26,31,29,2,4,66,273,94,308,eo.po,,eo,,esperanto,,,eo

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mk.po,26,105,123,21,85,47,118,94,308,mk.po,,mk,,macedonian,,,mk

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bs.po,75,204,200,14,71,5,33,94,308,bs.po,,bs,,bosnian,,,bs

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ast.po,26,105,129,21,85,47,118,94,308,ast.po,,ast,,asturian,,,ast

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sv.po,94,308,267,0,0,0,0,94,308,sv.po,,sv,,swedish,,,sv

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sl.po,94,308,294,0,0,0,0,94,308,sl.po,,sl,,slovenian,,,sl

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/gu.po,58,153,165,19,77,17,78,94,308,gu.po,,gu,,gujarati,,,gu

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ko.po,94,308,286,0,0,0,0,94,308,ko.po,,ko,,korean,,,ko

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/xh.po,3,4,5,7,11,84,293,94,308,xh.po,,xh,,xhosa,,,xh

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,72,199,102,16,75,6,34,94,308,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mn.po,3,4,4,6,10,85,294,94,308,mn.po,,mn,,mongolian,,,mn

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nl.po,94,308,274,0,0,0,0,94,308,nl.po,,nl,,dutch,,,nl

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ms.po,3,4,4,7,11,84,293,94,308,ms.po,,ms,,malay,,,ms

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/id.po,94,308,310,0,0,0,0,94,308,id.po,,id,,indonesian,,,id

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ug.po,28,113,104,21,82,45,113,94,308,ug.po,,ug,,uyghur,,,ug

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ca.po,93,306,387,1,2,0,0,94,308,ca.po,,ca,,catalan,,,ca

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/bg.po,81,237,267,11,66,2,5,94,308,bg.po,,bg,,bulgarian,,,bg

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/nn.po,24,101,83,18,77,52,130,94,308,nn.po,,nn,,norwegian nynorsk,,,nn

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ja.po,74,196,107,12,68,8,44,94,308,ja.po,,ja,,japanese,,,ja

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/th.po,28,113,54,20,81,46,114,94,308,th.po,,th,,thai,,,th

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,82,241,240,12,67,0,0,94,308,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/mai.po,6,7,8,7,12,81,289,94,308,mai.po,,mai,,maithili,,,mai

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/ta.po,28,113,102,21,82,45,113,94,308,ta.po,,ta,,tamil,,,ta

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/tr.po,94,308,273,0,0,0,0,94,308,tr.po,,tr,,turkish,,,tr

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/or.po,22,99,95,21,83,51,126,94,308,or.po,,or,,odia,,,or

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/oc.po,94,308,379,0,0,0,0,94,308,oc.po,,oc,,occitan,,,oc

+ gtksourceview4-4.2.0-1.fc30.src.rpm.stats.csv,po/sr.po,94,308,319,0,0,0,0,94,308,sr.po,,sr,,serbian,,,sr

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/cs.po,3,8,8,0,0,0,0,3,8,cs.po,,cs,,czech,,,cs

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pt_br.po,22,81,99,0,0,0,0,22,81,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sl.po,22,81,83,0,0,0,0,22,81,sl.po,,sl,,slovenian,,,sl

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/es.po,22,81,113,0,0,0,0,22,81,es.po,,es,,spanish,,,es

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sv.po,22,81,79,0,0,0,0,22,81,sv.po,,sv,,swedish,,,sv

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ca.po,22,81,139,0,0,0,0,22,81,ca.po,,ca,,catalan,,,ca

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/el.po,3,8,11,0,0,0,0,3,8,el.po,,el,,greek,,,el

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ro.po,3,8,9,0,0,0,0,3,8,ro.po,,ro,,romanian,,,ro

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,3,8,13,0,0,0,0,3,8,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nds.po,3,8,7,0,0,0,0,3,8,nds.po,,nds,,low german,,,nds

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_hk.po,21,75,28,0,0,1,6,22,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/hr.po,3,8,9,0,0,0,0,3,8,hr.po,,hr,,croatian,,,hr

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/uk.po,3,8,8,0,0,0,0,3,8,uk.po,,uk,,ukrainian,,,uk

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/lt.po,3,8,8,0,0,0,0,3,8,lt.po,,lt,,lithuanian,,,lt

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/oc.po,3,8,11,0,0,0,0,3,8,oc.po,,oc,,occitan,,,oc

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pl.po,3,8,10,0,0,0,0,3,8,pl.po,,pl,,polish,,,pl

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sr.po,3,8,10,0,0,0,0,3,8,sr.po,,sr,,serbian,,,sr

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/gl.po,22,81,115,0,0,0,0,22,81,gl.po,,gl,,galician,,,gl

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/lv.po,3,8,8,0,0,0,0,3,8,lv.po,,lv,,latvian,,,lv

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/te.po,3,8,8,0,0,0,0,3,8,te.po,,te,,telugu,,,te

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/eu.po,22,81,89,0,0,0,0,22,81,eu.po,,eu,,basque,,,eu

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/bs.po,3,8,8,0,0,0,0,3,8,bs.po,,bs,,bosnian,,,bs

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pa.po,22,81,96,0,0,0,0,22,81,pa.po,,pa,,punjabi,,,pa

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/th.po,3,8,5,0,0,0,0,3,8,th.po,,th,,thai,,,th

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/en_gb.po,22,81,81,0,0,0,0,22,81,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/fr.po,22,81,111,0,0,0,0,22,81,fr.po,,fr,,french,,,fr

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/hu.po,22,81,77,0,0,0,0,22,81,hu.po,,hu,,hungarian,,,hu

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nl.po,3,8,6,0,0,0,0,3,8,nl.po,,nl,,dutch,,,nl

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/pt.po,3,8,11,0,0,0,0,3,8,pt.po,,pt,,portuguese,,,pt

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ru.po,22,81,82,0,0,0,0,22,81,ru.po,,ru,,russian,,,ru

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/gd.po,3,8,12,0,0,0,0,3,8,gd.po,,gd,,scottish gaelic,,,gd

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/eo.po,3,8,14,0,0,0,0,3,8,eo.po,,eo,,esperanto,,,eo

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/guc.po,3,8,10,0,0,0,0,3,8,guc.po,,guc,,wayuu,,,guc

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/id.po,3,8,8,0,0,0,0,3,8,id.po,,id,,indonesian,,,id

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/de.po,22,81,83,0,0,0,0,22,81,de.po,,de,,german,,,de

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_cn.po,22,81,30,0,0,0,0,22,81,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/zh_tw.po,21,75,28,0,0,1,6,22,81,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ja.po,3,8,5,0,0,0,0,3,8,ja.po,,ja,,japanese,,,ja

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/fur.po,3,8,13,0,0,0,0,3,8,fur.po,,fur,,friulian,,,fur

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/da.po,22,81,89,0,0,0,0,22,81,da.po,,da,,danish,,,da

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/ko.po,3,8,8,0,0,0,0,3,8,ko.po,,ko,,korean,,,ko

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sk.po,3,8,8,0,0,0,0,3,8,sk.po,,sk,,slovak,,,sk

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/sr@latin.po,3,8,10,0,0,0,0,3,8,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/he.po,3,8,9,0,0,0,0,3,8,he.po,,he,,hebrew,,,he

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/it.po,22,81,92,0,0,0,0,22,81,it.po,,it,,italian,,,it

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/tr.po,3,8,9,0,0,0,0,3,8,tr.po,,tr,,turkish,,,tr

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/tg.po,3,8,10,0,0,0,0,3,8,tg.po,,tg,,tajik,,,tg

+ gtk-vnc-0.9.0-5.fc30.src.rpm.stats.csv,po/nb.po,3,8,10,0,0,0,0,3,8,nb.po,,nb,,norwegian bokmål,,,nb

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/nl.po,3311,11653,11404,1205,3556,184,553,4700,15762,nl.po,,nl,,dutch,,,nl

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/el.po,115,148,158,2074,6310,2511,9304,4700,15762,el.po,,el,,greek,,,el

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ru.po,1704,4597,4538,2114,6205,882,4960,4700,15762,ru.po,,ru,,russian,,,ru

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ja.po,975,3254,1999,1702,6571,2023,5937,4700,15762,ja.po,,ja,,japanese,,,ja

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/pl.po,157,314,306,1846,5527,2697,9921,4700,15762,pl.po,,pl,,polish,,,pl

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sk.po,3108,10215,10002,1288,4541,304,1006,4700,15762,sk.po,,sk,,slovak,,,sk

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/zh_tw.po,465,1584,793,2524,7790,1711,6388,4700,15762,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/es.po,306,1819,1984,2037,7189,2357,6754,4700,15762,es.po,,es,,spanish,,,es

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/zh_cn.po,2965,8561,7654,1222,3614,513,3587,4700,15762,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/pt.po,334,1968,2054,2012,7044,2354,6750,4700,15762,pt.po,,pt,,portuguese,,,pt

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sl.po,2560,8860,8534,1918,6263,222,639,4700,15762,sl.po,,sl,,slovenian,,,sl

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/da.po,3311,11653,11174,1208,3564,181,545,4700,15762,da.po,,da,,danish,,,da

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/fr.po,3311,11653,12125,1208,3564,181,545,4700,15762,fr.po,,fr,,french,,,fr

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/tr.po,3304,11036,10518,1213,4175,183,551,4700,15762,tr.po,,tr,,turkish,,,tr

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/vi.po,2935,8209,8668,1200,3529,565,4024,4700,15762,vi.po,,vi,,vietnamese,,,vi

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/uk.po,3311,11653,11248,1208,3564,181,545,4700,15762,uk.po,,uk,,ukrainian,,,uk

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/sv.po,1354,5110,4902,2650,8590,696,2062,4700,15762,sv.po,,sv,,swedish,,,sv

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/it.po,3311,11653,11994,1208,3564,181,545,4700,15762,it.po,,it,,italian,,,it

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/gl.po,2582,8926,9610,1896,6197,222,639,4700,15762,gl.po,,gl,,galician,,,gl

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/en_gb.po,2112,7530,7507,2283,7328,305,904,4700,15762,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/cs.po,336,1980,1683,2003,6971,2361,6811,4700,15762,cs.po,,cs,,czech,,,cs

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/hu.po,3311,11653,11181,1208,3564,181,545,4700,15762,hu.po,,hu,,hungarian,,,hu

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/nb.po,242,695,642,2048,6258,2410,8809,4700,15762,nb.po,,nb,,norwegian bokmål,,,nb

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/de.po,3311,11653,10679,1214,3574,175,535,4700,15762,de.po,,de,,german,,,de

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/fi.po,2212,6765,6191,2042,6009,446,2988,4700,15762,fi.po,,fi,,finnish,,,fi

+ gutenprint-5.2.14-6.fc30.src.rpm.stats.csv,po/ca.po,3311,11653,12496,1208,3564,181,545,4700,15762,ca.po,,ca,,catalan,,,ca

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,403,2076,639,0,0,0,0,403,2076,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,596,2704,1004,0,0,0,0,596,2704,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,631,2910,1008,0,0,0,0,631,2910,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/vi.po,403,2076,3099,0,0,0,0,403,2076,vi.po,,vi,,vietnamese,,,vi

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/uk.po,402,2069,2058,0,0,0,0,402,2069,uk.po,,uk,,ukrainian,,,uk

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ug.po,583,2640,2364,0,0,2,8,585,2648,ug.po,,ug,,uyghur,,,ug

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/tr.po,403,2076,1772,0,0,0,0,403,2076,tr.po,,tr,,turkish,,,tr

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/th.po,564,2552,1102,0,0,0,0,564,2552,th.po,,th,,thai,,,th

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/tg.po,71,121,134,0,0,514,2527,585,2648,tg.po,,tg,,tajik,,,tg

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/te.po,596,2704,2339,0,0,0,0,596,2704,te.po,,te,,telugu,,,te

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ta.po,596,2704,2387,0,0,0,0,596,2704,ta.po,,ta,,tamil,,,ta

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sv.po,403,2076,2015,0,0,0,0,403,2076,sv.po,,sv,,swedish,,,sv

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,412,2148,2317,0,0,0,0,412,2148,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sr.po,403,2076,2251,0,0,0,0,403,2076,sr.po,,sr,,serbian,,,sr

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sq.po,312,1245,1532,0,0,0,0,312,1245,sq.po,,sq,,albanian,,,sq

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sl.po,403,2076,2148,0,0,0,0,403,2076,sl.po,,sl,,slovenian,,,sl

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/sk.po,402,2069,2074,0,0,0,0,402,2069,sk.po,,sk,,slovak,,,sk

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ru.po,403,2076,2003,0,0,0,0,403,2076,ru.po,,ru,,russian,,,ru

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ro.po,403,2076,2468,0,0,0,0,403,2076,ro.po,,ro,,romanian,,,ro

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,403,2076,2605,0,0,0,0,403,2076,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pt.po,624,2893,3334,0,0,0,0,624,2893,pt.po,,pt,,portuguese,,,pt

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pl.po,403,2076,2162,0,0,0,0,403,2076,pl.po,,pl,,polish,,,pl

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/pa.po,607,2762,3169,0,0,0,0,607,2762,pa.po,,pa,,punjabi,,,pa

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/or.po,596,2704,2797,0,0,0,0,596,2704,or.po,,or,,odia,,,or

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/oc.po,593,2663,3511,0,0,25,188,618,2851,oc.po,,oc,,occitan,,,oc

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nn.po,540,2427,2414,0,0,5,18,545,2445,nn.po,,nn,,norwegian nynorsk,,,nn

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nl.po,403,2076,2062,0,0,0,0,403,2076,nl.po,,nl,,dutch,,,nl

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ne.po,155,554,562,170,781,86,804,411,2139,ne.po,,ne,,nepali,,,ne

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nds.po,222,594,641,0,0,236,1342,458,1936,nds.po,,nds,,low german,,,nds

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/nb.po,412,2148,2136,0,0,0,0,412,2148,nb.po,,nb,,norwegian bokmål,,,nb

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mr.po,596,2704,2677,0,0,0,0,596,2704,mr.po,,mr,,marathi,,,mr

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ml.po,585,2648,2211,0,0,0,0,585,2648,ml.po,,ml,,malayalam,,,ml

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mk.po,537,2412,2873,0,0,0,0,537,2412,mk.po,,mk,,macedonian,,,mk

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/mai.po,88,196,215,0,0,357,1662,445,1858,mai.po,,mai,,maithili,,,mai

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/lv.po,403,2076,1856,0,0,0,0,403,2076,lv.po,,lv,,latvian,,,lv

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/lt.po,403,2076,1765,0,0,0,0,403,2076,lt.po,,lt,,lithuanian,,,lt

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ku.po,65,142,164,0,0,209,908,274,1050,ku.po,,ku,,kurdish,,,ku

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ko.po,403,2076,1834,0,0,0,0,403,2076,ko.po,,ko,,korean,,,ko

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/kn.po,601,2728,2422,0,0,0,0,601,2728,kn.po,,kn,,kannada,,,kn

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/kk.po,313,1502,1420,0,0,90,574,403,2076,kk.po,,kk,,kazakh,,,kk

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ja.po,583,2640,1062,0,0,0,0,583,2640,ja.po,,ja,,japanese,,,ja

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/it.po,403,2076,2347,0,0,0,0,403,2076,it.po,,it,,italian,,,it

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/id.po,403,2076,2100,0,0,0,0,403,2076,id.po,,id,,indonesian,,,id

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hu.po,403,2076,2037,0,0,0,0,403,2076,hu.po,,hu,,hungarian,,,hu

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hr.po,403,2076,1955,0,0,0,0,403,2076,hr.po,,hr,,croatian,,,hr

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/hi.po,596,2704,3161,0,0,0,0,596,2704,hi.po,,hi,,hindi,,,hi

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/he.po,400,2080,2041,0,0,0,0,400,2080,he.po,,he,,hebrew,,,he

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/gu.po,597,2706,3018,0,0,0,0,597,2706,gu.po,,gu,,gujarati,,,gu

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/gl.po,403,2076,2857,0,0,0,0,403,2076,gl.po,,gl,,galician,,,gl

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ga.po,165,446,523,0,0,197,1130,362,1576,ga.po,,ga,,irish,,,ga

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fur.po,403,2076,2560,0,0,0,0,403,2076,fur.po,,fur,,friulian,,,fur

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fr.po,403,2076,2820,0,0,0,0,403,2076,fr.po,,fr,,french,,,fr

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fi.po,341,1699,1411,43,266,18,104,402,2069,fi.po,,fi,,finnish,,,fi

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/fa.po,465,1815,2181,15,61,65,569,545,2445,fa.po,,fa,,persian,,,fa

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/eu.po,411,2139,2066,0,0,0,0,411,2139,eu.po,,eu,,basque,,,eu

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/et.po,565,2555,2241,0,0,0,0,565,2555,et.po,,et,,estonian,,,et

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/es.po,403,2076,2739,0,0,0,0,403,2076,es.po,,es,,spanish,,,es

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/eo.po,111,361,386,9,43,291,1735,411,2139,eo.po,,eo,,esperanto,,,eo

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,412,2148,2146,0,0,0,0,412,2148,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/en@shaw.po,409,1725,1725,49,211,0,0,458,1936,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/el.po,403,2076,2225,0,0,0,0,403,2076,el.po,,el,,greek,,,el

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/de.po,403,2076,2213,0,0,0,0,403,2076,de.po,,de,,german,,,de

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/da.po,403,2076,2009,0,0,0,0,403,2076,da.po,,da,,danish,,,da

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/cs.po,403,2076,1985,0,0,0,0,403,2076,cs.po,,cs,,czech,,,cs

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,411,2139,3009,0,0,0,0,411,2139,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ca.po,400,2043,2897,0,0,0,0,400,2043,ca.po,,ca,,catalan,,,ca

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bs.po,609,2777,2884,0,0,0,0,609,2777,bs.po,,bs,,bosnian,,,bs

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,596,2704,2986,0,0,0,0,596,2704,bn_in.po,,bn,in,bangla,,india,bn_in

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bn.po,458,1936,2102,0,0,0,0,458,1936,bn.po,,bn,,bangla,,,bn

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/bg.po,618,2851,3363,0,0,0,0,618,2851,bg.po,,bg,,bulgarian,,,bg

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/be@latin.po,326,1354,1338,0,0,0,0,326,1354,be@latin.po,latin,be,,belarusian,,,be@latin

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/be.po,402,2069,2045,0,0,0,0,402,2069,be.po,,be,,belarusian,,,be

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ast.po,537,2412,2910,0,0,0,0,537,2412,ast.po,,ast,,asturian,,,ast

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/as.po,597,2706,2858,0,0,0,0,597,2706,as.po,,as,,assamese,,,as

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/ar.po,401,1654,1688,9,33,59,324,469,2011,ar.po,,ar,,arabic,,,ar

+ gvfs-1.40.1-2.fc30.src.rpm.stats.csv,po/af.po,210,711,733,1,3,252,1269,463,1983,af.po,,af,,afrikaans,,,af

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/tg.po,79,613,646,0,0,0,0,79,613,tg.po,,tg,,tajik,,,tg

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,79,613,683,0,0,0,0,79,613,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/pl.po,79,613,599,0,0,0,0,79,613,pl.po,,pl,,polish,,,pl

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/it.po,69,496,533,6,24,4,93,79,613,it.po,,it,,italian,,,it

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/hu.po,76,598,563,3,15,0,0,79,613,hu.po,,hu,,hungarian,,,hu

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/es.po,79,613,700,0,0,0,0,79,613,es.po,,es,,spanish,,,es

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/de.po,79,613,582,0,0,0,0,79,613,de.po,,de,,german,,,de

+ hunspell-1.7.0-2.fc30.src.rpm.stats.csv,po/ca.po,79,613,705,0,0,0,0,79,613,ca.po,,ca,,catalan,,,ca

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/nb.po,62,163,151,8,22,465,1961,535,2146,nb.po,,nb,,norwegian bokmål,,,nb

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ml.po,154,707,593,15,103,366,1336,535,2146,ml.po,,ml,,malayalam,,,ml

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ar.po,41,117,109,5,16,489,2013,535,2146,ar.po,,ar,,arabic,,,ar

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ru.po,145,758,657,10,83,380,1305,535,2146,ru.po,,ru,,russian,,,ru

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ca.po,272,1398,1656,6,42,257,706,535,2146,ca.po,,ca,,catalan,,,ca

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sr@latin.po,41,115,109,5,16,489,2015,535,2146,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/mr.po,162,925,857,6,59,367,1162,535,2146,mr.po,,mr,,marathi,,,mr

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/hu.po,535,2146,2019,0,0,0,0,535,2146,hu.po,,hu,,hungarian,,,hu

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_hk.po,163,927,309,6,59,366,1160,535,2146,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ko.po,162,925,735,6,59,367,1162,535,2146,ko.po,,ko,,korean,,,ko

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bn_in.po,162,925,939,6,59,367,1162,535,2146,bn_in.po,,bn,in,bangla,,india,bn_in

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bg.po,121,557,613,11,51,403,1538,535,2146,bg.po,,bg,,bulgarian,,,bg

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_cn.po,222,1149,387,6,57,307,940,535,2146,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fi.po,93,302,240,7,11,435,1833,535,2146,fi.po,,fi,,finnish,,,fi

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/or.po,142,669,659,15,97,378,1380,535,2146,or.po,,or,,odia,,,or

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/de.po,195,1069,910,11,88,329,989,535,2146,de.po,,de,,german,,,de

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/eu.po,50,96,102,7,13,478,2037,535,2146,eu.po,,eu,,basque,,,eu

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ur.po,1,1,1,0,0,534,2145,535,2146,ur.po,,ur,,urdu,,,ur

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/te.po,162,925,780,6,59,367,1162,535,2146,te.po,,te,,telugu,,,te

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fr.po,535,2146,2429,0,0,0,0,535,2146,fr.po,,fr,,french,,,fr

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/mn.po,32,116,97,5,33,498,1997,535,2146,mn.po,,mn,,mongolian,,,mn

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/as.po,162,925,885,6,59,367,1162,535,2146,as.po,,as,,assamese,,,as

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/es.po,520,2088,2389,10,50,5,8,535,2146,es.po,,es,,spanish,,,es

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/tg.po,32,36,44,4,6,499,2104,535,2146,tg.po,,tg,,tajik,,,tg

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ta.po,162,925,768,6,59,367,1162,535,2146,ta.po,,ta,,tamil,,,ta

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/it.po,171,807,919,28,393,336,946,535,2146,it.po,,it,,italian,,,it

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/he.po,1,1,1,0,0,534,2145,535,2146,he.po,,he,,hebrew,,,he

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pt_br.po,197,1123,1304,11,88,327,935,535,2146,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/bn.po,104,448,503,10,49,421,1649,535,2146,bn.po,,bn,,bangla,,,bn

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/gu.po,162,925,916,6,59,367,1162,535,2146,gu.po,,gu,,gujarati,,,gu

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/cs.po,504,1883,1759,19,104,12,159,535,2146,cs.po,,cs,,czech,,,cs

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ia.po,125,583,715,14,93,396,1470,535,2146,ia.po,,ia,,interlingua,,,ia

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/en_gb.po,104,449,452,11,51,420,1646,535,2146,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/hi.po,125,583,682,14,93,396,1470,535,2146,hi.po,,hi,,hindi,,,hi

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/et.po,42,75,69,6,12,487,2059,535,2146,et.po,,et,,estonian,,,et

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/vi.po,118,512,681,0,0,417,1634,535,2146,vi.po,,vi,,vietnamese,,,vi

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pa.po,203,777,782,4,39,328,1330,535,2146,pa.po,,pa,,punjabi,,,pa

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/zh_tw.po,520,2088,747,10,50,5,8,535,2146,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/fa.po,38,67,73,5,8,492,2071,535,2146,fa.po,,fa,,persian,,,fa

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/uk.po,535,2146,2083,0,0,0,0,535,2146,uk.po,,uk,,ukrainian,,,uk

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sr.po,41,115,109,5,16,489,2015,535,2146,sr.po,,sr,,serbian,,,sr

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/ja.po,535,2146,812,0,0,0,0,535,2146,ja.po,,ja,,japanese,,,ja

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sq.po,13,20,22,1,2,521,2124,535,2146,sq.po,,sq,,albanian,,,sq

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/da.po,520,2088,1750,10,50,5,8,535,2146,da.po,,da,,danish,,,da

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/pl.po,535,2146,2025,0,0,0,0,535,2146,pl.po,,pl,,polish,,,pl

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/nl.po,535,2146,2128,0,0,0,0,535,2146,nl.po,,nl,,dutch,,,nl

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/lv.po,105,456,407,11,51,419,1639,535,2146,lv.po,,lv,,latvian,,,lv

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/sv.po,520,2088,1708,10,50,5,8,535,2146,sv.po,,sv,,swedish,,,sv

+ ibus-1.5.20-1.fc30.src.rpm.stats.csv,po/kn.po,162,925,803,6,59,367,1162,535,2146,kn.po,,kn,,kannada,,,kn

+ ibus-hangul-1.5.1-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,27,129,27,129,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-hangul-1.5.1-3.fc30.src.rpm.stats.csv,po/ko.po,27,129,99,0,0,0,0,27,129,ko.po,,ko,,korean,,,ko

+ ibus-kkc-1.5.22-11.fc30.src.rpm.stats.csv,po/ja.po,82,270,114,0,0,0,0,82,270,ja.po,,ja,,japanese,,,ja

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/ca.po,134,369,430,4,8,3,3,141,380,ca.po,,ca,,catalan,,,ca

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,59,117,61,27,93,55,170,141,380,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,141,380,173,0,0,0,0,141,380,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/fr.po,133,335,360,0,0,8,45,141,380,fr.po,,fr,,french,,,fr

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,59,117,61,27,93,55,170,141,380,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ ibus-libpinyin-1.11.0-2.fc30.src.rpm.stats.csv,po/ru.po,27,42,51,38,104,76,234,141,380,ru.po,,ru,,russian,,,ru

+ ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,70,204,113,0,0,0,0,70,204,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,60,174,84,0,0,10,30,70,204,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-libzhuyin-1.9.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,52,142,76,6,21,12,41,70,204,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ ibus-m17n-1.4.1-2.fc30.src.rpm.stats.csv,po/de.po,24,56,55,0,0,0,0,24,56,de.po,,de,,german,,,de

+ ibus-m17n-1.4.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,24,56,24,56,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/ca.po,20,78,102,3,12,170,1688,193,1778,ca.po,,ca,,catalan,,,ca

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/cs.po,13,14,14,0,0,180,1764,193,1778,cs.po,,cs,,czech,,,cs

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/uk.po,193,1778,1654,0,0,0,0,193,1778,uk.po,,uk,,ukrainian,,,uk

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/de.po,193,1778,1716,0,0,0,0,193,1778,de.po,,de,,german,,,de

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,18,30,33,0,0,175,1748,193,1778,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/fr.po,172,1497,1682,0,0,21,281,193,1778,fr.po,,fr,,french,,,fr

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/pl.po,193,1778,1596,0,0,0,0,193,1778,pl.po,,pl,,polish,,,pl

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/ja.po,65,158,70,0,0,128,1620,193,1778,ja.po,,ja,,japanese,,,ja

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,20,40,20,0,0,173,1738,193,1778,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ ibus-typing-booster-2.6.0-1.fc30.src.rpm.stats.csv,po/es.po,129,1077,1173,0,0,64,701,193,1778,es.po,,es,,spanish,,,es

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_tw.po,119,775,342,10,54,19,143,148,972,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,157,1001,157,1001,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/zh_cn.po,132,864,447,0,0,16,108,148,972,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,157,1001,157,1001,wa.po,,wa,,walloon,,,wa

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/vi.po,62,367,487,9,46,77,559,148,972,vi.po,,vi,,vietnamese,,,vi

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,157,1001,157,1001,ur.po,,ur,,urdu,,,ur

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/uk.po,132,864,845,0,0,16,108,148,972,uk.po,,uk,,ukrainian,,,uk

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/tr.po,132,864,816,0,0,16,108,148,972,tr.po,,tr,,turkish,,,tr

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,157,1001,157,1001,tg.po,,tg,,tajik,,,tg

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/te.po,119,775,677,10,54,19,143,148,972,te.po,,te,,telugu,,,te

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ta.po,119,775,683,10,54,19,143,148,972,ta.po,,ta,,tamil,,,ta

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sv.po,132,864,851,0,0,16,108,148,972,sv.po,,sv,,swedish,,,sv

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sr@latin.po,118,768,783,10,54,20,150,148,972,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sr.po,132,864,882,0,0,16,108,148,972,sr.po,,sr,,serbian,,,sr

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,157,1001,157,1001,sq.po,,sq,,albanian,,,sq

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sl.po,118,768,772,10,54,20,150,148,972,sl.po,,sl,,slovenian,,,sl

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/sk.po,132,864,854,0,0,16,108,148,972,sk.po,,sk,,slovak,,,sk

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,157,1001,157,1001,si.po,,si,,sinhala,,,si

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ru.po,132,864,853,0,0,16,108,148,972,ru.po,,ru,,russian,,,ru

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ro.po,63,318,351,6,25,79,629,148,972,ro.po,,ro,,romanian,,,ro

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pt_br.po,132,864,1000,0,0,16,108,148,972,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pt.po,119,775,941,10,54,19,143,148,972,pt.po,,pt,,portuguese,,,pt

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pl.po,132,864,892,0,0,16,108,148,972,pl.po,,pl,,polish,,,pl

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/pa.po,119,775,950,10,54,19,143,148,972,pa.po,,pa,,punjabi,,,pa

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/or.po,119,775,916,10,54,19,143,148,972,or.po,,or,,odia,,,or

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nn.po,3,4,4,3,12,142,956,148,972,nn.po,,nn,,norwegian nynorsk,,,nn

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nl.po,132,864,939,0,0,16,108,148,972,nl.po,,nl,,dutch,,,nl

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,147,971,148,972,nds.po,,nds,,low german,,,nds

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/nb.po,119,775,775,10,54,19,143,148,972,nb.po,,nb,,norwegian bokmål,,,nb

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,157,1001,157,1001,my.po,,my,,burmese,,,my

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ms.po,104,684,697,10,54,34,234,148,972,ms.po,,ms,,malay,,,ms

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mr.po,119,775,787,10,54,19,143,148,972,mr.po,,mr,,marathi,,,mr

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ml.po,132,864,759,0,0,16,108,148,972,ml.po,,ml,,malayalam,,,ml

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mk.po,112,744,775,10,54,26,174,148,972,mk.po,,mk,,macedonian,,,mk

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/mai.po,118,768,942,10,54,20,150,148,972,mai.po,,mai,,maithili,,,mai

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lv.po,61,337,270,10,54,77,581,148,972,lv.po,,lv,,latvian,,,lv

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lt.po,62,288,252,10,54,76,630,148,972,lt.po,,lt,,lithuanian,,,lt

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,157,1001,157,1001,lo.po,,lo,,lao,,,lo

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,157,1001,157,1001,ku.po,,ku,,kurdish,,,ku

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,157,1001,157,1001,ks.po,,ks,,kashmiri,,,ks

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ko.po,118,768,721,10,54,20,150,148,972,ko.po,,ko,,korean,,,ko

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/kn.po,119,775,752,10,54,19,143,148,972,kn.po,,kn,,kannada,,,kn

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,157,1001,157,1001,kk.po,,kk,,kazakh,,,kk

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ka.po,10,22,25,3,16,135,934,148,972,ka.po,,ka,,georgian,,,ka

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ja.po,119,775,423,10,54,19,143,148,972,ja.po,,ja,,japanese,,,ja

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/it.po,119,775,867,10,54,19,143,148,972,it.po,,it,,italian,,,it

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/is.po,111,740,765,10,54,27,178,148,972,is.po,,is,,icelandic,,,is

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/id.po,103,683,713,10,54,35,235,148,972,id.po,,id,,indonesian,,,id

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,157,1001,157,1001,ia.po,,ia,,interlingua,,,ia

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,157,1001,157,1001,hy.po,,hy,,armenian,,,hy

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hu.po,119,775,815,10,54,19,143,148,972,hu.po,,hu,,hungarian,,,hu

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hr.po,118,768,787,10,54,20,150,148,972,hr.po,,hr,,croatian,,,hr

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/hi.po,119,775,951,10,54,19,143,148,972,hi.po,,hi,,hindi,,,hi

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,157,1001,157,1001,he.po,,he,,hebrew,,,he

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/gu.po,119,775,908,10,54,19,143,148,972,gu.po,,gu,,gujarati,,,gu

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/gl.po,44,209,245,9,46,95,717,148,972,gl.po,,gl,,galician,,,gl

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,157,1001,157,1001,ga.po,,ga,,irish,,,ga

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fr.po,132,864,1045,0,0,16,108,148,972,fr.po,,fr,,french,,,fr

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fi.po,132,864,749,0,0,16,108,148,972,fi.po,,fi,,finnish,,,fi

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,157,1001,157,1001,fa.po,,fa,,persian,,,fa

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/eu.po,1,2,4,2,7,145,963,148,972,eu.po,,eu,,basque,,,eu

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/et.po,103,683,640,10,54,35,235,148,972,et.po,,et,,estonian,,,et

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/es.po,132,864,1031,0,0,16,108,148,972,es.po,,es,,spanish,,,es

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/en_gb.po,119,775,775,10,54,19,143,148,972,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/el.po,117,761,856,10,54,21,157,148,972,el.po,,el,,greek,,,el

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/de.po,132,864,848,0,0,16,108,148,972,de.po,,de,,german,,,de

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/da.po,119,775,764,10,54,19,143,148,972,da.po,,da,,danish,,,da

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/cy.po,106,701,818,10,54,32,217,148,972,cy.po,,cy,,welsh,,,cy

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/cs.po,132,864,824,0,0,16,108,148,972,cs.po,,cs,,czech,,,cs

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ca.po,132,864,1167,0,0,16,108,148,972,ca.po,,ca,,catalan,,,ca

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bs.po,110,730,747,10,54,28,188,148,972,bs.po,,bs,,bosnian,,,bs

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,157,1001,157,1001,br.po,,br,,breton,,,br

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,157,1001,157,1001,bo.po,,bo,,tibetan,,,bo

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bn_in.po,119,775,849,10,54,19,143,148,972,bn_in.po,,bn,in,bangla,,india,bn_in

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bn.po,119,775,852,10,54,19,143,148,972,bn.po,,bn,,bangla,,,bn

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bg.po,119,775,834,10,54,19,143,148,972,bg.po,,bg,,bulgarian,,,bg

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,157,1001,157,1001,bal.po,,bal,,baluchi,,,bal

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,157,1001,157,1001,ast.po,,ast,,asturian,,,ast

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/as.po,119,775,886,10,54,19,143,148,972,as.po,,as,,assamese,,,as

+ initscripts-10.01-2.fc30.src.rpm.stats.csv,po/ar.po,101,666,701,10,54,37,252,148,972,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_tw.po,182,383,215,0,0,0,0,182,383,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_hk.po,67,84,71,21,46,94,253,182,383,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/zh_cn.po,102,192,112,17,47,63,144,182,383,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/vi.po,129,253,325,8,30,45,100,182,383,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/uk.po,182,383,339,0,0,0,0,182,383,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/tr.po,75,93,104,20,42,87,248,182,383,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/th.po,155,309,204,3,13,24,61,182,383,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sv.po,182,383,350,0,0,0,0,182,383,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sr@latin.po,168,340,297,4,14,10,29,182,383,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sr.po,168,340,297,4,14,10,29,182,383,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sl.po,107,206,242,8,30,67,147,182,383,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sk.po,28,48,50,7,26,147,309,182,383,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/sc.po,182,383,403,0,0,0,0,182,383,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ru.po,182,383,311,0,0,0,0,182,383,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ro.po,144,288,291,5,22,33,73,182,383,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pt_br.po,182,383,390,0,0,0,0,182,383,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pt.po,73,89,91,24,54,85,240,182,383,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/pl.po,182,383,309,0,0,0,0,182,383,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/oc.po,36,36,36,0,0,146,347,182,383,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nn.po,76,94,90,24,54,82,235,182,383,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nl.po,182,383,355,0,0,0,0,182,383,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/nb.po,84,115,110,23,54,75,214,182,383,nb.po,,nb,,norwegian bokmål,,,nb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ml.po,17,17,17,1,2,164,364,182,383,ml.po,,ml,,malayalam,,,ml

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/lv.po,168,340,299,4,14,10,29,182,383,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/lt.po,123,233,219,9,34,50,116,182,383,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ko.po,50,56,62,13,33,119,294,182,383,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ja.po,65,79,65,22,49,95,255,182,383,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/it.po,168,340,346,4,14,10,29,182,383,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/is.po,182,383,372,0,0,0,0,182,383,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/id.po,182,383,395,0,0,0,0,182,383,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ia.po,135,286,280,47,97,0,0,182,383,ia.po,,ia,,interlingua,,,ia

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/hu.po,182,383,378,0,0,0,0,182,383,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/he.po,31,36,36,8,22,143,325,182,383,he.po,,he,,hebrew,,,he

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/gl.po,144,288,304,5,22,33,73,182,383,gl.po,,gl,,galician,,,gl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fr.po,182,383,356,0,0,0,0,182,383,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fi.po,158,315,254,4,14,20,54,182,383,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/fa.po,38,41,41,9,22,135,320,182,383,fa.po,,fa,,persian,,,fa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/et.po,178,377,283,4,6,0,0,182,383,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/es.po,124,255,273,12,35,46,93,182,383,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/eo.po,162,328,288,4,14,16,41,182,383,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/el.po,25,30,30,6,15,151,338,182,383,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/de.po,182,383,348,0,0,0,0,182,383,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/da.po,182,383,356,0,0,0,0,182,383,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/cy.po,0,0,0,0,0,182,383,182,383,cy.po,,cy,,welsh,,,cy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/cs.po,158,315,272,4,14,20,54,182,383,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ca.po,48,96,104,2,10,132,277,182,383,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/br.po,123,233,238,9,34,50,116,182,383,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/bg.po,27,35,31,8,24,147,324,182,383,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/be.po,182,383,319,0,0,0,0,182,383,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_15924/ar.po,70,88,86,25,55,87,240,182,383,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zu.po,111,131,135,119,316,190,539,420,986,zu.po,,zu,,zulu,,,zu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_tw.po,420,986,426,0,0,0,0,420,986,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_hk.po,377,830,377,19,66,24,90,420,986,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/zh_cn.po,414,972,414,4,12,2,2,420,986,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/yo.po,220,325,339,0,0,200,661,420,986,yo.po,,yo,,yoruba,,,yo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/xh.po,61,69,73,140,338,219,579,420,986,xh.po,,xh,,xhosa,,,xh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wo.po,397,903,927,16,58,7,25,420,986,wo.po,,wo,,wolof,,,wo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wal.po,113,140,138,13,46,294,800,420,986,wal.po,,wal,,wolaytta,,,wal

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/wa.po,409,951,919,8,30,3,5,420,986,wa.po,,wa,,walloon,,,wa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/vi.po,414,972,1163,4,12,2,2,420,986,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ve.po,186,225,225,121,374,113,387,420,986,ve.po,,ve,,venda,,,ve

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/uz.po,199,267,260,0,0,221,719,420,986,uz.po,,uz,,uzbek,,,uz

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ur.po,223,335,329,0,0,197,651,420,986,ur.po,,ur,,urdu,,,ur

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/uk.po,420,986,767,0,0,0,0,420,986,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ug.po,412,962,767,6,22,2,2,420,986,ug.po,,ug,,uyghur,,,ug

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tt@iqtelif.po,348,711,589,22,71,50,204,420,986,tt@iqtelif.po,iqtelif,tt,,tatar,,,tt@iqtelif

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tt.po,348,711,589,22,71,50,204,420,986,tt.po,,tt,,tatar,,,tt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tr.po,415,973,792,4,12,1,1,420,986,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tl.po,391,886,883,17,63,12,37,420,986,tl.po,,tl,,tagalog,,,tl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tk.po,339,717,565,23,76,58,193,420,986,tk.po,,tk,,turkmen,,,tk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tig.po,113,140,138,13,46,294,800,420,986,tig.po,,tig,,tigre,,,tig

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ti.po,133,163,160,13,46,274,777,420,986,ti.po,,ti,,tigrinya,,,ti

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/th.po,419,985,442,1,1,0,0,420,986,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/tg.po,420,986,781,0,0,0,0,420,986,tg.po,,tg,,tajik,,,tg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/te.po,408,946,931,7,25,5,15,420,986,te.po,,te,,telugu,,,te

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ta.po,395,901,725,17,59,8,26,420,986,ta.po,,ta,,tamil,,,ta

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sw.po,167,262,273,76,264,177,460,420,986,sw.po,,sw,,swahili,,,sw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sv.po,420,986,737,0,0,0,0,420,986,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sr@latin.po,415,973,792,4,12,1,1,420,986,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sr.po,415,973,792,4,12,1,1,420,986,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sq.po,396,902,912,15,54,9,30,420,986,sq.po,,sq,,albanian,,,sq

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/so.po,128,169,150,49,174,243,643,420,986,so.po,,so,,somali,,,so

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sl.po,415,973,777,4,12,1,1,420,986,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sk.po,420,986,779,0,0,0,0,420,986,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/si.po,409,951,774,8,30,3,5,420,986,si.po,,si,,sinhala,,,si

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sd.po,76,88,86,0,0,344,898,420,986,sd.po,,sd,,sindhi,,,sd

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/sc.po,420,986,1034,0,0,0,0,420,986,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/rw.po,389,881,899,20,69,11,36,420,986,rw.po,,rw,,kinyarwanda,,,rw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ru.po,420,986,763,0,0,0,0,420,986,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ro.po,420,986,818,0,0,0,0,420,986,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pt_br.po,420,986,988,0,0,0,0,420,986,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pt.po,413,965,960,7,21,0,0,420,986,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ps.po,148,176,174,2,2,270,808,420,986,ps.po,,ps,,pashto,,,ps

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pl.po,420,986,784,0,0,0,0,420,986,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pi.po,162,187,176,0,0,258,799,420,986,pi.po,,pi,,pali,,,pi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pap.po,0,0,0,182,226,238,760,420,986,pap.po,,pap,,papiamento,,,pap

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/pa.po,413,963,781,5,15,2,8,420,986,pa.po,,pa,,punjabi,,,pa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/or.po,402,929,756,13,46,5,11,420,986,or.po,,or,,odia,,,or

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/oc.po,380,851,745,15,50,25,85,420,986,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nv.po,86,112,260,0,0,334,874,420,986,nv.po,,nv,,navajo,,,nv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nso.po,185,224,229,119,363,116,399,420,986,nso.po,,nso,,northern sotho,,,nso

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nn.po,407,945,695,7,24,6,17,420,986,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nl.po,420,986,743,0,0,0,0,420,986,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ne.po,405,939,769,12,42,3,5,420,986,ne.po,,ne,,nepali,,,ne

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/nb.po,420,986,766,0,0,0,0,420,986,nb.po,,nb,,norwegian bokmål,,,nb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/na.po,151,187,178,0,0,269,799,420,986,na.po,,na,,nauru,,,na

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/my.po,186,241,194,0,0,234,745,420,986,my.po,,my,,burmese,,,my

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mt.po,206,304,299,101,288,113,394,420,986,mt.po,,mt,,maltese,,,mt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ms.po,264,454,411,22,82,134,450,420,986,ms.po,,ms,,malay,,,ms

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mr.po,409,951,936,8,30,3,5,420,986,mr.po,,mr,,marathi,,,mr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mn.po,196,267,267,97,320,127,399,420,986,mn.po,,mn,,mongolian,,,mn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ml.po,395,901,739,17,59,8,26,420,986,ml.po,,ml,,malayalam,,,ml

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mk.po,407,945,773,10,36,3,5,420,986,mk.po,,mk,,macedonian,,,mk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mi.po,210,401,336,97,337,113,248,420,986,mi.po,,mi,,maori,,,mi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/mai.po,73,88,79,0,0,347,898,420,986,mai.po,,mai,,maithili,,,mai

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lv.po,415,973,720,4,12,1,1,420,986,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lt.po,412,962,790,7,23,1,1,420,986,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/lo.po,79,96,80,0,0,341,890,420,986,lo.po,,lo,,lao,,,lo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ky.po,420,986,763,0,0,0,0,420,986,ky.po,,ky,,kyrgyz,,,ky

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kw.po,212,294,296,0,0,208,692,420,986,kw.po,,kw,,cornish,,,kw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kv.po,109,133,128,0,0,311,853,420,986,kv.po,,kv,,komi,,,kv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ku.po,408,941,822,9,34,3,11,420,986,ku.po,,ku,,kurdish,,,ku

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ko.po,420,986,706,0,0,0,0,420,986,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kn.po,388,878,722,20,71,12,37,420,986,kn.po,,kn,,kannada,,,kn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/km.po,417,971,477,3,15,0,0,420,986,km.po,,km,,khmer,,,km

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kl.po,0,0,0,96,115,324,871,420,986,kl.po,,kl,,kalaallisut,,,kl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kk.po,414,972,762,4,12,2,2,420,986,kk.po,,kk,,kazakh,,,kk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ki.po,115,145,141,0,0,305,841,420,986,ki.po,,ki,,kikuyu,,,ki

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/kab.po,139,174,170,0,0,281,812,420,986,kab.po,,kab,,kabyle,,,kab

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ka.po,395,901,710,17,59,8,26,420,986,ka.po,,ka,,georgian,,,ka

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/jam.po,192,252,243,0,0,228,734,420,986,jam.po,,jam,,jamaican creole english,,,jam

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ja.po,415,973,422,4,12,1,1,420,986,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/iu.po,26,33,29,0,0,394,953,420,986,iu.po,,iu,,inuktitut,,,iu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/it.po,420,986,928,0,0,0,0,420,986,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/is.po,420,986,707,0,0,0,0,420,986,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/io.po,211,289,266,0,0,209,697,420,986,io.po,,io,,ido,,,io

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/id.po,420,986,798,0,0,0,0,420,986,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ia.po,416,978,963,4,8,0,0,420,986,ia.po,,ia,,interlingua,,,ia

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hy.po,413,968,771,5,16,2,2,420,986,hy.po,,hy,,armenian,,,hy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hu.po,420,986,748,0,0,0,0,420,986,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ht.po,188,218,208,0,0,232,768,420,986,ht.po,,ht,,haitian creole,,,ht

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hr.po,420,986,780,0,0,0,0,420,986,hr.po,,hr,,croatian,,,hr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/hi.po,412,962,961,6,22,2,2,420,986,hi.po,,hi,,hindi,,,hi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/he.po,415,973,892,4,12,1,1,420,986,he.po,,he,,hebrew,,,he

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/haw.po,19,22,27,87,120,314,844,420,986,haw.po,,haw,,hawaiian,,,haw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ha.po,119,140,130,0,0,301,846,420,986,ha.po,,ha,,hausa,,,ha

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gv.po,192,254,377,0,0,228,732,420,986,gv.po,,gv,,manx,,,gv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gu.po,412,962,949,6,22,2,2,420,986,gu.po,,gu,,gujarati,,,gu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gn.po,210,258,258,2,4,208,724,420,986,gn.po,,gn,,guarani,,,gn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gl.po,414,972,986,5,13,1,1,420,986,gl.po,,gl,,galician,,,gl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/gez.po,113,140,113,13,46,294,800,420,986,gez.po,,gez,,geez,,,gez

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ga.po,412,962,1006,7,23,1,1,420,986,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fy.po,210,297,257,0,0,210,689,420,986,fy.po,,fy,,western frisian,,,fy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fur.po,52,57,58,0,0,368,929,420,986,fur.po,,fur,,friulian,,,fur

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/frp.po,205,276,250,0,0,215,710,420,986,frp.po,,frp,,arpitan,,,frp

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fr.po,420,986,926,0,0,0,0,420,986,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fo.po,113,147,135,13,46,294,793,420,986,fo.po,,fo,,faroese,,,fo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fi.po,409,951,701,9,31,2,4,420,986,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ff.po,82,96,86,0,0,338,890,420,986,ff.po,,ff,,fulah,,,ff

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/fa.po,420,986,795,0,0,0,0,420,986,fa.po,,fa,,persian,,,fa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/eu.po,412,962,789,7,23,1,1,420,986,eu.po,,eu,,basque,,,eu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/et.po,420,986,729,0,0,0,0,420,986,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/es.po,420,986,999,0,0,0,0,420,986,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/eo.po,415,973,727,4,12,1,1,420,986,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/el.po,420,986,974,0,0,0,0,420,986,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ee.po,0,0,0,148,190,272,796,420,986,ee.po,,ee,,ewe,,,ee

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/dz.po,402,929,692,13,46,5,11,420,986,dz.po,,dz,,dzongkha,,,dz

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/dv.po,204,277,259,0,0,216,709,420,986,dv.po,,dv,,divehi,,,dv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/de.po,420,986,750,0,0,0,0,420,986,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/da.po,414,971,782,5,14,1,1,420,986,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cy.po,420,986,857,0,0,0,0,420,986,cy.po,,cy,,welsh,,,cy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cv.po,202,278,269,0,0,218,708,420,986,cv.po,,cv,,chuvash,,,cv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/csb.po,94,108,106,0,0,326,878,420,986,csb.po,,csb,,kashubian,,,csb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/cs.po,419,985,786,1,1,0,0,420,986,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/crh.po,395,905,735,17,55,8,26,420,986,crh.po,,crh,,crimean turkish,,,crh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ckb.po,192,256,242,0,0,228,730,420,986,ckb.po,,ckb,,central kurdish,,,ckb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/chr.po,100,120,114,0,0,320,866,420,986,chr.po,,chr,,cherokee,,,chr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ch.po,23,31,25,0,0,397,955,420,986,ch.po,,ch,,chamorro,,,ch

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ce.po,202,278,269,0,0,218,708,420,986,ce.po,,ce,,chechen,,,ce

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ca.po,415,969,948,3,10,2,7,420,986,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/byn.po,113,140,138,13,46,294,800,420,986,byn.po,,byn,,blin,,,byn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bs.po,408,947,770,10,35,2,4,420,986,bs.po,,bs,,bosnian,,,bs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/br.po,230,356,334,11,42,179,588,420,986,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bn_in.po,402,929,747,13,46,5,11,420,986,bn_in.po,,bn,in,bangla,,india,bn_in

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bn.po,414,972,777,4,12,2,2,420,986,bn.po,,bn,,bangla,,,bn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bi.po,0,0,0,79,95,341,891,420,986,bi.po,,bi,,bislama,,,bi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bg.po,415,973,800,4,12,1,1,420,986,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/be.po,420,986,772,0,0,0,0,420,986,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/bar.po,153,200,188,0,0,267,786,420,986,bar.po,,bar,,bavarian,,,bar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ba.po,0,0,0,200,271,220,715,420,986,ba.po,,ba,,bashkir,,,ba

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/az.po,216,302,297,191,637,13,47,420,986,az.po,,az,,azerbaijani,,,az

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ay.po,0,0,0,68,91,352,895,420,986,ay.po,,ay,,aymara,,,ay

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ast.po,410,955,913,7,26,3,5,420,986,ast.po,,ast,,asturian,,,ast

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/as.po,402,929,748,13,46,5,11,420,986,as.po,,as,,assamese,,,as

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ar.po,412,957,790,8,29,0,0,420,986,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/an.po,0,0,0,208,288,212,698,420,986,an.po,,an,,aragonese,,,an

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/am.po,123,165,151,171,420,126,401,420,986,am.po,,am,,amharic,,,am

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ak.po,0,0,0,41,55,379,931,420,986,ak.po,,ak,,akan,,,ak

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/af.po,396,901,827,5,15,19,70,420,986,af.po,,af,,afrikaans,,,af

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ach.po,212,262,294,0,0,208,724,420,986,ach.po,,ach,,acoli,,,ach

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ace.po,0,0,0,178,228,242,758,420,986,ace.po,,ace,,achinese,,,ace

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-1/ab.po,0,0,0,48,64,372,922,420,986,ab.po,,ab,,abkhazian,,,ab

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/zh_tw.po,481,579,481,4196,6079,10,29,4687,6687,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/zh_cn.po,3019,4032,3021,1089,1647,579,1008,4687,6687,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/wa.po,58,82,82,891,1082,3738,5523,4687,6687,wa.po,,wa,,walloon,,,wa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/vi.po,3936,5393,5627,462,761,289,533,4687,6687,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ve.po,13,17,17,2124,2612,2550,4058,4687,6687,ve.po,,ve,,venda,,,ve

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/uk.po,4687,6687,5995,0,0,0,0,4687,6687,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/tr.po,71,99,99,2119,2608,2497,3980,4687,6687,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/th.po,1805,2536,2000,91,176,2791,3975,4687,6687,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sv.po,4681,6670,6490,2,4,4,13,4687,6687,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sr@latin.po,3632,4774,4788,47,95,1008,1818,4687,6687,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sr.po,3632,4774,4788,47,95,1008,1818,4687,6687,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sl.po,2179,2919,2915,2170,3178,338,590,4687,6687,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sk.po,375,556,550,55,90,4257,6041,4687,6687,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/sc.po,2910,4086,4488,0,0,1777,2601,4687,6687,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ro.po,780,941,954,555,693,3352,5053,4687,6687,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/pl.po,4620,6611,6400,0,0,67,76,4687,6687,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/oc.po,119,132,189,51,64,4517,6491,4687,6687,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/nso.po,13,17,18,2127,2615,2547,4055,4687,6687,nso.po,,nso,,northern sotho,,,nso

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/nl.po,4687,6687,6384,0,0,0,0,4687,6687,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/lv.po,54,69,61,1866,2275,2767,4343,4687,6687,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/lt.po,2054,2749,3215,497,771,2136,3167,4687,6687,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ky.po,20,30,27,0,0,4667,6657,4687,6687,ky.po,,ky,,kyrgyz,,,ky

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ko.po,61,77,68,1846,2228,2780,4382,4687,6687,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ja.po,2586,3442,2598,52,90,2049,3155,4687,6687,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/it.po,4674,6655,6904,9,19,4,13,4687,6687,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/is.po,125,180,140,0,0,4562,6507,4687,6687,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/id.po,4683,6672,6673,1,3,3,12,4687,6687,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/hu.po,1970,2677,2840,560,875,2157,3135,4687,6687,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ga.po,46,56,81,1451,1733,3190,4898,4687,6687,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/fr.po,4680,6667,6421,3,7,4,13,4687,6687,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/fi.po,191,329,336,53,78,4443,6280,4687,6687,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/eu.po,71,99,98,2114,2603,2502,3985,4687,6687,eu.po,,eu,,basque,,,eu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/et.po,32,44,39,1,1,4654,6642,4687,6687,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/es.po,120,168,166,2097,2586,2470,3933,4687,6687,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/eo.po,71,99,83,2088,2570,2528,4018,4687,6687,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/en.po,2564,3336,3336,1536,2307,587,1044,4687,6687,en.po,,en,,english,,,en

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/el.po,257,328,332,74,115,4356,6244,4687,6687,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/de.po,4687,6687,6517,0,0,0,0,4687,6687,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/da.po,4008,5489,5416,343,578,336,620,4687,6687,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/cs.po,223,317,315,2136,2639,2328,3731,4687,6687,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/crh.po,79,109,109,49,68,4559,6510,4687,6687,crh.po,,crh,,crimean turkish,,,crh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/ca.po,71,99,100,2217,2740,2399,3848,4687,6687,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/bs.po,71,99,98,2220,2745,2396,3843,4687,6687,bs.po,,bs,,bosnian,,,bs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/bg.po,377,512,500,2049,2536,2261,3639,4687,6687,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/be.po,4687,6687,6052,0,0,0,0,4687,6687,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-2/az.po,69,96,95,2217,2740,2401,3851,4687,6687,az.po,,az,,azerbaijani,,,az

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zu.po,0,0,0,10,32,21,72,31,104,zu.po,,zu,,zulu,,,zu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_tw.po,31,104,31,0,0,0,0,31,104,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_hk.po,1,2,1,14,53,16,49,31,104,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/zh_cn.po,31,104,32,0,0,0,0,31,104,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/xh.po,0,0,0,10,32,21,72,31,104,xh.po,,xh,,xhosa,,,xh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/wo.po,31,104,103,0,0,0,0,31,104,wo.po,,wo,,wolof,,,wo

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/wa.po,31,104,116,0,0,0,0,31,104,wa.po,,wa,,walloon,,,wa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/vi.po,31,104,137,0,0,0,0,31,104,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ve.po,1,2,2,10,32,20,70,31,104,ve.po,,ve,,venda,,,ve

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/uk.po,31,104,93,0,0,0,0,31,104,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ug.po,31,104,101,0,0,0,0,31,104,ug.po,,ug,,uyghur,,,ug

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tt@iqtelif.po,1,2,2,12,45,18,57,31,104,tt@iqtelif.po,iqtelif,tt,,tatar,,,tt@iqtelif

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tt.po,1,2,2,12,45,18,57,31,104,tt.po,,tt,,tatar,,,tt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tr.po,31,104,93,0,0,0,0,31,104,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tl.po,1,2,2,14,53,16,49,31,104,tl.po,,tl,,tagalog,,,tl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tk.po,0,0,0,12,45,19,59,31,104,tk.po,,tk,,turkmen,,,tk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/tig.po,1,2,2,4,15,26,87,31,104,tig.po,,tig,,tigre,,,tig

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ti.po,1,2,2,4,15,26,87,31,104,ti.po,,ti,,tigrinya,,,ti

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/th.po,31,104,42,0,0,0,0,31,104,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/te.po,31,104,104,0,0,0,0,31,104,te.po,,te,,telugu,,,te

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ta.po,31,104,98,0,0,0,0,31,104,ta.po,,ta,,tamil,,,ta

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sv.po,31,104,73,0,0,0,0,31,104,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sr@latin.po,31,104,96,0,0,0,0,31,104,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sr.po,31,104,96,0,0,0,0,31,104,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sq.po,31,104,111,0,0,0,0,31,104,sq.po,,sq,,albanian,,,sq

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sl.po,31,104,93,0,0,0,0,31,104,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sk.po,31,104,92,0,0,0,0,31,104,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/si.po,31,104,94,0,0,0,0,31,104,si.po,,si,,sinhala,,,si

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/sc.po,31,104,122,0,0,0,0,31,104,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/rw.po,2,5,6,13,50,16,49,31,104,rw.po,,rw,,kinyarwanda,,,rw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ru.po,31,104,92,0,0,0,0,31,104,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ro.po,31,104,103,0,0,0,0,31,104,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pt_br.po,31,104,114,0,0,0,0,31,104,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pt.po,31,104,116,0,0,0,0,31,104,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ps.po,0,0,0,0,0,31,104,31,104,ps.po,,ps,,pashto,,,ps

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pl.po,31,104,102,0,0,0,0,31,104,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/pa.po,31,104,88,0,0,0,0,31,104,pa.po,,pa,,punjabi,,,pa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/or.po,31,104,98,0,0,0,0,31,104,or.po,,or,,odia,,,or

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/oc.po,13,38,22,0,0,18,66,31,104,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nso.po,1,2,2,10,32,20,70,31,104,nso.po,,nso,,northern sotho,,,nso

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nn.po,31,104,86,0,0,0,0,31,104,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nl.po,31,104,88,0,0,0,0,31,104,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ne.po,31,104,93,0,0,0,0,31,104,ne.po,,ne,,nepali,,,ne

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/nb.po,31,104,87,0,0,0,0,31,104,nb.po,,nb,,norwegian bokmål,,,nb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mt.po,0,0,0,13,42,18,62,31,104,mt.po,,mt,,maltese,,,mt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ms.po,1,2,2,10,31,20,71,31,104,ms.po,,ms,,malay,,,ms

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mr.po,31,104,104,0,0,0,0,31,104,mr.po,,mr,,marathi,,,mr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mn.po,0,0,0,8,27,23,77,31,104,mn.po,,mn,,mongolian,,,mn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ml.po,31,104,90,0,0,0,0,31,104,ml.po,,ml,,malayalam,,,ml

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mk.po,31,104,99,0,0,0,0,31,104,mk.po,,mk,,macedonian,,,mk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/mi.po,0,0,0,1,4,30,100,31,104,mi.po,,mi,,maori,,,mi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/lv.po,31,104,88,0,0,0,0,31,104,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/lt.po,31,104,95,0,0,0,0,31,104,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ku.po,31,104,109,0,0,0,0,31,104,ku.po,,ku,,kurdish,,,ku

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ko.po,31,104,76,0,0,0,0,31,104,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/kn.po,0,0,0,15,55,16,49,31,104,kn.po,,kn,,kannada,,,kn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/km.po,31,104,46,0,0,0,0,31,104,km.po,,km,,khmer,,,km

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/kk.po,31,104,89,0,0,0,0,31,104,kk.po,,kk,,kazakh,,,kk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ka.po,31,104,95,0,0,0,0,31,104,ka.po,,ka,,georgian,,,ka

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ja.po,31,104,36,0,0,0,0,31,104,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/it.po,31,104,111,0,0,0,0,31,104,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/is.po,31,104,74,0,0,0,0,31,104,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/id.po,31,104,89,0,0,0,0,31,104,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ia.po,31,104,113,0,0,0,0,31,104,ia.po,,ia,,interlingua,,,ia

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hy.po,31,104,94,0,0,0,0,31,104,hy.po,,hy,,armenian,,,hy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hu.po,31,104,79,0,0,0,0,31,104,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hr.po,31,104,95,0,0,0,0,31,104,hr.po,,hr,,croatian,,,hr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/hi.po,31,104,103,0,0,0,0,31,104,hi.po,,hi,,hindi,,,hi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/he.po,31,104,100,0,0,0,0,31,104,he.po,,he,,hebrew,,,he

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/haw.po,0,0,0,0,0,31,104,31,104,haw.po,,haw,,hawaiian,,,haw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gu.po,31,104,101,0,0,0,0,31,104,gu.po,,gu,,gujarati,,,gu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gl.po,31,104,117,0,0,0,0,31,104,gl.po,,gl,,galician,,,gl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/gez.po,1,2,1,4,15,26,87,31,104,gez.po,,gez,,geez,,,gez

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ga.po,31,104,111,0,0,0,0,31,104,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fr.po,31,104,106,0,0,0,0,31,104,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fo.po,0,0,0,6,16,25,88,31,104,fo.po,,fo,,faroese,,,fo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fi.po,31,104,75,0,0,0,0,31,104,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/fa.po,31,104,109,0,0,0,0,31,104,fa.po,,fa,,persian,,,fa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/eu.po,31,104,93,0,0,0,0,31,104,eu.po,,eu,,basque,,,eu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/et.po,31,104,85,0,0,0,0,31,104,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/es.po,31,104,121,0,0,0,0,31,104,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/eo.po,31,104,95,0,0,0,0,31,104,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/el.po,31,104,107,0,0,0,0,31,104,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/dz.po,31,104,74,0,0,0,0,31,104,dz.po,,dz,,dzongkha,,,dz

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/de.po,31,104,79,0,0,0,0,31,104,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/da.po,31,104,88,0,0,0,0,31,104,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/cy.po,31,104,101,0,0,0,0,31,104,cy.po,,cy,,welsh,,,cy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/cs.po,31,104,97,0,0,0,0,31,104,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/crh.po,31,104,93,0,0,0,0,31,104,crh.po,,crh,,crimean turkish,,,crh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ca.po,31,104,115,0,0,0,0,31,104,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/byn.po,1,2,2,4,15,26,87,31,104,byn.po,,byn,,blin,,,byn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bs.po,31,104,96,0,0,0,0,31,104,bs.po,,bs,,bosnian,,,bs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/br.po,21,82,81,0,0,10,22,31,104,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bn_in.po,31,104,96,0,0,0,0,31,104,bn_in.po,,bn,in,bangla,,india,bn_in

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bn.po,31,104,96,0,0,0,0,31,104,bn.po,,bn,,bangla,,,bn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/bg.po,31,104,93,0,0,0,0,31,104,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/be.po,31,104,94,0,0,0,0,31,104,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/az.po,1,2,2,14,53,16,49,31,104,az.po,,az,,azerbaijani,,,az

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ast.po,31,104,98,0,0,0,0,31,104,ast.po,,ast,,asturian,,,ast

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/as.po,31,104,96,0,0,0,0,31,104,as.po,,as,,assamese,,,as

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/ar.po,31,104,91,0,0,0,0,31,104,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/am.po,1,2,2,9,40,21,62,31,104,am.po,,am,,amharic,,,am

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_3166-3/af.po,9,27,18,1,2,21,75,31,104,af.po,,af,,afrikaans,,,af

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_tw.po,170,348,179,0,0,0,0,170,348,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_hk.po,95,198,95,37,77,38,73,170,348,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/zh_cn.po,145,259,151,17,65,8,24,170,348,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/vi.po,145,259,393,17,65,8,24,170,348,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/uk.po,170,348,333,0,0,0,0,170,348,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/tr.po,96,199,202,39,95,35,54,170,348,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/th.po,145,259,247,17,65,8,24,170,348,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sv.po,170,348,302,0,0,0,0,170,348,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sr@latin.po,145,259,245,17,65,8,24,170,348,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sr.po,145,259,245,17,65,8,24,170,348,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sl.po,145,259,257,17,65,8,24,170,348,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sk.po,87,184,179,33,56,50,108,170,348,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/sc.po,170,348,408,0,0,0,0,170,348,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/rw.po,85,176,241,49,117,36,55,170,348,rw.po,,rw,,kinyarwanda,,,rw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ru.po,170,348,339,0,0,0,0,170,348,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ro.po,143,254,255,16,56,11,38,170,348,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pt_br.po,170,348,397,0,0,0,0,170,348,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pt.po,94,196,233,41,98,35,54,170,348,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/pl.po,170,348,318,0,0,0,0,170,348,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/oc.po,4,5,5,0,0,166,343,170,348,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nn.po,143,255,279,19,69,8,24,170,348,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nl.po,170,348,370,0,0,0,0,170,348,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/nb.po,158,297,319,12,51,0,0,170,348,nb.po,,nb,,norwegian bokmål,,,nb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/mn.po,84,174,174,49,118,37,56,170,348,mn.po,,mn,,mongolian,,,mn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/lv.po,145,259,255,17,65,8,24,170,348,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/lt.po,143,255,254,19,69,8,24,170,348,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ko.po,170,348,389,0,0,0,0,170,348,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ja.po,170,348,176,0,0,0,0,170,348,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/it.po,170,348,356,0,0,0,0,170,348,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/is.po,170,348,309,0,0,0,0,170,348,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/id.po,170,348,345,0,0,0,0,170,348,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/hu.po,170,348,337,0,0,0,0,170,348,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/hr.po,170,348,344,0,0,0,0,170,348,hr.po,,hr,,croatian,,,hr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/gl.po,46,99,126,36,83,88,166,170,348,gl.po,,gl,,galician,,,gl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ga.po,73,154,176,18,32,79,162,170,348,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/fr.po,170,348,376,0,0,0,0,170,348,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/fi.po,145,259,256,17,65,8,24,170,348,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/et.po,170,348,318,0,0,0,0,170,348,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/es.po,145,259,295,17,65,8,24,170,348,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/el.po,155,280,280,15,68,0,0,170,348,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/de.po,170,348,280,0,0,0,0,170,348,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/da.po,145,259,236,17,65,8,24,170,348,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/cs.po,145,259,249,17,65,8,24,170,348,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/ca.po,167,326,371,0,0,3,22,170,348,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/br.po,102,181,181,11,23,57,144,170,348,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_4217/be.po,170,348,326,0,0,0,0,170,348,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zu.po,44,44,46,134,191,309,536,487,771,zu.po,,zu,,zulu,,,zu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_tw.po,487,771,517,0,0,0,0,487,771,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_hk.po,424,602,427,47,121,16,48,487,771,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/zh_cn.po,478,747,483,5,17,4,7,487,771,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/xh.po,49,49,49,137,205,301,517,487,771,xh.po,,xh,,xhosa,,,xh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/wa.po,478,747,721,5,17,4,7,487,771,wa.po,,wa,,walloon,,,wa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/vi.po,480,751,1392,5,17,2,3,487,771,vi.po,,vi,,vietnamese,,,vi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ve.po,37,37,37,255,337,195,397,487,771,ve.po,,ve,,venda,,,ve

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/uk.po,487,771,718,0,0,0,0,487,771,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tt@iqtelif.po,148,155,155,66,140,273,476,487,771,tt@iqtelif.po,iqtelif,tt,,tatar,,,tt@iqtelif

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tt.po,148,155,155,66,140,273,476,487,771,tt.po,,tt,,tatar,,,tt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tr.po,480,751,873,5,17,2,3,487,771,tr.po,,tr,,turkish,,,tr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/tig.po,119,122,119,49,98,319,551,487,771,tig.po,,tig,,tigre,,,tig

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ti.po,119,122,119,49,98,319,551,487,771,ti.po,,ti,,tigrinya,,,ti

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/th.po,269,435,327,3,11,215,325,487,771,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/te.po,475,738,737,7,21,5,12,487,771,te.po,,te,,telugu,,,te

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ta.po,475,738,716,7,21,5,12,487,771,ta.po,,ta,,tamil,,,ta

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sv.po,487,771,627,0,0,0,0,487,771,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sr@latin.po,487,771,750,0,0,0,0,487,771,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sr.po,487,771,750,0,0,0,0,487,771,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sl.po,480,751,670,5,17,2,3,487,771,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sk.po,485,768,752,1,2,1,1,487,771,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/sc.po,487,771,803,0,0,0,0,487,771,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/rw.po,356,420,430,95,231,36,120,487,771,rw.po,,rw,,kinyarwanda,,,rw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ru.po,480,751,686,5,17,2,3,487,771,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ro.po,478,747,741,5,17,4,7,487,771,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pt_br.po,487,771,755,0,0,0,0,487,771,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pt.po,272,343,343,139,224,76,204,487,771,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ps.po,29,29,29,33,63,425,679,487,771,ps.po,,ps,,pashto,,,ps

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pl.po,487,771,714,0,0,0,0,487,771,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/pa.po,487,771,770,0,0,0,0,487,771,pa.po,,pa,,punjabi,,,pa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/or.po,478,747,749,5,17,4,7,487,771,or.po,,or,,odia,,,or

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/oc.po,159,178,181,26,54,302,539,487,771,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nso.po,55,56,60,99,149,333,566,487,771,nso.po,,nso,,northern sotho,,,nso

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nn.po,217,321,251,85,190,185,260,487,771,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nl.po,487,771,721,0,0,0,0,487,771,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/nb.po,155,180,170,108,160,224,431,487,771,nb.po,,nb,,norwegian bokmål,,,nb

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mt.po,240,271,272,169,279,78,221,487,771,mt.po,,mt,,maltese,,,mt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ms.po,45,45,47,138,194,304,532,487,771,ms.po,,ms,,malay,,,ms

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mr.po,478,747,752,5,17,4,7,487,771,mr.po,,mr,,marathi,,,mr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mn.po,135,141,142,173,264,179,366,487,771,mn.po,,mn,,mongolian,,,mn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ml.po,475,738,719,7,21,5,12,487,771,ml.po,,ml,,malayalam,,,ml

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mk.po,35,35,35,143,200,309,536,487,771,mk.po,,mk,,macedonian,,,mk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/mi.po,24,24,51,154,211,309,536,487,771,mi.po,,mi,,maori,,,mi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/lv.po,480,751,593,5,17,2,3,487,771,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/lt.po,471,727,677,7,21,9,23,487,771,lt.po,,lt,,lithuanian,,,lt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/kok.po,118,123,120,54,111,315,537,487,771,kok.po,,kok,,konkani,,,kok

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ko.po,487,771,607,0,0,0,0,487,771,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/kn.po,475,738,738,7,21,5,12,487,771,kn.po,,kn,,kannada,,,kn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ja.po,428,609,523,45,117,14,45,487,771,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/it.po,487,771,776,0,0,0,0,487,771,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/is.po,487,771,744,0,0,0,0,487,771,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/id.po,487,771,788,0,0,0,0,487,771,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hu.po,487,771,716,0,0,0,0,487,771,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hr.po,234,390,350,4,15,249,366,487,771,hr.po,,hr,,croatian,,,hr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/hi.po,118,121,120,49,98,320,552,487,771,hi.po,,hi,,hindi,,,hi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/he.po,49,49,49,132,189,306,533,487,771,he.po,,he,,hebrew,,,he

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gu.po,478,747,752,5,17,4,7,487,771,gu.po,,gu,,gujarati,,,gu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gl.po,478,747,783,5,17,4,7,487,771,gl.po,,gl,,galician,,,gl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/gez.po,119,122,119,49,98,319,551,487,771,gez.po,,gez,,geez,,,gez

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ga.po,283,464,421,3,11,201,296,487,771,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fr.po,487,771,718,0,0,0,0,487,771,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fi.po,478,747,551,5,17,4,7,487,771,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/fa.po,298,349,349,84,209,105,213,487,771,fa.po,,fa,,persian,,,fa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/eu.po,361,539,486,38,95,88,137,487,771,eu.po,,eu,,basque,,,eu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/et.po,487,771,582,0,0,0,0,487,771,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/es.po,394,520,538,58,145,35,106,487,771,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/eo.po,480,751,645,5,17,2,3,487,771,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/el.po,130,212,209,45,99,312,460,487,771,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/de.po,487,771,639,0,0,0,0,487,771,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/da.po,480,751,679,5,17,2,3,487,771,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/cy.po,115,116,115,176,257,196,398,487,771,cy.po,,cy,,welsh,,,cy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/cs.po,487,771,746,0,0,0,0,487,771,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/crh.po,427,603,718,39,95,21,73,487,771,crh.po,,crh,,crimean turkish,,,crh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ca.po,487,771,790,0,0,0,0,487,771,ca.po,,ca,,catalan,,,ca

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/byn.po,119,122,119,49,98,319,551,487,771,byn.po,,byn,,blin,,,byn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bs.po,47,47,47,117,159,323,565,487,771,bs.po,,bs,,bosnian,,,bs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/br.po,176,238,218,38,93,273,440,487,771,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bn.po,479,748,747,5,17,3,6,487,771,bn.po,,bn,,bangla,,,bn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/bg.po,255,417,348,4,15,228,339,487,771,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/be.po,487,771,635,0,0,0,0,487,771,be.po,,be,,belarusian,,,be

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/az.po,24,24,24,161,217,302,530,487,771,az.po,,az,,azerbaijani,,,az

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ast.po,477,745,750,6,19,4,7,487,771,ast.po,,ast,,asturian,,,ast

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/as.po,477,745,748,6,19,4,7,487,771,as.po,,as,,assamese,,,as

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/ar.po,99,111,115,126,181,262,479,487,771,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/am.po,118,121,118,51,100,318,550,487,771,am.po,,am,,amharic,,,am

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-2/af.po,157,185,166,146,211,184,375,487,771,af.po,,af,,afrikaans,,,af

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zu.po,49,49,51,2873,3575,6323,10224,9245,13848,zu.po,,zu,,zulu,,,zu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zh_tw.po,633,1195,704,2641,3206,5971,9447,9245,13848,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/zh_cn.po,300,409,315,2955,3791,5990,9648,9245,13848,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/xh.po,52,52,52,2784,3470,6409,10326,9245,13848,xh.po,,xh,,xhosa,,,xh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/wa.po,322,357,366,4066,5629,4857,7862,9245,13848,wa.po,,wa,,walloon,,,wa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/vi.po,339,378,789,4885,6557,4021,6913,9245,13848,vi.po,,vi,,vietnamese,,,vi

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/uk.po,9245,13848,13127,0,0,0,0,9245,13848,uk.po,,uk,,ukrainian,,,uk

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

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/tr.po,7402,10024,10142,660,1289,1183,2535,9245,13848,tr.po,,tr,,turkish,,,tr

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

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/th.po,717,1493,872,192,415,8336,11940,9245,13848,th.po,,th,,thai,,,th

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ta.po,7371,9970,9855,1323,2805,551,1073,9245,13848,ta.po,,ta,,tamil,,,ta

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sv.po,9245,13848,13582,0,0,0,0,9245,13848,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sr@latin.po,332,373,374,4923,6621,3990,6854,9245,13848,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sr.po,332,373,374,4923,6621,3990,6854,9245,13848,sr.po,,sr,,serbian,,,sr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sl.po,322,362,350,4071,5656,4852,7830,9245,13848,sl.po,,sl,,slovenian,,,sl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sk.po,256,322,327,2873,3574,6116,9952,9245,13848,sk.po,,sk,,slovak,,,sk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/sc.po,479,590,616,0,0,8766,13258,9245,13848,sc.po,,sc,,sardinian,,,sc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/rw.po,328,359,361,4920,6621,3997,6868,9245,13848,rw.po,,rw,,kinyarwanda,,,rw

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ru.po,351,401,392,4715,6213,4179,7234,9245,13848,ru.po,,ru,,russian,,,ru

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ro.po,247,308,315,3043,3762,5955,9778,9245,13848,ro.po,,ro,,romanian,,,ro

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pt_br.po,427,515,523,2057,3005,6761,10328,9245,13848,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pt.po,237,263,263,4850,6368,4158,7217,9245,13848,pt.po,,pt,,portuguese,,,pt

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ps.po,29,29,29,1041,1368,8175,12451,9245,13848,ps.po,,ps,,pashto,,,ps

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pl.po,2639,4164,3978,0,0,6606,9684,9245,13848,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/pa.po,7377,9980,9977,1321,2800,547,1068,9245,13848,pa.po,,pa,,punjabi,,,pa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/or.po,3502,5403,5397,1003,2182,4740,6263,9245,13848,or.po,,or,,odia,,,or

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/oc.po,78,86,88,130,247,9037,13515,9245,13848,oc.po,,oc,,occitan,,,oc

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nso.po,59,60,62,2828,3687,6358,10101,9245,13848,nso.po,,nso,,northern sotho,,,nso

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nn.po,175,204,193,3660,5191,5410,8453,9245,13848,nn.po,,nn,,norwegian nynorsk,,,nn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nl.po,1629,2248,2163,3812,5050,3804,6550,9245,13848,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/nb.po,133,139,140,3914,5020,5198,8689,9245,13848,nb.po,,nb,,norwegian bokmål,,,nb

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ms.po,49,49,50,2877,3561,6319,10238,9245,13848,ms.po,,ms,,malay,,,ms

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mr.po,7442,10085,10090,1264,2710,539,1053,9245,13848,mr.po,,mr,,marathi,,,mr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mn.po,140,147,148,4359,5651,4746,8050,9245,13848,mn.po,,mn,,mongolian,,,mn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mk.po,39,39,39,2883,3585,6323,10224,9245,13848,mk.po,,mk,,macedonian,,,mk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/mi.po,28,28,61,2894,3596,6323,10224,9245,13848,mi.po,,mi,,maori,,,mi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/lv.po,255,318,289,2874,3578,6116,9952,9245,13848,lv.po,,lv,,latvian,,,lv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/lt.po,638,1096,1112,589,1228,8018,11524,9245,13848,lt.po,,lt,,lithuanian,,,lt

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ko.po,360,437,435,2911,3612,5974,9799,9245,13848,ko.po,,ko,,korean,,,ko

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/kn.po,6608,9115,9134,1290,2747,1347,1986,9245,13848,kn.po,,kn,,kannada,,,kn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ja.po,338,375,360,4885,6557,4022,6916,9245,13848,ja.po,,ja,,japanese,,,ja

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/it.po,8606,12469,12738,448,1004,191,375,9245,13848,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/is.po,3521,4877,4485,1343,1591,4381,7380,9245,13848,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/id.po,7135,9500,9566,430,959,1680,3389,9245,13848,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hu.po,979,1111,1079,4273,5880,3993,6857,9245,13848,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hr.po,538,1113,999,42,100,8665,12635,9245,13848,hr.po,,hr,,croatian,,,hr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/hi.po,118,121,120,2943,3907,6184,9820,9245,13848,hi.po,,hi,,hindi,,,hi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/he.po,53,53,53,2872,3574,6320,10221,9245,13848,he.po,,he,,hebrew,,,he

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/gu.po,888,1039,1041,377,728,7980,12081,9245,13848,gu.po,,gu,,gujarati,,,gu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/gl.po,7470,10120,10525,1249,2690,526,1038,9245,13848,gl.po,,gl,,galician,,,gl

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ga.po,202,233,233,3741,5221,5302,8394,9245,13848,ga.po,,ga,,irish,,,ga

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fr.po,9245,13848,14903,0,0,0,0,9245,13848,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fi.po,338,375,348,4872,6543,4035,6930,9245,13848,fi.po,,fi,,finnish,,,fi

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/fa.po,279,306,311,4607,6262,4359,7280,9245,13848,fa.po,,fa,,persian,,,fa

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/eu.po,397,548,505,2757,3453,6091,9847,9245,13848,eu.po,,eu,,basque,,,eu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/et.po,613,757,645,2120,2652,6512,10439,9245,13848,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/es.po,327,362,372,4906,6607,4012,6879,9245,13848,es.po,,es,,spanish,,,es

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/eo.po,339,378,371,4898,6570,4008,6900,9245,13848,eo.po,,eo,,esperanto,,,eo

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/el.po,845,1722,1734,443,866,7957,11260,9245,13848,el.po,,el,,greek,,,el

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/de.po,9007,13484,12160,193,311,45,53,9245,13848,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/da.po,429,663,559,4854,6387,3962,6798,9245,13848,da.po,,da,,danish,,,da

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/cy.po,120,120,120,3986,4950,5139,8778,9245,13848,cy.po,,cy,,welsh,,,cy

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/cs.po,335,372,375,3410,4866,5500,8610,9245,13848,cs.po,,cs,,czech,,,cs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/crh.po,6573,8061,8159,1097,2200,1575,3587,9245,13848,crh.po,,crh,,crimean turkish,,,crh

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ca.po,587,831,869,3730,4786,4928,8231,9245,13848,ca.po,,ca,,catalan,,,ca

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bs.po,51,51,51,2644,3221,6550,10576,9245,13848,bs.po,,bs,,bosnian,,,bs

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/br.po,809,1040,1063,490,983,7946,11825,9245,13848,br.po,,br,,breton,,,br

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bn.po,1543,2028,2030,4009,5565,3693,6255,9245,13848,bn.po,,bn,,bangla,,,bn

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/bg.po,395,680,567,16,31,8834,13137,9245,13848,bg.po,,bg,,bulgarian,,,bg

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/az.po,25,25,25,3047,3764,6173,10059,9245,13848,az.po,,az,,azerbaijani,,,az

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ast.po,7590,10295,10309,1160,2549,495,1004,9245,13848,ast.po,,ast,,asturian,,,ast

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/ar.po,92,99,101,3020,3755,6133,9994,9245,13848,ar.po,,ar,,arabic,,,ar

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/am.po,119,122,119,2924,3859,6202,9867,9245,13848,am.po,,am,,amharic,,,am

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-3/af.po,128,132,131,4111,5176,5006,8540,9245,13848,af.po,,af,,afrikaans,,,af

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/uk.po,115,258,249,0,0,0,0,115,258,uk.po,,uk,,ukrainian,,,uk

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sv.po,115,258,203,0,0,0,0,115,258,sv.po,,sv,,swedish,,,sv

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sr@latin.po,44,98,92,0,0,71,160,115,258,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/sr.po,44,98,92,0,0,71,160,115,258,sr.po,,sr,,serbian,,,sr

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

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/pl.po,113,254,241,0,0,2,4,115,258,pl.po,,pl,,polish,,,pl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/nl.po,115,258,231,0,0,0,0,115,258,nl.po,,nl,,dutch,,,nl

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/it.po,101,221,222,0,0,14,37,115,258,it.po,,it,,italian,,,it

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/is.po,115,258,243,0,0,0,0,115,258,is.po,,is,,icelandic,,,is

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/id.po,60,128,129,0,0,55,130,115,258,id.po,,id,,indonesian,,,id

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/hu.po,112,252,242,0,0,3,6,115,258,hu.po,,hu,,hungarian,,,hu

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/fr.po,115,258,260,0,0,0,0,115,258,fr.po,,fr,,french,,,fr

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/et.po,61,130,126,0,0,54,128,115,258,et.po,,et,,estonian,,,et

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/de.po,115,258,197,0,0,0,0,115,258,de.po,,de,,german,,,de

+ iso-codes-4.2-2.fc30.src.rpm.stats.csv,iso_639-5/be.po,115,258,246,0,0,0,0,115,258,be.po,,be,,belarusian,,,be

+ jbigkit-2.1-16.fc30.src.rpm.stats.csv,libjbig/po/ru.po,9,44,34,0,0,0,0,9,44,ru.po,,ru,,russian,,,ru

+ jbigkit-2.1-16.fc30.src.rpm.stats.csv,libjbig/po/de.po,9,44,41,0,0,0,0,9,44,de.po,,de,,german,,,de

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ne.po,36,239,219,3,14,5,50,44,303,ne.po,,ne,,nepali,,,ne

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ro.po,44,303,310,0,0,0,0,44,303,ro.po,,ro,,romanian,,,ro

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,27,226,184,0,0,0,0,27,226,bn_in.po,,bn,in,bangla,,india,bn_in

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/eo.po,27,221,205,6,33,11,49,44,303,eo.po,,eo,,esperanto,,,eo

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sl.po,44,303,275,0,0,0,0,44,303,sl.po,,sl,,slovenian,,,sl

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sv.po,44,303,259,0,0,0,0,44,303,sv.po,,sv,,swedish,,,sv

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/it.po,44,303,321,0,0,0,0,44,303,it.po,,it,,italian,,,it

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bg.po,27,226,213,0,0,0,0,27,226,bg.po,,bg,,bulgarian,,,bg

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ca.po,44,303,405,0,0,0,0,44,303,ca.po,,ca,,catalan,,,ca

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sr.po,44,303,269,0,0,0,0,44,303,sr.po,,sr,,serbian,,,sr

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/lv.po,44,303,250,0,0,0,0,44,303,lv.po,,lv,,latvian,,,lv

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pt.po,44,303,320,0,0,0,0,44,303,pt.po,,pt,,portuguese,,,pt

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,44,303,269,0,0,0,0,44,303,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/lt.po,44,303,246,0,0,0,0,44,303,lt.po,,lt,,lithuanian,,,lt

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/et.po,27,226,173,0,0,0,0,27,226,et.po,,et,,estonian,,,et

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/gl.po,44,303,340,0,0,0,0,44,303,gl.po,,gl,,galician,,,gl

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/fr.po,44,303,345,0,0,0,0,44,303,fr.po,,fr,,french,,,fr

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/or.po,27,226,200,0,0,0,0,27,226,or.po,,or,,odia,,,or

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/tr.po,44,303,250,0,0,0,0,44,303,tr.po,,tr,,turkish,,,tr

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hr.po,44,303,263,0,0,0,0,44,303,hr.po,,hr,,croatian,,,hr

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,44,303,80,0,0,0,0,44,303,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/de.po,44,303,290,0,0,0,0,44,303,de.po,,de,,german,,,de

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/id.po,44,303,286,0,0,0,0,44,303,id.po,,id,,indonesian,,,id

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/fur.po,44,303,352,0,0,0,0,44,303,fur.po,,fur,,friulian,,,fur

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,44,303,324,0,0,0,0,44,303,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ja.po,27,226,72,0,0,0,0,27,226,ja.po,,ja,,japanese,,,ja

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ru.po,44,303,267,0,0,0,0,44,303,ru.po,,ru,,russian,,,ru

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/nl.po,44,303,291,0,0,0,0,44,303,nl.po,,nl,,dutch,,,nl

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pa.po,27,226,207,0,0,0,0,27,226,pa.po,,pa,,punjabi,,,pa

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/eu.po,44,303,270,0,0,0,0,44,303,eu.po,,eu,,basque,,,eu

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/vi.po,29,244,264,0,0,1,10,30,254,vi.po,,vi,,vietnamese,,,vi

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,44,303,403,0,0,0,0,44,303,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/pl.po,44,303,270,0,0,0,0,44,303,pl.po,,pl,,polish,,,pl

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ml.po,27,226,165,0,0,0,0,27,226,ml.po,,ml,,malayalam,,,ml

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/bs.po,44,303,270,0,0,0,0,44,303,bs.po,,bs,,bosnian,,,bs

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,44,303,95,0,0,0,0,44,303,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/oc.po,44,303,351,0,0,0,0,44,303,oc.po,,oc,,occitan,,,oc

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/cs.po,44,303,279,0,0,0,0,44,303,cs.po,,cs,,czech,,,cs

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/as.po,44,303,276,0,0,0,0,44,303,as.po,,as,,assamese,,,as

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/tg.po,44,303,292,0,0,0,0,44,303,tg.po,,tg,,tajik,,,tg

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/sk.po,44,303,297,0,0,0,0,44,303,sk.po,,sk,,slovak,,,sk

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/te.po,27,226,191,0,0,0,0,27,226,te.po,,te,,telugu,,,te

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hi.po,27,226,234,0,0,0,0,27,226,hi.po,,hi,,hindi,,,hi

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,44,303,80,0,0,0,0,44,303,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ko.po,44,303,237,0,0,0,0,44,303,ko.po,,ko,,korean,,,ko

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ug.po,25,208,167,0,0,2,18,27,226,ug.po,,ug,,uyghur,,,ug

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/hu.po,44,303,268,0,0,0,0,44,303,hu.po,,hu,,hungarian,,,hu

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/da.po,44,303,272,0,0,0,0,44,303,da.po,,da,,danish,,,da

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/es.po,44,303,351,0,0,0,0,44,303,es.po,,es,,spanish,,,es

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/he.po,44,303,303,0,0,0,0,44,303,he.po,,he,,hebrew,,,he

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/nb.po,26,159,145,0,0,18,144,44,303,nb.po,,nb,,norwegian bokmål,,,nb

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/el.po,44,303,302,0,0,0,0,44,303,el.po,,el,,greek,,,el

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,44,303,303,0,0,0,0,44,303,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/ky.po,27,226,167,0,0,0,0,27,226,ky.po,,ky,,kyrgyz,,,ky

+ json-glib-1.4.4-2.fc30.src.rpm.stats.csv,po/uk.po,44,303,272,0,0,0,0,44,303,uk.po,,uk,,ukrainian,,,uk

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/nl.po,65,401,391,2,11,4,28,71,440,nl.po,,nl,,dutch,,,nl

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/zh_tw.po,64,396,168,2,11,5,33,71,440,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/pl.po,65,401,419,2,11,4,28,71,440,pl.po,,pl,,polish,,,pl

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/sv.po,71,440,423,0,0,0,0,71,440,sv.po,,sv,,swedish,,,sv

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/pt_br.po,65,401,427,2,11,4,28,71,440,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/rw.po,1,2,2,59,394,11,44,71,440,rw.po,,rw,,kinyarwanda,,,rw

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/fr.po,65,401,460,2,11,4,28,71,440,fr.po,,fr,,french,,,fr

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/tr.po,64,395,347,3,17,4,28,71,440,tr.po,,tr,,turkish,,,tr

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/hu.po,65,401,414,2,11,4,28,71,440,hu.po,,hu,,hungarian,,,hu

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/es.po,71,440,568,0,0,0,0,71,440,es.po,,es,,spanish,,,es

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/ru.po,17,83,85,22,99,32,258,71,440,ru.po,,ru,,russian,,,ru

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/id.po,65,401,398,2,11,4,28,71,440,id.po,,id,,indonesian,,,id

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/ro.po,65,401,416,2,11,4,28,71,440,ro.po,,ro,,romanian,,,ro

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/it.po,71,440,492,0,0,0,0,71,440,it.po,,it,,italian,,,it

+ jwhois-4.0-56.fc30.src.rpm.stats.csv,po/vi.po,71,440,666,0,0,0,0,71,440,vi.po,,vi,,vietnamese,,,vi

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/zh_cn.po,266,2051,1075,8,372,1,7,275,2430,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/uk.po,275,2430,2423,0,0,0,0,275,2430,uk.po,,uk,,ukrainian,,,uk

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/nl.po,275,2430,2442,0,0,0,0,275,2430,nl.po,,nl,,dutch,,,nl

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/da.po,207,1512,1431,53,752,15,166,275,2430,da.po,,da,,danish,,,da

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/el.po,266,2051,2213,8,372,1,7,275,2430,el.po,,el,,greek,,,el

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/ru.po,275,2430,2397,0,0,0,0,275,2430,ru.po,,ru,,russian,,,ru

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/eo.po,266,2051,2111,8,372,1,7,275,2430,eo.po,,eo,,esperanto,,,eo

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/cs.po,275,2430,2346,0,0,0,0,275,2430,cs.po,,cs,,czech,,,cs

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/sv.po,275,2430,2332,0,0,0,0,275,2430,sv.po,,sv,,swedish,,,sv

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/it.po,207,1512,1816,53,752,15,166,275,2430,it.po,,it,,italian,,,it

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/ro.po,162,1063,1180,63,657,50,710,275,2430,ro.po,,ro,,romanian,,,ro

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/vi.po,275,2430,3354,0,0,0,0,275,2430,vi.po,,vi,,vietnamese,,,vi

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/fr.po,219,1736,2139,49,642,7,52,275,2430,fr.po,,fr,,french,,,fr

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/id.po,181,1341,1370,68,678,26,411,275,2430,id.po,,id,,indonesian,,,id

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/de.po,275,2430,2500,0,0,0,0,275,2430,de.po,,de,,german,,,de

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/pl.po,275,2430,2424,0,0,0,0,275,2430,pl.po,,pl,,polish,,,pl

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/es.po,169,1259,1653,59,548,47,623,275,2430,es.po,,es,,spanish,,,es

+ kbd-2.0.4-13.fc30.src.rpm.stats.csv,po/tr.po,164,1075,1005,61,645,50,710,275,2430,tr.po,,tr,,turkish,,,tr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/zh_tw.po,12,83,26,0,0,0,0,12,83,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/zh_cn.po,12,83,20,0,0,0,0,12,83,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,12,83,12,83,vi.po,,vi,,vietnamese,,,vi

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/uk.po,2,51,34,2,8,8,24,12,83,uk.po,,uk,,ukrainian,,,uk

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,12,83,12,83,tr.po,,tr,,turkish,,,tr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/te.po,12,83,50,0,0,0,0,12,83,te.po,,te,,telugu,,,te

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

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ta.po,12,83,66,0,0,0,0,12,83,ta.po,,ta,,tamil,,,ta

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sv.po,2,51,43,2,8,8,24,12,83,sv.po,,sv,,swedish,,,sv

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr@latin.po,2,51,43,2,8,8,24,12,83,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr@latn.po,2,51,43,2,8,8,24,12,83,sr@latn.po,latn,sr,,serbian,latin,,sr@latn

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sr.po,2,51,43,2,8,8,24,12,83,sr.po,,sr,,serbian,,,sr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,12,83,12,83,sq.po,,sq,,albanian,,,sq

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sl.po,2,51,42,2,8,8,24,12,83,sl.po,,sl,,slovenian,,,sl

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,12,83,12,83,sk.po,,sk,,slovak,,,sk

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/si.po,2,51,46,4,14,6,18,12,83,si.po,,si,,sinhala,,,si

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ru.po,12,83,59,0,0,0,0,12,83,ru.po,,ru,,russian,,,ru

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pt_br.po,12,83,92,0,0,0,0,12,83,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pt.po,2,51,55,2,8,8,24,12,83,pt.po,,pt,,portuguese,,,pt

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pl.po,2,51,38,2,8,8,24,12,83,pl.po,,pl,,polish,,,pl

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/pa.po,5,64,66,0,0,7,19,12,83,pa.po,,pa,,punjabi,,,pa

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/or.po,12,83,91,0,0,0,0,12,83,or.po,,or,,odia,,,or

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,12,83,12,83,nl.po,,nl,,dutch,,,nl

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/nb.po,2,51,47,2,8,8,24,12,83,nb.po,,nb,,norwegian bokmål,,,nb

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ms.po,2,51,41,2,8,8,24,12,83,ms.po,,ms,,malay,,,ms

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/mr.po,12,83,73,0,0,0,0,12,83,mr.po,,mr,,marathi,,,mr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ml.po,12,83,61,0,0,0,0,12,83,ml.po,,ml,,malayalam,,,ml

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,12,83,12,83,lv.po,,lv,,latvian,,,lv

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ko.po,12,83,63,0,0,0,0,12,83,ko.po,,ko,,korean,,,ko

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/kn.po,12,83,72,0,0,0,0,12,83,kn.po,,kn,,kannada,,,kn

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,12,83,12,83,ka.po,,ka,,georgian,,,ka

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ja.po,12,83,30,0,0,0,0,12,83,ja.po,,ja,,japanese,,,ja

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/it.po,12,83,88,0,0,0,0,12,83,it.po,,it,,italian,,,it

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/is.po,2,51,48,2,8,8,24,12,83,is.po,,is,,icelandic,,,is

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/id.po,2,51,45,2,8,8,24,12,83,id.po,,id,,indonesian,,,id

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hu.po,2,51,35,2,8,8,24,12,83,hu.po,,hu,,hungarian,,,hu

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hr.po,2,51,45,4,14,6,18,12,83,hr.po,,hr,,croatian,,,hr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/hi.po,12,83,86,0,0,0,0,12,83,hi.po,,hi,,hindi,,,hi

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,12,83,12,83,he.po,,he,,hebrew,,,he

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/gu.po,12,83,89,0,0,0,0,12,83,gu.po,,gu,,gujarati,,,gu

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fr.po,12,83,86,0,0,0,0,12,83,fr.po,,fr,,french,,,fr

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fi.po,2,51,35,2,8,8,24,12,83,fi.po,,fi,,finnish,,,fi

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,12,83,12,83,fa.po,,fa,,persian,,,fa

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,12,83,12,83,et.po,,et,,estonian,,,et

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/es.po,12,83,95,0,0,0,0,12,83,es.po,,es,,spanish,,,es

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,12,83,12,83,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,12,83,12,83,el.po,,el,,greek,,,el

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/de.po,12,83,73,0,0,0,0,12,83,de.po,,de,,german,,,de

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/da.po,2,51,52,2,8,8,24,12,83,da.po,,da,,danish,,,da

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,12,83,12,83,cy.po,,cy,,welsh,,,cy

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/cs.po,2,51,47,2,8,8,24,12,83,cs.po,,cs,,czech,,,cs

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ca.po,2,51,53,2,8,8,24,12,83,ca.po,,ca,,catalan,,,ca

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,12,83,12,83,bs.po,,bs,,bosnian,,,bs

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bn_in.po,12,83,82,0,0,0,0,12,83,bn_in.po,,bn,in,bangla,,india,bn_in

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/bg.po,2,51,49,2,8,8,24,12,83,bg.po,,bg,,bulgarian,,,bg

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/as.po,12,83,79,0,0,0,0,12,83,as.po,,as,,assamese,,,as

+ kdump-anaconda-addon-005-4.20190103gitb16ea2c.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,12,83,12,83,ar.po,,ar,,arabic,,,ar

+ kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/pt.po,48,473,536,15,146,93,530,156,1149,pt.po,,pt,,portuguese,,,pt

+ kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/it.po,48,473,513,15,146,93,530,156,1149,it.po,,it,,italian,,,it

+ kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/fr.po,39,394,432,21,211,96,544,156,1149,fr.po,,fr,,french,,,fr

+ kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/de.po,48,473,452,15,146,93,530,156,1149,de.po,,de,,german,,,de

+ kernel-5.0.7-300.fc30.src.rpm.stats.csv,tools/power/cpupower/po/cs.po,39,394,362,21,211,96,544,156,1149,cs.po,,cs,,czech,,,cs

+ krb5-1.17-4.fc30.src.rpm.stats.csv,src/po/de.po,1847,10072,10435,0,0,0,0,1847,10072,de.po,,de,,german,,,de

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/zh_tw.po,98,450,199,0,0,0,0,98,450,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/zh_cn.po,91,419,191,1,7,0,0,92,426,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/uk.po,98,450,469,0,0,0,0,98,450,uk.po,,uk,,ukrainian,,,uk

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/tr.po,97,447,392,0,0,0,0,97,447,tr.po,,tr,,turkish,,,tr

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sv.po,98,450,409,0,0,0,0,98,450,sv.po,,sv,,swedish,,,sv

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sr@latin.po,62,297,289,0,0,0,0,62,297,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sr.po,84,382,378,0,0,0,0,84,382,sr.po,,sr,,serbian,,,sr

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sl.po,44,197,178,0,0,0,0,44,197,sl.po,,sl,,slovenian,,,sl

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/sk.po,84,383,368,0,0,0,0,84,383,sk.po,,sk,,slovak,,,sk

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ru.po,86,396,375,0,0,0,0,86,396,ru.po,,ru,,russian,,,ru

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pt_br.po,96,442,501,0,0,0,0,96,442,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pt.po,62,297,325,0,0,0,0,62,297,pt.po,,pt,,portuguese,,,pt

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/pl.po,98,450,427,0,0,0,0,98,450,pl.po,,pl,,polish,,,pl

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/oc.po,48,211,240,0,0,0,0,48,211,oc.po,,oc,,occitan,,,oc

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/lt.po,98,450,391,0,0,0,0,98,450,lt.po,,lt,,lithuanian,,,lt

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ko.po,86,396,327,0,0,0,0,86,396,ko.po,,ko,,korean,,,ko

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/it.po,98,450,493,0,0,0,0,98,450,it.po,,it,,italian,,,it

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/id.po,96,442,412,0,0,0,0,96,442,id.po,,id,,indonesian,,,id

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/hu.po,98,450,428,0,0,0,0,98,450,hu.po,,hu,,hungarian,,,hu

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/gl.po,61,294,346,0,0,0,0,61,294,gl.po,,gl,,galician,,,gl

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fur.po,96,442,538,0,0,0,0,96,442,fur.po,,fur,,friulian,,,fur

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fr.po,98,450,554,0,0,0,0,98,450,fr.po,,fr,,french,,,fr

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/fi.po,28,90,65,0,0,0,0,28,90,fi.po,,fi,,finnish,,,fi

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/es.po,97,447,515,1,3,0,0,98,450,es.po,,es,,spanish,,,es

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/en_gb.po,86,396,396,0,0,0,0,86,396,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/de.po,89,411,356,0,0,0,0,89,411,de.po,,de,,german,,,de

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/da.po,98,450,390,0,0,0,0,98,450,da.po,,da,,danish,,,da

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/cs.po,97,447,436,0,0,0,0,97,447,cs.po,,cs,,czech,,,cs

+ libappstream-glib-0.7.15-1.fc30.src.rpm.stats.csv,po/ca.po,98,450,608,0,0,0,0,98,450,ca.po,,ca,,catalan,,,ca

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,17,17,17,17,lv.po,,lv,,latvian,,,lv

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,17,17,17,17,or.po,,or,,odia,,,or

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,17,17,17,17,nso.po,,nso,,northern sotho,,,nso

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,17,17,17,17,bn.po,,bn,,bangla,,,bn

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,17,17,17,17,br.po,,br,,breton,,,br

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,17,17,17,17,si.po,,si,,sinhala,,,si

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,17,17,17,17,bal.po,,bal,,baluchi,,,bal

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hu.po,17,17,17,0,0,0,0,17,17,hu.po,,hu,,hungarian,,,hu

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ca.po,17,17,17,0,0,0,0,17,17,ca.po,,ca,,catalan,,,ca

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,17,17,17,0,0,0,0,17,17,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,17,17,17,17,is.po,,is,,icelandic,,,is

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,17,17,17,17,vi.po,,vi,,vietnamese,,,vi

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/be.po,17,17,17,0,0,0,0,17,17,be.po,,be,,belarusian,,,be

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,17,17,17,17,nn.po,,nn,,norwegian nynorsk,,,nn

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,17,17,17,17,fa.po,,fa,,persian,,,fa

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fr.po,17,17,17,0,0,0,0,17,17,fr.po,,fr,,french,,,fr

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,17,17,17,17,ga.po,,ga,,irish,,,ga

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,17,17,17,17,anp.po,,anp,,angika,,,anp

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,17,17,17,17,tr.po,,tr,,turkish,,,tr

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,17,17,17,17,yo.po,,yo,,yoruba,,,yo

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,17,17,17,17,ia.po,,ia,,interlingua,,,ia

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,17,17,17,17,mai.po,,mai,,maithili,,,mai

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,17,17,17,17,ja.po,,ja,,japanese,,,ja

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,17,17,17,17,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,17,17,17,17,ne.po,,ne,,nepali,,,ne

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pl.po,17,17,17,0,0,0,0,17,17,pl.po,,pl,,polish,,,pl

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,17,17,17,17,pa.po,,pa,,punjabi,,,pa

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,17,17,17,17,bo.po,,bo,,tibetan,,,bo

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,17,17,17,17,eo.po,,eo,,esperanto,,,eo

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,17,17,17,17,tw.po,,tw,,twi,,,tw

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,17,17,17,17,gu.po,,gu,,gujarati,,,gu

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,17,17,17,17,ast.po,,ast,,asturian,,,ast

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ru.po,17,17,17,0,0,0,0,17,17,ru.po,,ru,,russian,,,ru

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,17,17,17,17,kw.po,,kw,,cornish,,,kw

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,17,17,17,17,ro.po,,ro,,romanian,,,ro

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,17,17,17,17,ta.po,,ta,,tamil,,,ta

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,17,17,17,17,sl.po,,sl,,slovenian,,,sl

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/id.po,17,17,17,0,0,0,0,17,17,id.po,,id,,indonesian,,,id

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sq.po,17,17,17,0,0,0,0,17,17,sq.po,,sq,,albanian,,,sq

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,17,17,17,17,ml.po,,ml,,malayalam,,,ml

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,17,17,17,17,af.po,,af,,afrikaans,,,af

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,17,17,17,17,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nl.po,17,17,17,0,0,0,0,17,17,nl.po,,nl,,dutch,,,nl

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,17,17,17,17,ms.po,,ms,,malay,,,ms

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,17,17,17,17,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,17,17,17,17,te.po,,te,,telugu,,,te

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sk.po,17,17,17,0,0,0,0,17,17,sk.po,,sk,,slovak,,,sk

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,17,17,17,17,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,17,17,17,17,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sv.po,17,17,17,0,0,0,0,17,17,sv.po,,sv,,swedish,,,sv

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,17,17,17,17,lt.po,,lt,,lithuanian,,,lt

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,17,17,17,17,am.po,,am,,amharic,,,am

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,17,17,17,17,bg.po,,bg,,bulgarian,,,bg

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,17,17,17,17,he.po,,he,,hebrew,,,he

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,17,17,17,17,cy.po,,cy,,welsh,,,cy

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,17,17,17,17,as.po,,as,,assamese,,,as

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,17,17,17,0,0,0,0,17,17,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/uk.po,17,17,17,0,0,0,0,17,17,uk.po,,uk,,ukrainian,,,uk

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,17,17,17,17,brx.po,,brx,,bodo,,,brx

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,17,17,17,17,ka.po,,ka,,georgian,,,ka

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,17,17,17,17,mk.po,,mk,,macedonian,,,mk

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,17,17,17,17,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,17,17,17,17,gl.po,,gl,,galician,,,gl

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,17,17,17,17,el.po,,el,,greek,,,el

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/it.po,17,17,17,0,0,0,0,17,17,it.po,,it,,italian,,,it

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/da.po,17,17,17,0,0,0,0,17,17,da.po,,da,,danish,,,da

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,17,17,17,17,eu.po,,eu,,basque,,,eu

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,17,17,17,17,nds.po,,nds,,low german,,,nds

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,17,17,17,17,kn.po,,kn,,kannada,,,kn

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,17,17,17,17,tg.po,,tg,,tajik,,,tg

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/cs.po,17,17,17,0,0,0,0,17,17,cs.po,,cs,,czech,,,cs

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,17,17,17,17,bn_in.po,,bn,in,bangla,,india,bn_in

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,17,17,17,17,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,17,17,17,17,pt.po,,pt,,portuguese,,,pt

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,17,17,17,17,sr.po,,sr,,serbian,,,sr

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,17,17,17,17,hr.po,,hr,,croatian,,,hr

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,17,17,17,17,ilo.po,,ilo,,iloko,,,ilo

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,17,17,17,17,th.po,,th,,thai,,,th

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,17,17,17,17,ar.po,,ar,,arabic,,,ar

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,17,17,17,17,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,17,17,17,17,zu.po,,zu,,zulu,,,zu

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,17,17,17,17,fi.po,,fi,,finnish,,,fi

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,17,17,17,17,et.po,,et,,estonian,,,et

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,17,17,17,17,km.po,,km,,khmer,,,km

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,17,17,17,17,ko.po,,ko,,korean,,,ko

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,17,17,17,17,hi.po,,hi,,hindi,,,hi

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/de.po,17,17,17,0,0,0,0,17,17,de.po,,de,,german,,,de

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,17,17,17,17,bs.po,,bs,,bosnian,,,bs

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/es.po,17,17,17,0,0,0,0,17,17,es.po,,es,,spanish,,,es

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,17,17,17,17,ky.po,,ky,,kyrgyz,,,ky

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,17,17,17,17,mr.po,,mr,,marathi,,,mr

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,17,17,17,17,kk.po,,kk,,kazakh,,,kk

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,17,17,17,17,ur.po,,ur,,urdu,,,ur

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,17,17,17,17,my.po,,my,,burmese,,,my

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,17,17,17,17,nb.po,,nb,,norwegian bokmål,,,nb

+ libbytesize-1.4-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,17,17,17,17,mn.po,,mn,,mongolian,,,mn

+ libconfig-1.7.2-3.fc30.src.rpm.stats.csv,contrib/ls-config/src/po/en_gb.po,52,255,258,0,0,0,0,52,255,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libconfig-1.7.2-3.fc30.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,polish,,poland,pl_pl

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,111,640,233,0,0,62,383,173,1023,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,124,720,381,0,0,49,303,173,1023,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/uk.po,173,1023,1096,0,0,0,0,173,1023,uk.po,,uk,,ukrainian,,,uk

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/tr.po,12,72,60,0,0,161,951,173,1023,tr.po,,tr,,turkish,,,tr

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/th.po,1,2,1,0,0,172,1021,173,1023,th.po,,th,,thai,,,th

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/te.po,1,2,2,0,0,172,1021,173,1023,te.po,,te,,telugu,,,te

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ta.po,1,2,2,0,0,172,1021,173,1023,ta.po,,ta,,tamil,,,ta

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sv.po,106,615,640,0,0,67,408,173,1023,sv.po,,sv,,swedish,,,sv

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1,2,2,0,0,172,1021,173,1023,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sr.po,1,2,2,0,0,172,1021,173,1023,sr.po,,sr,,serbian,,,sr

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sq.po,1,2,4,0,0,172,1021,173,1023,sq.po,,sq,,albanian,,,sq

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/sk.po,3,13,14,0,0,170,1010,173,1023,sk.po,,sk,,slovak,,,sk

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ru.po,106,615,613,0,0,67,408,173,1023,ru.po,,ru,,russian,,,ru

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,106,615,711,0,0,67,408,173,1023,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pt.po,13,74,86,0,0,160,949,173,1023,pt.po,,pt,,portuguese,,,pt

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pl.po,173,1023,1139,0,0,0,0,173,1023,pl.po,,pl,,polish,,,pl

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/pa.po,5,22,28,0,0,168,1001,173,1023,pa.po,,pa,,punjabi,,,pa

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/or.po,1,2,2,0,0,172,1021,173,1023,or.po,,or,,odia,,,or

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/nl.po,24,157,169,0,0,149,866,173,1023,nl.po,,nl,,dutch,,,nl

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/nb.po,1,2,1,0,0,172,1021,173,1023,nb.po,,nb,,norwegian bokmål,,,nb

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/mr.po,1,2,3,0,0,172,1021,173,1023,mr.po,,mr,,marathi,,,mr

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ml.po,1,2,1,0,0,172,1021,173,1023,ml.po,,ml,,malayalam,,,ml

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/mai.po,1,2,1,0,0,172,1021,173,1023,mai.po,,mai,,maithili,,,mai

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ko.po,103,585,552,0,0,70,438,173,1023,ko.po,,ko,,korean,,,ko

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/kn.po,1,2,1,0,0,172,1021,173,1023,kn.po,,kn,,kannada,,,kn

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ja.po,124,720,370,0,0,49,303,173,1023,ja.po,,ja,,japanese,,,ja

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/it.po,106,615,730,0,0,67,408,173,1023,it.po,,it,,italian,,,it

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/is.po,1,2,2,0,0,172,1021,173,1023,is.po,,is,,icelandic,,,is

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/id.po,3,13,12,0,0,170,1010,173,1023,id.po,,id,,indonesian,,,id

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ia.po,1,2,2,0,0,172,1021,173,1023,ia.po,,ia,,interlingua,,,ia

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/hu.po,25,162,172,0,0,148,861,173,1023,hu.po,,hu,,hungarian,,,hu

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/hi.po,1,2,2,0,0,172,1021,173,1023,hi.po,,hi,,hindi,,,hi

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/gu.po,1,2,2,0,0,172,1021,173,1023,gu.po,,gu,,gujarati,,,gu

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fur.po,14,88,113,0,0,159,935,173,1023,fur.po,,fur,,friulian,,,fur

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fr.po,173,1023,1297,0,0,0,0,173,1023,fr.po,,fr,,french,,,fr

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fil.po,1,8,9,0,0,172,1015,173,1023,fil.po,,fil,,filipino,,,fil

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fi.po,8,36,32,0,0,165,987,173,1023,fi.po,,fi,,finnish,,,fi

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/fa.po,1,2,3,0,0,172,1021,173,1023,fa.po,,fa,,persian,,,fa

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/eu.po,1,4,5,0,0,172,1019,173,1023,eu.po,,eu,,basque,,,eu

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/es.po,106,615,810,0,0,67,408,173,1023,es.po,,es,,spanish,,,es

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/el.po,1,2,2,0,0,172,1021,173,1023,el.po,,el,,greek,,,el

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/de.po,106,615,658,0,0,67,408,173,1023,de.po,,de,,german,,,de

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/da.po,5,18,18,0,0,168,1005,173,1023,da.po,,da,,danish,,,da

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/cs.po,25,167,162,0,0,148,856,173,1023,cs.po,,cs,,czech,,,cs

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/ca.po,21,123,169,0,0,152,900,173,1023,ca.po,,ca,,catalan,,,ca

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,1,2,1,0,0,172,1021,173,1023,bn_in.po,,bn,in,bangla,,india,bn_in

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bn.po,1,2,1,0,0,172,1021,173,1023,bn.po,,bn,,bangla,,,bn

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/bg.po,6,30,32,0,0,167,993,173,1023,bg.po,,bg,,bulgarian,,,bg

+ libdnf-0.28.1-1.fc30.src.rpm.stats.csv,po/as.po,1,2,1,0,0,172,1021,173,1023,as.po,,as,,assamese,,,as

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sq.po,181,458,531,3,17,993,6502,1177,6977,sq.po,,sq,,albanian,,,sq

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sr.po,602,3700,3293,4,25,571,3252,1177,6977,sr.po,,sr,,serbian,,,sr

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/tr.po,407,997,992,3,17,767,5963,1177,6977,tr.po,,tr,,turkish,,,tr

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/de.po,1176,6976,5965,1,1,0,0,1177,6977,de.po,,de,,german,,,de

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pl.po,1177,6977,6334,0,0,0,0,1177,6977,pl.po,,pl,,polish,,,pl

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/nl.po,1172,6930,6251,5,47,0,0,1177,6977,nl.po,,nl,,dutch,,,nl

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_ca.po,59,705,705,0,0,1118,6272,1177,6977,en_ca.po,,en,ca,english,,canada,en_ca

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/zh_cn.po,355,999,736,3,17,819,5961,1177,6977,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/ru.po,648,3546,3071,5,47,524,3384,1177,6977,ru.po,,ru,,russian,,,ru

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pt_br.po,657,1746,1936,3,17,517,5214,1177,6977,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sk.po,1177,6977,6232,0,0,0,0,1177,6977,sk.po,,sk,,slovak,,,sk

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/sv.po,612,1540,1395,119,321,446,5116,1177,6977,sv.po,,sv,,swedish,,,sv

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_au.po,1172,6930,6930,5,47,0,0,1177,6977,en_au.po,,en,au,english,,australia,en_au

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/ja.po,728,1894,1376,24,80,425,5003,1177,6977,ja.po,,ja,,japanese,,,ja

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/vi.po,1177,6977,8942,0,0,0,0,1177,6977,vi.po,,vi,,vietnamese,,,vi

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/fr.po,182,1220,1329,393,1220,602,4537,1177,6977,fr.po,,fr,,french,,,fr

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/da.po,1177,6977,5807,0,0,0,0,1177,6977,da.po,,da,,danish,,,da

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/uk.po,548,1243,1389,0,0,629,5734,1177,6977,uk.po,,uk,,ukrainian,,,uk

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/es.po,242,2517,2806,387,2212,548,2248,1177,6977,es.po,,es,,spanish,,,es

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/it.po,892,5092,5425,57,503,228,1382,1177,6977,it.po,,it,,italian,,,it

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/pt.po,170,420,428,3,17,1004,6540,1177,6977,pt.po,,pt,,portuguese,,,pt

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/bs.po,1172,6930,6271,5,47,0,0,1177,6977,bs.po,,bs,,bosnian,,,bs

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/be.po,215,610,609,3,17,959,6350,1177,6977,be.po,,be,,belarusian,,,be

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/en_gb.po,1172,6930,6930,5,47,0,0,1177,6977,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libexif-0.6.21-19.fc30.src.rpm.stats.csv,po/cs.po,729,3309,2947,5,47,443,3621,1177,6977,cs.po,,cs,,czech,,,cs

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/lv.po,84,684,537,0,0,0,0,84,684,lv.po,,lv,,latvian,,,lv

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ta.po,74,597,446,0,0,0,0,74,597,ta.po,,ta,,tamil,,,ta

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/hi.po,76,614,721,0,0,0,0,76,614,hi.po,,hi,,hindi,,,hi

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/tr.po,82,673,539,0,0,0,0,82,673,tr.po,,tr,,turkish,,,tr

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/et.po,85,695,542,0,0,0,0,85,695,et.po,,et,,estonian,,,et

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sl.po,84,684,640,0,0,0,0,84,684,sl.po,,sl,,slovenian,,,sl

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/cs.po,84,684,627,0,0,0,0,84,684,cs.po,,cs,,czech,,,cs

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/as.po,85,695,656,0,0,0,0,85,695,as.po,,as,,assamese,,,as

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pl.po,84,684,594,0,0,0,0,84,684,pl.po,,pl,,polish,,,pl

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/th.po,84,684,195,0,0,0,0,84,684,th.po,,th,,thai,,,th

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pt_br.po,84,684,717,0,0,0,0,84,684,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fi.po,76,612,495,4,41,4,31,84,684,fi.po,,fi,,finnish,,,fi

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/oc.po,84,684,752,0,0,0,0,84,684,oc.po,,oc,,occitan,,,oc

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/it.po,84,684,695,0,0,0,0,84,684,it.po,,it,,italian,,,it

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/vi.po,84,684,848,0,0,0,0,84,684,vi.po,,vi,,vietnamese,,,vi

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bs.po,85,695,609,0,0,0,0,85,695,bs.po,,bs,,bosnian,,,bs

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ar.po,55,403,333,0,0,19,194,74,597,ar.po,,ar,,arabic,,,ar

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/te.po,76,614,470,0,0,0,0,76,614,te.po,,te,,telugu,,,te

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/lt.po,84,684,526,0,0,0,0,84,684,lt.po,,lt,,lithuanian,,,lt

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bg.po,85,695,751,0,0,0,0,85,695,bg.po,,bg,,bulgarian,,,bg

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ug.po,76,614,544,0,0,0,0,76,614,ug.po,,ug,,uyghur,,,ug

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fr.po,84,684,770,0,0,0,0,84,684,fr.po,,fr,,french,,,fr

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/mr.po,74,597,506,0,0,0,0,74,597,mr.po,,mr,,marathi,,,mr

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/es.po,84,684,732,0,0,0,0,84,684,es.po,,es,,spanish,,,es

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/da.po,84,684,661,0,0,0,0,84,684,da.po,,da,,danish,,,da

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ja.po,81,659,129,0,0,1,12,82,671,ja.po,,ja,,japanese,,,ja

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_cn.po,84,684,142,0,0,0,0,84,684,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sv.po,84,684,652,0,0,0,0,84,684,sv.po,,sv,,swedish,,,sv

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/id.po,84,684,625,0,0,0,0,84,684,id.po,,id,,indonesian,,,id

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ca.po,85,695,729,0,0,0,0,85,695,ca.po,,ca,,catalan,,,ca

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/eo.po,51,370,319,0,0,23,227,74,597,eo.po,,eo,,esperanto,,,eo

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_tw.po,84,684,148,0,0,0,0,84,684,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ko.po,84,684,476,0,0,0,0,84,684,ko.po,,ko,,korean,,,ko

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ml.po,30,192,143,2,22,44,400,76,614,ml.po,,ml,,malayalam,,,ml

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/nb.po,84,684,673,0,0,0,0,84,684,nb.po,,nb,,norwegian bokmål,,,nb

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/zh_hk.po,85,695,150,0,0,0,0,85,695,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,85,695,729,0,0,0,0,85,695,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/gu.po,48,324,349,4,34,33,337,85,695,gu.po,,gu,,gujarati,,,gu

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pa.po,85,695,731,0,0,0,0,85,695,pa.po,,pa,,punjabi,,,pa

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/be.po,84,684,617,0,0,0,0,84,684,be.po,,be,,belarusian,,,be

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/eu.po,84,684,591,0,0,0,0,84,684,eu.po,,eu,,basque,,,eu

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/pt.po,84,684,722,0,0,0,0,84,684,pt.po,,pt,,portuguese,,,pt

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/kn.po,14,79,68,0,0,60,518,74,597,kn.po,,kn,,kannada,,,kn

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/en_gb.po,84,684,684,0,0,0,0,84,684,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ru.po,84,684,572,0,0,0,0,84,684,ru.po,,ru,,russian,,,ru

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/el.po,84,684,790,0,0,0,0,84,684,el.po,,el,,greek,,,el

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/ro.po,67,552,604,0,0,0,0,67,552,ro.po,,ro,,romanian,,,ro

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/he.po,84,684,564,0,0,0,0,84,684,he.po,,he,,hebrew,,,he

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/tg.po,12,106,107,0,0,64,508,76,614,tg.po,,tg,,tajik,,,tg

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/hu.po,84,684,569,0,0,0,0,84,684,hu.po,,hu,,hungarian,,,hu

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/gl.po,84,684,711,0,0,0,0,84,684,gl.po,,gl,,galician,,,gl

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sr.po,84,684,640,0,0,0,0,84,684,sr.po,,sr,,serbian,,,sr

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/de.po,84,684,672,0,0,0,0,84,684,de.po,,de,,german,,,de

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/bn_in.po,67,552,540,0,0,0,0,67,552,bn_in.po,,bn,in,bangla,,india,bn_in

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/or.po,74,597,582,0,0,0,0,74,597,or.po,,or,,odia,,,or

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sr@latin.po,84,684,640,0,0,0,0,84,684,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/uk.po,74,597,503,0,0,0,0,74,597,uk.po,,uk,,ukrainian,,,uk

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/nl.po,75,607,608,0,0,0,0,75,607,nl.po,,nl,,dutch,,,nl

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/sk.po,84,684,642,0,0,0,0,84,684,sk.po,,sk,,slovak,,,sk

+ libgdata-0.17.9-4.fc30.src.rpm.stats.csv,po/fur.po,84,684,781,0,0,0,0,84,684,fur.po,,fur,,friulian,,,fur

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ml.po,39,187,147,0,0,0,0,39,187,ml.po,,ml,,malayalam,,,ml

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nn.po,50,277,280,0,0,0,0,50,277,nn.po,,nn,,norwegian nynorsk,,,nn

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/eu.po,55,242,201,0,0,0,0,55,242,eu.po,,eu,,basque,,,eu

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/lv.po,39,187,161,0,0,0,0,39,187,lv.po,,lv,,latvian,,,lv

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/km.po,39,187,69,0,0,0,0,39,187,km.po,,km,,khmer,,,km

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ar.po,55,242,231,0,0,0,0,55,242,ar.po,,ar,,arabic,,,ar

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/eo.po,40,188,159,0,0,0,0,40,188,eo.po,,eo,,esperanto,,,eo

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bs.po,39,187,177,0,0,0,0,39,187,bs.po,,bs,,bosnian,,,bs

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,40,188,227,0,0,0,0,40,188,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/oc.po,39,187,239,0,0,0,0,39,187,oc.po,,oc,,occitan,,,oc

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ru.po,55,242,218,0,0,0,0,55,242,ru.po,,ru,,russian,,,ru

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ast.po,59,286,340,0,0,0,0,59,286,ast.po,,ast,,asturian,,,ast

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/vi.po,40,188,263,0,0,0,0,40,188,vi.po,,vi,,vietnamese,,,vi

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/hu.po,40,188,151,0,0,0,0,40,188,hu.po,,hu,,hungarian,,,hu

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ja.po,55,242,77,0,0,0,0,55,242,ja.po,,ja,,japanese,,,ja

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,55,242,241,0,0,0,0,55,242,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/cs.po,40,188,165,0,0,0,0,40,188,cs.po,,cs,,czech,,,cs

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pa.po,55,242,236,0,0,0,0,55,242,pa.po,,pa,,punjabi,,,pa

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,55,242,68,0,0,0,0,55,242,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/lt.po,40,188,157,0,0,0,0,40,188,lt.po,,lt,,lithuanian,,,lt

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,49,235,217,0,0,0,0,49,235,be@latin.po,latin,be,,belarusian,,,be@latin

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/tr.po,40,188,175,0,0,0,0,40,188,tr.po,,tr,,turkish,,,tr

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/be.po,55,242,230,0,0,0,0,55,242,be.po,,be,,belarusian,,,be

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/uk.po,55,242,218,0,0,0,0,55,242,uk.po,,uk,,ukrainian,,,uk

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/id.po,40,188,199,0,0,0,0,40,188,id.po,,id,,indonesian,,,id

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/es.po,40,188,241,0,0,0,0,40,188,es.po,,es,,spanish,,,es

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,39,187,188,0,0,0,0,39,187,bn_in.po,,bn,in,bangla,,india,bn_in

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ka.po,49,262,199,0,0,0,0,49,262,ka.po,,ka,,georgian,,,ka

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ro.po,55,242,238,0,0,0,0,55,242,ro.po,,ro,,romanian,,,ro

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/gl.po,55,242,317,0,0,0,0,55,242,gl.po,,gl,,galician,,,gl

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/or.po,55,242,255,0,0,0,0,55,242,or.po,,or,,odia,,,or

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/da.po,40,188,143,0,0,0,0,40,188,da.po,,da,,danish,,,da

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nl.po,40,188,155,0,0,0,0,40,188,nl.po,,nl,,dutch,,,nl

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/kk.po,39,187,163,0,0,0,0,39,187,kk.po,,kk,,kazakh,,,kk

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bg.po,55,242,272,0,0,0,0,55,242,bg.po,,bg,,bulgarian,,,bg

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/th.po,55,242,81,0,0,0,0,55,242,th.po,,th,,thai,,,th

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/tg.po,39,187,180,0,0,0,0,39,187,tg.po,,tg,,tajik,,,tg

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/bn.po,59,286,282,0,0,0,0,59,286,bn.po,,bn,,bangla,,,bn

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/dz.po,50,277,101,0,0,0,0,50,277,dz.po,,dz,,dzongkha,,,dz

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ug.po,55,242,216,0,0,0,0,55,242,ug.po,,ug,,uyghur,,,ug

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/et.po,55,242,197,0,0,0,0,55,242,et.po,,et,,estonian,,,et

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sr.po,40,188,190,0,0,0,0,40,188,sr.po,,sr,,serbian,,,sr

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/he.po,55,242,244,0,0,0,0,55,242,he.po,,he,,hebrew,,,he

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,55,242,68,0,0,0,0,55,242,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ta.po,55,242,208,0,0,0,0,55,242,ta.po,,ta,,tamil,,,ta

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/si.po,49,262,268,0,0,0,0,49,262,si.po,,si,,sinhala,,,si

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,40,188,190,0,0,0,0,40,188,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fur.po,39,187,233,0,0,0,0,39,187,fur.po,,fur,,friulian,,,fur

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ms.po,47,183,166,0,0,12,103,59,286,ms.po,,ms,,malay,,,ms

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ga.po,51,246,275,0,0,0,0,51,246,ga.po,,ga,,irish,,,ga

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sk.po,40,188,170,0,0,0,0,40,188,sk.po,,sk,,slovak,,,sk

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,55,242,324,0,0,0,0,55,242,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/hi.po,39,187,187,0,0,0,0,39,187,hi.po,,hi,,hindi,,,hi

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sq.po,49,235,286,0,0,0,0,49,235,sq.po,,sq,,albanian,,,sq

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ko.po,55,242,225,0,0,0,0,55,242,ko.po,,ko,,korean,,,ko

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fr.po,55,242,296,0,0,0,0,55,242,fr.po,,fr,,french,,,fr

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fa.po,55,242,227,0,0,0,0,55,242,fa.po,,fa,,persian,,,fa

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sv.po,40,188,140,0,0,0,0,40,188,sv.po,,sv,,swedish,,,sv

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/it.po,40,188,217,0,0,0,0,40,188,it.po,,it,,italian,,,it

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,51,210,210,8,76,0,0,59,286,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mr.po,39,187,162,0,0,0,0,39,187,mr.po,,mr,,marathi,,,mr

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/as.po,39,187,177,0,0,0,0,39,187,as.po,,as,,assamese,,,as

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/kn.po,39,187,159,0,0,0,0,39,187,kn.po,,kn,,kannada,,,kn

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mk.po,49,235,281,0,0,0,0,49,235,mk.po,,mk,,macedonian,,,mk

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pl.po,40,188,171,0,0,0,0,40,188,pl.po,,pl,,polish,,,pl

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/gu.po,55,242,224,0,0,0,0,55,242,gu.po,,gu,,gujarati,,,gu

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/pt.po,40,188,231,0,0,0,0,40,188,pt.po,,pt,,portuguese,,,pt

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/nb.po,55,242,211,0,0,0,0,55,242,nb.po,,nb,,norwegian bokmål,,,nb

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/te.po,55,242,215,0,0,0,0,55,242,te.po,,te,,telugu,,,te

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/el.po,39,187,187,0,0,0,0,39,187,el.po,,el,,greek,,,el

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/mai.po,27,109,111,0,0,24,137,51,246,mai.po,,mai,,maithili,,,mai

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/fi.po,40,188,126,0,0,0,0,40,188,fi.po,,fi,,finnish,,,fi

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/de.po,40,188,156,0,0,0,0,40,188,de.po,,de,,german,,,de

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/ca.po,55,242,324,0,0,0,0,55,242,ca.po,,ca,,catalan,,,ca

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/sl.po,40,188,173,0,0,0,0,40,188,sl.po,,sl,,slovenian,,,sl

+ libgnomekbd-3.26.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,55,242,68,0,0,0,0,55,242,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/eu.po,23,102,118,0,0,0,0,23,102,eu.po,,eu,,basque,,,eu

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/el.po,23,102,115,0,0,0,0,23,102,el.po,,el,,greek,,,el

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/id.po,23,102,105,0,0,0,0,23,102,id.po,,id,,indonesian,,,id

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pt_br.po,23,102,131,0,0,0,0,23,102,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/de.po,23,102,102,0,0,0,0,23,102,de.po,,de,,german,,,de

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/bs.po,23,102,104,0,0,0,0,23,102,bs.po,,bs,,bosnian,,,bs

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/cs.po,23,102,98,0,0,0,0,23,102,cs.po,,cs,,czech,,,cs

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/tr.po,23,102,91,0,0,0,0,23,102,tr.po,,tr,,turkish,,,tr

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sr.po,23,102,116,0,0,0,0,23,102,sr.po,,sr,,serbian,,,sr

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/fr.po,23,102,119,0,0,0,0,23,102,fr.po,,fr,,french,,,fr

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sr@latin.po,23,102,116,0,0,0,0,23,102,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/es.po,23,102,140,0,0,0,0,23,102,es.po,,es,,spanish,,,es

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/ru.po,23,102,101,0,0,0,0,23,102,ru.po,,ru,,russian,,,ru

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pl.po,23,102,112,0,0,0,0,23,102,pl.po,,pl,,polish,,,pl

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/lt.po,23,102,90,0,0,0,0,23,102,lt.po,,lt,,lithuanian,,,lt

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/oc.po,23,102,120,0,0,0,0,23,102,oc.po,,oc,,occitan,,,oc

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sl.po,23,102,107,0,0,0,0,23,102,sl.po,,sl,,slovenian,,,sl

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/zh_cn.po,23,102,57,0,0,0,0,23,102,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/sv.po,23,102,83,0,0,0,0,23,102,sv.po,,sv,,swedish,,,sv

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/hu.po,23,102,103,0,0,0,0,23,102,hu.po,,hu,,hungarian,,,hu

+ libgovirt-0.3.4-9.fc30.src.rpm.stats.csv,po/pt.po,23,102,112,0,0,0,0,23,102,pt.po,,pt,,portuguese,,,pt

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/hu.po,257,738,758,116,381,71,301,444,1420,hu.po,,hu,,hungarian,,,hu

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/vi.po,259,740,1268,114,373,71,307,444,1420,vi.po,,vi,,vietnamese,,,vi

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/zh_tw.po,327,978,445,75,270,42,172,444,1420,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/cs.po,327,978,986,75,270,42,172,444,1420,cs.po,,cs,,czech,,,cs

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/sv.po,274,789,688,107,358,63,273,444,1420,sv.po,,sv,,swedish,,,sv

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/zh_cn.po,200,546,230,115,376,129,498,444,1420,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/sr.po,257,738,794,112,367,75,315,444,1420,sr.po,,sr,,serbian,,,sr

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/de.po,444,1420,1369,0,0,0,0,444,1420,de.po,,de,,german,,,de

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ru.po,444,1420,1447,0,0,0,0,444,1420,ru.po,,ru,,russian,,,ru

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ro.po,223,613,723,138,446,83,361,444,1420,ro.po,,ro,,romanian,,,ro

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/uk.po,444,1420,1544,0,0,0,0,444,1420,uk.po,,uk,,ukrainian,,,uk

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/pl.po,417,1321,1380,17,55,10,44,444,1420,pl.po,,pl,,polish,,,pl

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/eo.po,259,740,728,118,387,67,293,444,1420,eo.po,,eo,,esperanto,,,eo

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/da.po,325,971,854,77,277,42,172,444,1420,da.po,,da,,danish,,,da

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/pt.po,310,922,1129,88,306,46,192,444,1420,pt.po,,pt,,portuguese,,,pt

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/nl.po,309,917,830,85,297,50,206,444,1420,nl.po,,nl,,dutch,,,nl

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/es.po,392,1187,1557,0,0,52,233,444,1420,es.po,,es,,spanish,,,es

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/ja.po,444,1420,540,0,0,0,0,444,1420,ja.po,,ja,,japanese,,,ja

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/it.po,310,922,1098,88,306,46,192,444,1420,it.po,,it,,italian,,,it

+ libgpg-error-1.33-2.fc30.src.rpm.stats.csv,po/fr.po,327,978,1166,75,270,42,172,444,1420,fr.po,,fr,,french,,,fr

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/cs.po,75,459,412,1,3,0,0,76,462,cs.po,,cs,,czech,,,cs

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sr.po,76,462,482,0,0,0,0,76,462,sr.po,,sr,,serbian,,,sr

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/de.po,75,459,451,1,3,0,0,76,462,de.po,,de,,german,,,de

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/zh_tw.po,76,462,197,0,0,0,0,76,462,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sv.po,76,462,432,0,0,0,0,76,462,sv.po,,sv,,swedish,,,sv

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/nl.po,76,462,463,0,0,0,0,76,462,nl.po,,nl,,dutch,,,nl

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/fi.po,76,462,355,0,0,0,0,76,462,fi.po,,fi,,finnish,,,fi

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/vi.po,76,462,624,0,0,0,0,76,462,vi.po,,vi,,vietnamese,,,vi

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/es.po,76,462,531,0,0,0,0,76,462,es.po,,es,,spanish,,,es

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/da.po,76,462,426,0,0,0,0,76,462,da.po,,da,,danish,,,da

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/pl.po,76,462,487,0,0,0,0,76,462,pl.po,,pl,,polish,,,pl

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/ja.po,48,269,112,23,173,5,20,76,462,ja.po,,ja,,japanese,,,ja

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/zh_cn.po,76,462,181,0,0,0,0,76,462,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/fr.po,76,462,509,0,0,0,0,76,462,fr.po,,fr,,french,,,fr

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/ru.po,76,462,409,0,0,0,0,76,462,ru.po,,ru,,russian,,,ru

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/it.po,75,459,491,1,3,0,0,76,462,it.po,,it,,italian,,,it

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/sk.po,69,405,386,5,50,2,7,76,462,sk.po,,sk,,slovak,,,sk

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/eu.po,44,263,239,23,173,9,26,76,462,eu.po,,eu,,basque,,,eu

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/uk.po,76,462,435,0,0,0,0,76,462,uk.po,,uk,,ukrainian,,,uk

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,libgphoto2_port/po/pt_br.po,76,462,555,0,0,0,0,76,462,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/cs.po,2159,9977,11381,255,890,60,203,2474,11070,cs.po,,cs,,czech,,,cs

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/de.po,2275,10183,9472,154,585,45,302,2474,11070,de.po,,de,,german,,,de

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/sv.po,2451,11013,9698,20,51,3,6,2474,11070,sv.po,,sv,,swedish,,,sv

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/nl.po,1895,8700,8049,298,1010,281,1360,2474,11070,nl.po,,nl,,dutch,,,nl

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/vi.po,2423,10925,15568,44,133,7,12,2474,11070,vi.po,,vi,,vietnamese,,,vi

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/es.po,1705,6671,7818,594,2310,175,2089,2474,11070,es.po,,es,,spanish,,,es

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/da.po,2451,11013,9807,20,51,3,6,2474,11070,da.po,,da,,danish,,,da

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/pl.po,2451,11013,11072,20,51,3,6,2474,11070,pl.po,,pl,,polish,,,pl

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/ja.po,1180,5257,2874,658,2916,636,2897,2474,11070,ja.po,,ja,,japanese,,,ja

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/zh_cn.po,602,2742,1278,749,3174,1123,5154,2474,11070,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/fr.po,2423,10925,13610,44,133,7,12,2474,11070,fr.po,,fr,,french,,,fr

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/hu.po,579,2661,2623,756,3217,1139,5192,2474,11070,hu.po,,hu,,hungarian,,,hu

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/ru.po,577,3043,2796,727,2845,1170,5182,2474,11070,ru.po,,ru,,russian,,,ru

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/it.po,1534,5406,5837,85,248,855,5416,2474,11070,it.po,,it,,italian,,,it

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/eu.po,794,4240,3992,851,3592,829,3238,2474,11070,eu.po,,eu,,basque,,,eu

+ libgphoto2-2.5.21-3.fc30.src.rpm.stats.csv,po/uk.po,2451,11013,10867,20,51,3,6,2474,11070,uk.po,,uk,,ukrainian,,,uk

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/es.po,149,891,1110,33,146,3,16,185,1053,es.po,,es,,spanish,,,es

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/ro.po,108,761,862,58,225,19,67,185,1053,ro.po,,ro,,romanian,,,ro

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/fr.po,180,1024,1231,4,23,1,6,185,1053,fr.po,,fr,,french,,,fr

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/zh_cn.po,149,891,220,33,146,3,16,185,1053,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/it.po,185,1053,1236,0,0,0,0,185,1053,it.po,,it,,italian,,,it

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/ja.po,90,650,358,55,282,40,121,185,1053,ja.po,,ja,,japanese,,,ja

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/sv.po,149,891,889,33,146,3,16,185,1053,sv.po,,sv,,swedish,,,sv

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/de.po,149,891,986,33,146,3,16,185,1053,de.po,,de,,german,,,de

+ libgpod-0.8.3-27.fc30.src.rpm.stats.csv,po/he.po,149,891,902,33,146,3,16,185,1053,he.po,,he,,hebrew,,,he

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/tr.po,149,719,619,0,0,0,0,149,719,tr.po,,tr,,turkish,,,tr

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ta.po,34,243,195,0,0,0,0,34,243,ta.po,,ta,,tamil,,,ta

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ro.po,110,843,1003,0,0,0,0,110,843,ro.po,,ro,,romanian,,,ro

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_cn.po,150,720,307,0,0,0,0,150,720,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/it.po,146,696,760,0,0,0,0,146,696,it.po,,it,,italian,,,it

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pa.po,13,69,70,0,0,97,774,110,843,pa.po,,pa,,punjabi,,,pa

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ca.po,146,696,981,0,0,0,0,146,696,ca.po,,ca,,catalan,,,ca

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pt_br.po,150,720,877,0,0,0,0,150,720,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ru.po,149,719,649,0,0,0,0,149,719,ru.po,,ru,,russian,,,ru

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ml.po,15,27,28,0,0,131,669,146,696,ml.po,,ml,,malayalam,,,ml

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/es.po,150,720,925,0,0,0,0,150,720,es.po,,es,,spanish,,,es

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pt.po,150,720,817,0,0,0,0,150,720,pt.po,,pt,,portuguese,,,pt

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/da.po,150,720,655,0,0,0,0,150,720,da.po,,da,,danish,,,da

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sv.po,150,720,647,0,0,0,0,150,720,sv.po,,sv,,swedish,,,sv

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/tg.po,2,5,5,0,0,145,697,147,702,tg.po,,tg,,tajik,,,tg

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/he.po,146,696,696,0,0,0,0,146,696,he.po,,he,,hebrew,,,he

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/uk.po,28,213,195,0,0,0,0,28,213,uk.po,,uk,,ukrainian,,,uk

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/eo.po,116,503,481,3,20,31,197,150,720,eo.po,,eo,,esperanto,,,eo

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,146,696,971,0,0,0,0,146,696,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/fr.po,150,720,909,0,0,0,0,150,720,fr.po,,fr,,french,,,fr

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/nb.po,75,359,346,1,3,70,334,146,696,nb.po,,nb,,norwegian bokmål,,,nb

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/pl.po,150,720,696,0,0,0,0,150,720,pl.po,,pl,,polish,,,pl

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sl.po,150,720,700,0,0,0,0,150,720,sl.po,,sl,,slovenian,,,sl

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/eu.po,149,719,669,0,0,0,0,149,719,eu.po,,eu,,basque,,,eu

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/en_gb.po,145,692,692,0,0,0,0,145,692,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/de.po,150,720,693,0,0,0,0,150,720,de.po,,de,,german,,,de

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/fi.po,146,696,524,0,0,0,0,146,696,fi.po,,fi,,finnish,,,fi

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_tw.po,146,696,275,0,0,0,0,146,696,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sr@latin.po,150,720,712,0,0,0,0,150,720,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/bs.po,149,719,699,0,0,0,0,149,719,bs.po,,bs,,bosnian,,,bs

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sr.po,150,720,712,0,0,0,0,150,720,sr.po,,sr,,serbian,,,sr

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/sk.po,150,720,721,0,0,0,0,150,720,sk.po,,sk,,slovak,,,sk

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/gl.po,146,696,871,0,0,0,0,146,696,gl.po,,gl,,galician,,,gl

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/zh_hk.po,146,696,275,0,0,0,0,146,696,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/lv.po,146,696,617,0,0,0,0,146,696,lv.po,,lv,,latvian,,,lv

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/th.po,83,413,190,0,0,63,283,146,696,th.po,,th,,thai,,,th

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/el.po,150,720,763,0,0,0,0,150,720,el.po,,el,,greek,,,el

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/oc.po,34,216,256,0,0,112,480,146,696,oc.po,,oc,,occitan,,,oc

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/nn.po,109,833,717,0,0,1,10,110,843,nn.po,,nn,,norwegian nynorsk,,,nn

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/hu.po,150,720,678,0,0,0,0,150,720,hu.po,,hu,,hungarian,,,hu

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ko.po,146,696,609,0,0,0,0,146,696,ko.po,,ko,,korean,,,ko

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/ja.po,145,692,276,1,4,0,0,146,696,ja.po,,ja,,japanese,,,ja

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/id.po,150,720,685,0,0,0,0,150,720,id.po,,id,,indonesian,,,id

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/cs.po,150,720,691,0,0,0,0,150,720,cs.po,,cs,,czech,,,cs

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/as.po,1,9,8,0,0,145,687,146,696,as.po,,as,,assamese,,,as

+ libgsf-1.14.43-3.fc30.src.rpm.stats.csv,po/lt.po,150,720,621,0,0,0,0,150,720,lt.po,,lt,,lithuanian,,,lt

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sr.po,40,126,159,0,0,0,0,40,126,sr.po,,sr,,serbian,,,sr

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/cs.po,40,126,133,0,0,0,0,40,126,cs.po,,cs,,czech,,,cs

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,6,24,102,15,27,44,134,rw.po,,rw,,kinyarwanda,,,rw

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ru.po,40,126,129,0,0,0,0,40,126,ru.po,,ru,,russian,,,ru

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,40,126,64,0,0,0,0,40,126,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ca.po,40,126,168,0,0,0,0,40,126,ca.po,,ca,,catalan,,,ca

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ku.po,7,17,22,1,1,36,116,44,134,ku.po,,ku,,kurdish,,,ku

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ka.po,10,14,14,17,81,17,39,44,134,ka.po,,ka,,georgian,,,ka

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/gl.po,40,126,161,0,0,0,0,40,126,gl.po,,gl,,galician,,,gl

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/vi.po,41,126,227,0,0,0,0,41,126,vi.po,,vi,,vietnamese,,,vi

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nn.po,40,126,111,0,0,0,0,40,126,nn.po,,nn,,norwegian nynorsk,,,nn

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nl.po,40,126,124,0,0,0,0,40,126,nl.po,,nl,,dutch,,,nl

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hu.po,40,126,108,0,0,0,0,40,126,hu.po,,hu,,hungarian,,,hu

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/th.po,40,126,56,0,0,0,0,40,126,th.po,,th,,thai,,,th

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/la.po,2,2,2,0,0,38,124,40,126,la.po,,la,,latin,,,la

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bs.po,40,126,135,0,0,0,0,40,126,bs.po,,bs,,bosnian,,,bs

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pt.po,40,126,146,0,0,0,0,40,126,pt.po,,pt,,portuguese,,,pt

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,40,126,167,0,0,0,0,40,126,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,40,126,159,0,0,0,0,40,126,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mk.po,40,126,152,0,0,0,0,40,126,mk.po,,mk,,macedonian,,,mk

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hi.po,40,126,145,0,0,0,0,40,126,hi.po,,hi,,hindi,,,hi

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,8,34,36,100,44,134,mi.po,,mi,,maori,,,mi

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/te.po,40,126,113,0,0,0,0,40,126,te.po,,te,,telugu,,,te

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fr.po,40,126,148,0,0,0,0,40,126,fr.po,,fr,,french,,,fr

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/tg.po,40,126,129,0,0,0,0,40,126,tg.po,,tg,,tajik,,,tg

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ta.po,40,126,113,0,0,0,0,40,126,ta.po,,ta,,tamil,,,ta

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/hr.po,40,126,137,0,0,0,0,40,126,hr.po,,hr,,croatian,,,hr

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pa.po,40,126,127,0,0,0,0,40,126,pa.po,,pa,,punjabi,,,pa

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/id.po,40,126,115,0,0,0,0,40,126,id.po,,id,,indonesian,,,id

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/xh.po,44,134,153,0,0,0,0,44,134,xh.po,,xh,,xhosa,,,xh

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,40,126,147,0,0,0,0,40,126,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/lt.po,40,126,132,0,0,0,0,40,126,lt.po,,lt,,lithuanian,,,lt

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,40,126,126,0,0,0,0,40,126,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/et.po,40,126,103,0,0,0,0,40,126,et.po,,et,,estonian,,,et

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/da.po,40,126,113,0,0,0,0,40,126,da.po,,da,,danish,,,da

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,40,126,58,0,0,0,0,40,126,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/pl.po,40,126,140,0,0,0,0,40,126,pl.po,,pl,,polish,,,pl

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/oc.po,40,126,149,0,0,0,0,40,126,oc.po,,oc,,occitan,,,oc

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/el.po,40,126,144,0,0,0,0,40,126,el.po,,el,,greek,,,el

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/uk.po,40,126,138,0,0,0,0,40,126,uk.po,,uk,,ukrainian,,,uk

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mr.po,40,126,127,0,0,0,0,40,126,mr.po,,mr,,marathi,,,mr

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ml.po,40,126,121,0,0,0,0,40,126,ml.po,,ml,,malayalam,,,ml

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/cy.po,44,134,146,0,0,0,0,44,134,cy.po,,cy,,welsh,,,cy

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/es.po,40,126,158,0,0,0,0,40,126,es.po,,es,,spanish,,,es

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ky.po,40,126,114,0,0,0,0,40,126,ky.po,,ky,,kyrgyz,,,ky

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,44,134,134,0,0,0,0,44,134,en_ca.po,,en,ca,english,,canada,en_ca

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/dz.po,39,113,73,1,13,0,0,40,126,dz.po,,dz,,dzongkha,,,dz

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ast.po,40,126,155,0,0,0,0,40,126,ast.po,,ast,,asturian,,,ast

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,40,126,62,0,0,0,0,40,126,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/be.po,40,126,156,0,0,0,0,40,126,be.po,,be,,belarusian,,,be

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sq.po,40,126,162,0,0,0,0,40,126,sq.po,,sq,,albanian,,,sq

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/tr.po,40,126,109,0,0,0,0,40,126,tr.po,,tr,,turkish,,,tr

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/or.po,40,126,133,0,0,0,0,40,126,or.po,,or,,odia,,,or

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bn.po,40,126,143,0,0,0,0,40,126,bn.po,,bn,,bangla,,,bn

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sv.po,40,126,100,0,0,0,0,40,126,sv.po,,sv,,swedish,,,sv

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,40,126,152,0,0,0,0,40,126,bn_in.po,,bn,in,bangla,,india,bn_in

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sk.po,40,126,138,0,0,0,0,40,126,sk.po,,sk,,slovak,,,sk

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/az.po,42,118,118,2,16,0,0,44,134,az.po,,az,,azerbaijani,,,az

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fur.po,40,126,142,0,0,0,0,40,126,fur.po,,fur,,friulian,,,fur

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/de.po,40,126,109,0,0,0,0,40,126,de.po,,de,,german,,,de

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/gu.po,40,126,156,0,0,0,0,40,126,gu.po,,gu,,gujarati,,,gu

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/sl.po,40,126,145,0,0,0,0,40,126,sl.po,,sl,,slovenian,,,sl

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/as.po,40,126,146,0,0,0,0,40,126,as.po,,as,,assamese,,,as

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/eu.po,40,126,113,0,0,0,0,40,126,eu.po,,eu,,basque,,,eu

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mn.po,42,118,109,2,16,0,0,44,134,mn.po,,mn,,mongolian,,,mn

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/eo.po,40,126,118,0,0,0,0,40,126,eo.po,,eo,,esperanto,,,eo

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ne.po,40,126,132,0,0,0,0,40,126,ne.po,,ne,,nepali,,,ne

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mai.po,40,126,134,0,0,0,0,40,126,mai.po,,mai,,maithili,,,mai

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/bg.po,40,126,148,0,0,0,0,40,126,bg.po,,bg,,bulgarian,,,bg

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ro.po,40,126,172,0,0,0,0,40,126,ro.po,,ro,,romanian,,,ro

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,40,126,126,0,0,0,0,40,126,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ja.po,40,126,49,0,0,0,0,40,126,ja.po,,ja,,japanese,,,ja

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/he.po,40,126,126,0,0,0,0,40,126,he.po,,he,,hebrew,,,he

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/lv.po,40,126,125,0,0,0,0,40,126,lv.po,,lv,,latvian,,,lv

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fa.po,40,126,141,0,0,0,0,40,126,fa.po,,fa,,persian,,,fa

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/kn.po,40,126,118,0,0,0,0,40,126,kn.po,,kn,,kannada,,,kn

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/it.po,40,126,139,0,0,0,0,40,126,it.po,,it,,italian,,,it

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ms.po,40,110,110,3,22,1,2,44,134,ms.po,,ms,,malay,,,ms

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/mg.po,44,134,155,0,0,0,0,44,134,mg.po,,mg,,malagasy,,,mg

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/am.po,9,12,12,0,0,35,122,44,134,am.po,,am,,amharic,,,am

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/nb.po,40,126,117,0,0,0,0,40,126,nb.po,,nb,,norwegian bokmål,,,nb

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ko.po,40,126,103,0,0,0,0,40,126,ko.po,,ko,,korean,,,ko

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ar.po,40,126,171,0,0,0,0,40,126,ar.po,,ar,,arabic,,,ar

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/fi.po,39,122,89,1,4,0,0,40,126,fi.po,,fi,,finnish,,,fi

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ga.po,40,126,162,0,0,0,0,40,126,ga.po,,ga,,irish,,,ga

+ libgtop2-2.40.0-1.fc30.src.rpm.stats.csv,po/ug.po,40,126,121,0,0,0,0,40,126,ug.po,,ug,,uyghur,,,ug

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_tw.po,4267,5481,4347,107,129,57,78,4431,5688,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_hk.po,4267,5481,4342,107,129,57,78,4431,5688,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/zh_cn.po,4412,5664,4448,7,11,21,28,4440,5703,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/vi.po,4374,5625,5762,0,0,0,0,4374,5625,vi.po,,vi,,vietnamese,,,vi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/uk.po,4374,5625,5407,0,0,0,0,4374,5625,uk.po,,uk,,ukrainian,,,uk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ug.po,4375,5624,5525,0,0,0,0,4375,5624,ug.po,,ug,,uyghur,,,ug

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/tr.po,4439,5702,5676,0,0,0,0,4439,5702,tr.po,,tr,,turkish,,,tr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/th.po,2603,3377,2822,18,53,1716,2156,4337,5586,th.po,,th,,thai,,,th

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/te.po,4430,5687,5764,0,0,0,0,4430,5687,te.po,,te,,telugu,,,te

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ta.po,4430,5687,5794,0,0,0,0,4430,5687,ta.po,,ta,,tamil,,,ta

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sv.po,4439,5702,5630,0,0,0,0,4439,5702,sv.po,,sv,,swedish,,,sv

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sr@latin.po,4440,5703,5739,0,0,0,0,4440,5703,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sr.po,4439,5702,5738,0,0,0,0,4439,5702,sr.po,,sr,,serbian,,,sr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sq.po,4566,6823,6871,0,0,0,0,4566,6823,sq.po,,sq,,albanian,,,sq

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sl.po,4439,5702,5837,0,0,0,0,4439,5702,sl.po,,sl,,slovenian,,,sl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/sk.po,4442,5703,5671,0,0,0,0,4442,5703,sk.po,,sk,,slovak,,,sk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/si.po,4256,6087,5873,0,0,310,736,4566,6823,si.po,,si,,sinhala,,,si

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/rw.po,226,310,331,83,261,6192,9222,6501,9793,rw.po,,rw,,kinyarwanda,,,rw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ru.po,4439,5702,4918,0,0,0,0,4439,5702,ru.po,,ru,,russian,,,ru

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ro.po,4439,5702,5768,0,0,0,0,4439,5702,ro.po,,ro,,romanian,,,ro

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pt_br.po,4439,5702,5804,0,0,0,0,4439,5702,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pt.po,4431,5688,5875,0,0,0,0,4431,5688,pt.po,,pt,,portuguese,,,pt

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pl.po,4439,5702,5688,0,0,0,0,4439,5702,pl.po,,pl,,polish,,,pl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/pa.po,4442,5703,5704,0,0,0,0,4442,5703,pa.po,,pa,,punjabi,,,pa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/or.po,4430,5687,5676,0,0,0,0,4430,5687,or.po,,or,,odia,,,or

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/oc.po,4431,5688,5806,0,0,0,0,4431,5688,oc.po,,oc,,occitan,,,oc

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nn.po,4374,5625,5480,0,0,0,0,4374,5625,nn.po,,nn,,norwegian nynorsk,,,nn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nl.po,4439,5702,5620,0,0,0,0,4439,5702,nl.po,,nl,,dutch,,,nl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ne.po,2897,3779,3775,0,0,1541,1919,4438,5698,ne.po,,ne,,nepali,,,ne

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nds.po,4337,5586,5471,0,0,0,0,4337,5586,nds.po,,nds,,low german,,,nds

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/nb.po,4442,5703,5630,0,0,0,0,4442,5703,nb.po,,nb,,norwegian bokmål,,,nb

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ms.po,4374,5625,5650,0,0,0,0,4374,5625,ms.po,,ms,,malay,,,ms

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mr.po,4375,5624,5635,0,0,0,0,4375,5624,mr.po,,mr,,marathi,,,mr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mn.po,2678,3642,3641,0,0,0,0,2678,3642,mn.po,,mn,,mongolian,,,mn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ml.po,4442,5703,5809,0,0,0,0,4442,5703,ml.po,,ml,,malayalam,,,ml

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mk.po,4374,5625,5606,0,0,0,0,4374,5625,mk.po,,mk,,macedonian,,,mk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mg.po,4325,6196,6185,30,61,0,0,4355,6257,mg.po,,mg,,malagasy,,,mg

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/mai.po,4337,5586,5656,0,0,0,0,4337,5586,mai.po,,mai,,maithili,,,mai

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/lv.po,2900,3781,3699,0,0,1539,1921,4439,5702,lv.po,,lv,,latvian,,,lv

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/lt.po,4439,5702,5699,0,0,0,0,4439,5702,lt.po,,lt,,lithuanian,,,lt

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ky.po,6597,9910,9670,0,0,0,0,6597,9910,ky.po,,ky,,kyrgyz,,,ky

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ku.po,4369,5620,5616,0,0,0,0,4369,5620,ku.po,,ku,,kurdish,,,ku

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ko.po,1045,1337,1148,0,0,3386,4351,4431,5688,ko.po,,ko,,korean,,,ko

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/kn.po,4374,5623,5626,0,0,0,0,4374,5623,kn.po,,kn,,kannada,,,kn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/kk.po,2034,2489,2193,0,0,2405,3213,4439,5702,kk.po,,kk,,kazakh,,,kk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ka.po,6588,9901,9865,0,0,0,0,6588,9901,ka.po,,ka,,georgian,,,ka

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ja.po,4374,5623,4849,0,0,0,0,4374,5623,ja.po,,ja,,japanese,,,ja

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/it.po,4439,5702,5764,0,0,0,0,4439,5702,it.po,,it,,italian,,,it

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/is.po,4440,5703,5542,0,0,0,0,4440,5703,is.po,,is,,icelandic,,,is

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/id.po,4439,5702,5701,0,0,0,0,4439,5702,id.po,,id,,indonesian,,,id

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hu.po,4439,5702,5589,0,0,0,0,4439,5702,hu.po,,hu,,hungarian,,,hu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hr.po,4440,5703,5726,0,0,0,0,4440,5703,hr.po,,hr,,croatian,,,hr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/hi.po,4374,5623,5692,0,0,0,0,4374,5623,hi.po,,hi,,hindi,,,hi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/he.po,4449,5709,5690,0,0,0,0,4449,5709,he.po,,he,,hebrew,,,he

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gu.po,4414,5666,5686,0,0,0,0,4414,5666,gu.po,,gu,,gujarati,,,gu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gl.po,4439,5702,5802,0,0,0,0,4439,5702,gl.po,,gl,,galician,,,gl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/gd.po,4441,5702,5959,0,0,0,0,4441,5702,gd.po,,gd,,scottish gaelic,,,gd

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ga.po,1888,2462,2589,910,1322,1651,1925,4449,5709,ga.po,,ga,,irish,,,ga

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fur.po,4439,5702,5768,0,0,0,0,4439,5702,fur.po,,fur,,friulian,,,fur

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fr.po,4439,5702,5719,0,0,0,0,4439,5702,fr.po,,fr,,french,,,fr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fi.po,4414,5668,5540,17,20,9,15,4440,5703,fi.po,,fi,,finnish,,,fi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/fa.po,4442,5703,5640,0,0,0,0,4442,5703,fa.po,,fa,,persian,,,fa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/eu.po,4439,5702,5688,0,0,0,0,4439,5702,eu.po,,eu,,basque,,,eu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/et.po,4374,5625,5525,0,0,0,0,4374,5625,et.po,,et,,estonian,,,et

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/es.po,4439,5702,5783,0,0,0,0,4439,5702,es.po,,es,,spanish,,,es

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/eo.po,4439,5702,5525,0,0,0,0,4439,5702,eo.po,,eo,,esperanto,,,eo

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en_gb.po,4431,5688,5689,0,0,0,0,4431,5688,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en_ca.po,4390,6303,6303,0,0,0,0,4390,6303,en_ca.po,,en,ca,english,,canada,en_ca

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/en@shaw.po,2667,3595,3595,0,0,0,0,2667,3595,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/el.po,4442,5703,5713,0,0,0,0,4442,5703,el.po,,el,,greek,,,el

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/dz.po,6589,9906,9437,0,0,0,0,6589,9906,dz.po,,dz,,dzongkha,,,dz

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/de.po,4439,5702,5577,0,0,0,0,4439,5702,de.po,,de,,german,,,de

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/da.po,4439,5702,5619,0,0,0,0,4439,5702,da.po,,da,,danish,,,da

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/cy.po,6603,9919,10438,0,0,0,0,6603,9919,cy.po,,cy,,welsh,,,cy

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/cs.po,4439,5702,5685,0,0,0,0,4439,5702,cs.po,,cs,,czech,,,cs

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/crh.po,4393,5645,5634,0,0,0,0,4393,5645,crh.po,,crh,,crimean turkish,,,crh

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ca@valencia.po,4442,5703,5770,0,0,0,0,4442,5703,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ca.po,4424,5684,5757,0,0,0,0,4424,5684,ca.po,,ca,,catalan,,,ca

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bs.po,4374,5623,5842,0,0,0,0,4374,5623,bs.po,,bs,,bosnian,,,bs

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/br.po,4298,5403,5403,0,0,76,222,4374,5625,br.po,,br,,breton,,,br

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bn_in.po,4374,5623,5604,0,0,0,0,4374,5623,bn_in.po,,bn,in,bangla,,india,bn_in

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bn.po,4374,5625,5631,0,0,0,0,4374,5625,bn.po,,bn,,bangla,,,bn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/bg.po,4460,5724,5722,0,0,0,0,4460,5724,bg.po,,bg,,bulgarian,,,bg

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/be@latin.po,4381,5642,5624,0,0,0,0,4381,5642,be@latin.po,latin,be,,belarusian,,,be@latin

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/be.po,4337,5586,5564,0,0,0,0,4337,5586,be.po,,be,,belarusian,,,be

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/az.po,2693,3655,3651,0,0,0,0,2693,3655,az.po,,az,,azerbaijani,,,az

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ast.po,4369,5620,5694,0,0,0,0,4369,5620,ast.po,,ast,,asturian,,,ast

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/as.po,4430,5687,5675,0,0,0,0,4430,5687,as.po,,as,,assamese,,,as

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ar.po,3386,4260,4189,702,920,343,508,4431,5688,ar.po,,ar,,arabic,,,ar

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po-locations/ang.po,46,51,57,0,0,2655,3612,2701,3663,ang.po,,ang,,old english,,,ang

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,235,664,282,0,0,0,0,235,664,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,144,479,188,1,4,0,0,145,483,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,147,485,199,0,0,0,0,147,485,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,153,355,339,12,35,14,70,179,460,xh.po,,xh,,xhosa,,,xh

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,35,57,71,24,58,120,345,179,460,wa.po,,wa,,walloon,,,wa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,148,483,629,0,0,0,0,148,483,vi.po,,vi,,vietnamese,,,vi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,146,484,484,0,0,0,0,146,484,uk.po,,uk,,ukrainian,,,uk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,148,483,445,0,0,0,0,148,483,ug.po,,ug,,uyghur,,,ug

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,235,664,661,0,0,0,0,235,664,tr.po,,tr,,turkish,,,tr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,147,485,254,0,0,0,0,147,485,th.po,,th,,thai,,,th

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,146,484,441,0,0,0,0,146,484,te.po,,te,,telugu,,,te

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,146,484,396,0,0,0,0,146,484,ta.po,,ta,,tamil,,,ta

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,235,664,606,0,0,0,0,235,664,sv.po,,sv,,swedish,,,sv

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,234,662,645,0,0,0,0,234,662,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,235,664,647,0,0,0,0,235,664,sr.po,,sr,,serbian,,,sr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,179,461,534,0,0,0,0,179,461,sq.po,,sq,,albanian,,,sq

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,235,664,674,0,0,0,0,235,664,sl.po,,sl,,slovenian,,,sl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,234,662,645,0,0,0,0,234,662,sk.po,,sk,,slovak,,,sk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,119,222,233,0,0,60,238,179,460,si.po,,si,,sinhala,,,si

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,9,9,8,59,215,111,236,179,460,rw.po,,rw,,kinyarwanda,,,rw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,235,664,660,0,0,0,0,235,664,ru.po,,ru,,russian,,,ru

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,235,664,747,0,0,0,0,235,664,ro.po,,ro,,romanian,,,ro

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,235,664,725,0,0,0,0,235,664,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,147,485,544,0,0,0,0,147,485,pt.po,,pt,,portuguese,,,pt

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,235,664,672,0,0,0,0,235,664,pl.po,,pl,,polish,,,pl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,237,667,705,0,0,0,0,237,667,pa.po,,pa,,punjabi,,,pa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,148,483,487,0,0,0,0,148,483,or.po,,or,,odia,,,or

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,234,662,744,0,0,0,0,234,662,oc.po,,oc,,occitan,,,oc

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,181,465,416,0,0,0,0,181,465,nn.po,,nn,,norwegian nynorsk,,,nn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,235,664,583,0,0,0,0,235,664,nl.po,,nl,,dutch,,,nl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,136,253,285,4,30,7,210,147,493,ne.po,,ne,,nepali,,,ne

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,237,667,605,0,0,0,0,237,667,nb.po,,nb,,norwegian bokmål,,,nb

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,127,285,306,24,54,28,121,179,460,ms.po,,ms,,malay,,,ms

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,146,484,436,0,0,0,0,146,484,mr.po,,mr,,marathi,,,mr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,98,192,199,25,63,56,205,179,460,mn.po,,mn,,mongolian,,,mn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,235,664,613,0,0,0,0,235,664,ml.po,,ml,,malayalam,,,ml

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,179,461,487,0,0,0,0,179,461,mk.po,,mk,,macedonian,,,mk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,166,437,429,9,19,4,4,179,460,mg.po,,mg,,malagasy,,,mg

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,175,408,442,0,0,6,57,181,465,mai.po,,mai,,maithili,,,mai

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,235,664,632,0,0,0,0,235,664,lv.po,,lv,,latvian,,,lv

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,235,664,610,0,0,0,0,235,664,lt.po,,lt,,lithuanian,,,lt

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,132,426,421,3,39,3,5,138,470,ky.po,,ky,,kyrgyz,,,ky

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,174,396,463,1,10,4,54,179,460,ku.po,,ku,,kurdish,,,ku

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,235,664,566,0,0,0,0,235,664,ko.po,,ko,,korean,,,ko

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,146,484,446,0,0,0,0,146,484,kn.po,,kn,,kannada,,,kn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,235,664,701,0,0,0,0,235,664,kk.po,,kk,,kazakh,,,kk

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,170,447,408,5,9,4,4,179,460,ka.po,,ka,,georgian,,,ka

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,225,646,326,0,0,10,18,235,664,ja.po,,ja,,japanese,,,ja

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,235,664,752,0,0,0,0,235,664,it.po,,it,,italian,,,it

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,234,662,559,0,0,0,0,234,662,is.po,,is,,icelandic,,,is

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,235,664,698,0,0,0,0,235,664,id.po,,id,,indonesian,,,id

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hy.po,155,360,362,14,39,10,61,179,460,hy.po,,hy,,armenian,,,hy

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,235,664,593,0,0,0,0,235,664,hu.po,,hu,,hungarian,,,hu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,235,664,654,0,0,0,0,235,664,hr.po,,hr,,croatian,,,hr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,146,484,548,0,0,0,0,146,484,hi.po,,hi,,hindi,,,hi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,147,485,519,0,0,0,0,147,485,he.po,,he,,hebrew,,,he

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,147,485,491,0,0,0,0,147,485,gu.po,,gu,,gujarati,,,gu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,235,664,775,0,0,0,0,235,664,gl.po,,gl,,galician,,,gl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,237,667,780,0,0,0,0,237,667,gd.po,,gd,,scottish gaelic,,,gd

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,90,133,133,0,0,90,329,180,462,ga.po,,ga,,irish,,,ga

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,235,664,762,0,0,0,0,235,664,fur.po,,fur,,friulian,,,fur

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,235,664,774,0,0,0,0,235,664,fr.po,,fr,,french,,,fr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,193,367,309,32,97,9,198,234,662,fi.po,,fi,,finnish,,,fi

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,237,667,777,0,0,0,0,237,667,fa.po,,fa,,persian,,,fa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,235,664,552,0,0,0,0,235,664,eu.po,,eu,,basque,,,eu

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,148,483,382,0,0,0,0,148,483,et.po,,et,,estonian,,,et

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ve.po,235,664,735,0,0,0,0,235,664,es_ve.po,,es,ve,spanish,,venezuela,es_ve

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_uy.po,235,664,735,0,0,0,0,235,664,es_uy.po,,es,uy,spanish,,uruguay,es_uy

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_sv.po,235,664,735,0,0,0,0,235,664,es_sv.po,,es,sv,spanish,,el salvador,es_sv

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pr.po,235,664,735,0,0,0,0,235,664,es_pr.po,,es,pr,spanish,,puerto rico,es_pr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pe.po,235,664,735,0,0,0,0,235,664,es_pe.po,,es,pe,spanish,,peru,es_pe

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_pa.po,235,664,735,0,0,0,0,235,664,es_pa.po,,es,pa,spanish,,panama,es_pa

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ni.po,235,664,735,0,0,0,0,235,664,es_ni.po,,es,ni,spanish,,nicaragua,es_ni

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_mx.po,235,664,735,0,0,0,0,235,664,es_mx.po,,es,mx,spanish,,mexico,es_mx

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_hn.po,235,664,735,0,0,0,0,235,664,es_hn.po,,es,hn,spanish,,honduras,es_hn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_gt.po,235,664,735,0,0,0,0,235,664,es_gt.po,,es,gt,spanish,,guatemala,es_gt

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_es.po,235,664,735,0,0,0,0,235,664,es_es.po,,es,es,spanish,,spain,es_es

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ec.po,235,664,735,0,0,0,0,235,664,es_ec.po,,es,ec,spanish,,ecuador,es_ec

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_do.po,235,664,735,0,0,0,0,235,664,es_do.po,,es,do,spanish,,dominican republic,es_do

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_cr.po,235,664,735,0,0,0,0,235,664,es_cr.po,,es,cr,spanish,,costa rica,es_cr

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_co.po,235,664,735,0,0,0,0,235,664,es_co.po,,es,co,spanish,,colombia,es_co

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_cl.po,235,664,735,0,0,0,0,235,664,es_cl.po,,es,cl,spanish,,chile,es_cl

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es_ar.po,235,664,735,0,0,0,0,235,664,es_ar.po,,es,ar,spanish,,argentina,es_ar

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,235,664,735,0,0,0,0,235,664,es.po,,es,,spanish,,,es

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,230,483,469,0,0,5,181,235,664,eo.po,,eo,,esperanto,,,eo

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,234,662,662,0,0,0,0,234,662,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,179,460,460,0,0,0,0,179,460,en_ca.po,,en,ca,english,,canada,en_ca

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,181,465,465,0,0,0,0,181,465,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,235,664,703,0,0,0,0,235,664,el.po,,el,,greek,,,el

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,170,447,271,5,9,4,4,179,460,dz.po,,dz,,dzongkha,,,dz

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,235,664,576,0,0,0,0,235,664,de.po,,de,,german,,,de

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,235,664,549,0,0,0,0,235,664,da.po,,da,,danish,,,da

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,181,465,503,0,0,0,0,181,465,cy.po,,cy,,welsh,,,cy

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,235,664,623,0,0,0,0,235,664,cs.po,,cs,,czech,,,cs

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/crh.po,148,483,449,0,0,0,0,148,483,crh.po,,crh,,crimean turkish,,,crh

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,237,667,782,0,0,0,0,237,667,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,234,662,771,0,0,0,0,234,662,ca.po,,ca,,catalan,,,ca

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,146,484,492,0,0,0,0,146,484,bs.po,,bs,,bosnian,,,bs

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/br.po,51,75,80,1,2,129,388,181,465,br.po,,br,,breton,,,br

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,146,484,459,0,0,0,0,146,484,bn_in.po,,bn,in,bangla,,india,bn_in

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,181,465,448,0,0,0,0,181,465,bn.po,,bn,,bangla,,,bn

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,146,484,538,0,0,0,0,146,484,bg.po,,bg,,bulgarian,,,bg

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,179,461,455,0,0,0,0,179,461,be@latin.po,latin,be,,belarusian,,,be@latin

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,147,493,513,0,0,0,0,147,493,be.po,,be,,belarusian,,,be

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,145,324,324,19,56,15,80,179,460,az.po,,az,,azerbaijani,,,az

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,181,465,524,0,0,0,0,181,465,ast.po,,ast,,asturian,,,ast

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,146,484,456,0,0,0,0,146,484,as.po,,as,,assamese,,,as

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,228,466,529,0,0,6,196,234,662,ar.po,,ar,,arabic,,,ar

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,11,14,14,11,17,157,429,179,460,am.po,,am,,amharic,,,am

+ libgweather-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,133,274,233,5,11,7,198,145,483,af.po,,af,,afrikaans,,,af

+ libhangul-0.1.0-19.fc30.src.rpm.stats.csv,po/ko.po,9,16,15,0,0,0,0,9,16,ko.po,,ko,,korean,,,ko

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/ja.po,39,160,47,9,59,12,209,60,428,ja.po,,ja,,japanese,,,ja

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/hr.po,58,414,402,0,0,2,14,60,428,hr.po,,hr,,croatian,,,hr

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/sr.po,58,414,424,0,0,2,14,60,428,sr.po,,sr,,serbian,,,sr

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/nl.po,58,414,417,0,0,2,14,60,428,nl.po,,nl,,dutch,,,nl

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/sv.po,60,428,400,0,0,0,0,60,428,sv.po,,sv,,swedish,,,sv

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/fr.po,58,414,485,0,0,2,14,60,428,fr.po,,fr,,french,,,fr

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/de.po,58,414,391,0,0,2,14,60,428,de.po,,de,,german,,,de

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/en@quot.po,60,428,428,0,0,0,0,60,428,en@quot.po,quot,en,,english,,,en@quot

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/vi.po,58,414,615,0,0,2,14,60,428,vi.po,,vi,,vietnamese,,,vi

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/ro.po,2,16,16,7,46,51,366,60,428,ro.po,,ro,,romanian,,,ro

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/pt_br.po,58,414,461,0,0,2,14,60,428,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/uk.po,58,414,462,0,0,2,14,60,428,uk.po,,uk,,ukrainian,,,uk

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/cs.po,58,414,416,0,0,2,14,60,428,cs.po,,cs,,czech,,,cs

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/hu.po,58,414,396,0,0,2,14,60,428,hu.po,,hu,,hungarian,,,hu

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/id.po,58,414,415,0,0,2,14,60,428,id.po,,id,,indonesian,,,id

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/it.po,58,414,440,0,0,2,14,60,428,it.po,,it,,italian,,,it

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/eo.po,58,414,397,0,0,2,14,60,428,eo.po,,eo,,esperanto,,,eo

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/pl.po,58,414,424,0,0,2,14,60,428,pl.po,,pl,,polish,,,pl

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/es.po,4,21,21,28,100,28,307,60,428,es.po,,es,,spanish,,,es

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/da.po,58,414,414,0,0,2,14,60,428,da.po,,da,,danish,,,da

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/fi.po,58,414,352,0,0,2,14,60,428,fi.po,,fi,,finnish,,,fi

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/en@boldquot.po,60,428,431,0,0,0,0,60,428,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ libidn-1.35-5.fc30.src.rpm.stats.csv,po/zh_cn.po,58,414,184,0,0,2,14,60,428,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fur.po,35,270,331,1,12,3,24,39,306,fur.po,,fur,,friulian,,,fur

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/it.po,6,40,45,11,109,22,157,39,306,it.po,,it,,italian,,,it

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/vi.po,6,40,54,11,109,22,157,39,306,vi.po,,vi,,vietnamese,,,vi

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/hu.po,35,270,269,1,12,3,24,39,306,hu.po,,hu,,hungarian,,,hu

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/es.po,12,53,58,3,18,24,235,39,306,es.po,,es,,spanish,,,es

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/ro.po,1,14,14,2,8,36,284,39,306,ro.po,,ro,,romanian,,,ro

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/uk.po,35,270,277,1,12,3,24,39,306,uk.po,,uk,,ukrainian,,,uk

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/cs.po,35,270,272,1,12,3,24,39,306,cs.po,,cs,,czech,,,cs

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/hr.po,6,40,37,11,109,22,157,39,306,hr.po,,hr,,croatian,,,hr

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/sv.po,35,270,237,1,12,3,24,39,306,sv.po,,sv,,swedish,,,sv

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/pt_br.po,35,270,319,1,12,3,24,39,306,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/sr.po,6,40,37,11,109,22,157,39,306,sr.po,,sr,,serbian,,,sr

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/nl.po,6,40,36,11,109,22,157,39,306,nl.po,,nl,,dutch,,,nl

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/pl.po,35,270,274,1,12,3,24,39,306,pl.po,,pl,,polish,,,pl

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fr.po,35,270,327,1,12,3,24,39,306,fr.po,,fr,,french,,,fr

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/zh_cn.po,6,40,15,11,109,22,157,39,306,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/ja.po,2,16,2,8,31,29,259,39,306,ja.po,,ja,,japanese,,,ja

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/fi.po,6,40,32,11,109,22,157,39,306,fi.po,,fi,,finnish,,,fi

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/da.po,35,270,248,1,12,3,24,39,306,da.po,,da,,danish,,,da

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/id.po,6,40,40,11,109,22,157,39,306,id.po,,id,,indonesian,,,id

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/de.po,35,270,257,1,12,3,24,39,306,de.po,,de,,german,,,de

+ libidn2-2.1.1a-1.fc30.src.rpm.stats.csv,po/eo.po,6,40,41,11,109,22,157,39,306,eo.po,,eo,,esperanto,,,eo

+ libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,iptc/po/de.po,34,349,354,0,0,0,0,34,349,de.po,,de,,german,,,de

+ libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,iptc/po/it.po,34,349,386,0,0,0,0,34,349,it.po,,it,,italian,,,it

+ libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,po/de.po,169,1089,980,0,0,0,0,169,1089,de.po,,de,,german,,,de

+ libiptcdata-1.0.4-20.fc28.src.rpm.stats.csv,po/it.po,169,1089,1104,0,0,0,0,169,1089,it.po,,it,,italian,,,it

+ libkkc-0.3.5-14.fc30.src.rpm.stats.csv,po/ja.po,59,272,82,0,0,0,0,59,272,ja.po,,ja,,japanese,,,ja

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pl.po,155,723,715,0,0,1,5,156,728,pl.po,,pl,,polish,,,pl

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,156,728,156,728,bal.po,,bal,,baluchi,,,bal

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/de.po,114,468,436,0,0,42,260,156,728,de.po,,de,,german,,,de

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,156,728,156,728,ky.po,,ky,,kyrgyz,,,ky

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,156,728,156,728,ro.po,,ro,,romanian,,,ro

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,156,728,156,728,kn.po,,kn,,kannada,,,kn

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fr.po,153,711,854,0,0,3,17,156,728,fr.po,,fr,,french,,,fr

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,156,728,156,728,nso.po,,nso,,northern sotho,,,nso

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,156,728,156,728,kk.po,,kk,,kazakh,,,kk

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,156,728,156,728,gu.po,,gu,,gujarati,,,gu

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,156,728,156,728,el.po,,el,,greek,,,el

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,156,728,156,728,br.po,,br,,breton,,,br

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,156,728,156,728,hu.po,,hu,,hungarian,,,hu

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,156,728,156,728,gl.po,,gl,,galician,,,gl

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,156,728,156,728,is.po,,is,,icelandic,,,is

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,156,728,156,728,yo.po,,yo,,yoruba,,,yo

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,156,728,156,728,nn.po,,nn,,norwegian nynorsk,,,nn

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,156,728,156,728,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,156,728,156,728,pa.po,,pa,,punjabi,,,pa

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,156,728,156,728,et.po,,et,,estonian,,,et

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,156,728,156,728,hi.po,,hi,,hindi,,,hi

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,156,728,156,728,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,156,728,156,728,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,156,728,156,728,ar.po,,ar,,arabic,,,ar

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,156,728,156,728,ne.po,,ne,,nepali,,,ne

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,156,728,156,728,sv.po,,sv,,swedish,,,sv

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/it.po,155,723,807,0,0,1,5,156,728,it.po,,it,,italian,,,it

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,156,728,156,728,nb.po,,nb,,norwegian bokmål,,,nb

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/uk.po,155,723,760,0,0,1,5,156,728,uk.po,,uk,,ukrainian,,,uk

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,156,728,156,728,ko.po,,ko,,korean,,,ko

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,156,728,156,728,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,156,728,156,728,anp.po,,anp,,angika,,,anp

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,156,728,156,728,km.po,,km,,khmer,,,km

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,156,728,156,728,bn_in.po,,bn,in,bangla,,india,bn_in

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,156,728,156,728,or.po,,or,,odia,,,or

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,156,728,156,728,nl.po,,nl,,dutch,,,nl

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,156,728,156,728,as.po,,as,,assamese,,,as

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,156,728,156,728,id.po,,id,,indonesian,,,id

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,156,728,156,728,ru.po,,ru,,russian,,,ru

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ja.po,114,468,218,0,0,42,260,156,728,ja.po,,ja,,japanese,,,ja

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,156,728,156,728,eo.po,,eo,,esperanto,,,eo

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,156,728,156,728,te.po,,te,,telugu,,,te

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,156,728,156,728,mai.po,,mai,,maithili,,,mai

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,156,728,156,728,zu.po,,zu,,zulu,,,zu

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,156,728,156,728,ur.po,,ur,,urdu,,,ur

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,156,728,156,728,bs.po,,bs,,bosnian,,,bs

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,156,728,156,728,ast.po,,ast,,asturian,,,ast

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,156,728,156,728,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,156,728,156,728,cy.po,,cy,,welsh,,,cy

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,156,728,156,728,am.po,,am,,amharic,,,am

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,156,728,156,728,bg.po,,bg,,bulgarian,,,bg

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,156,728,156,728,tr.po,,tr,,turkish,,,tr

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,156,728,156,728,he.po,,he,,hebrew,,,he

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,156,728,156,728,be.po,,be,,belarusian,,,be

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,156,728,156,728,kw.po,,kw,,cornish,,,kw

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,156,728,156,728,mn.po,,mn,,mongolian,,,mn

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/es.po,22,60,66,0,0,134,668,156,728,es.po,,es,,spanish,,,es

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,156,728,156,728,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,156,728,156,728,bn.po,,bn,,bangla,,,bn

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,156,728,156,728,mk.po,,mk,,macedonian,,,mk

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,156,728,156,728,hr.po,,hr,,croatian,,,hr

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,156,728,156,728,ka.po,,ka,,georgian,,,ka

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,16,23,25,0,0,140,705,156,728,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,156,728,156,728,sq.po,,sq,,albanian,,,sq

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fi.po,28,70,51,0,0,128,658,156,728,fi.po,,fi,,finnish,,,fi

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,156,728,156,728,tg.po,,tg,,tajik,,,tg

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,156,728,156,728,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,156,728,156,728,af.po,,af,,afrikaans,,,af

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,156,728,156,728,eu.po,,eu,,basque,,,eu

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,156,728,156,728,ilo.po,,ilo,,iloko,,,ilo

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,156,728,156,728,nds.po,,nds,,low german,,,nds

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ca.po,141,640,837,0,0,15,88,156,728,ca.po,,ca,,catalan,,,ca

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,156,728,156,728,bo.po,,bo,,tibetan,,,bo

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,156,728,156,728,pt.po,,pt,,portuguese,,,pt

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,156,728,156,728,ta.po,,ta,,tamil,,,ta

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,156,728,156,728,fa.po,,fa,,persian,,,fa

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,156,728,156,728,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,156,728,156,728,sr.po,,sr,,serbian,,,sr

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,156,728,156,728,ia.po,,ia,,interlingua,,,ia

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,156,728,156,728,lv.po,,lv,,latvian,,,lv

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,156,728,156,728,sk.po,,sk,,slovak,,,sk

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,156,728,156,728,si.po,,si,,sinhala,,,si

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,156,728,156,728,mr.po,,mr,,marathi,,,mr

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,156,728,156,728,da.po,,da,,danish,,,da

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,156,728,156,728,vi.po,,vi,,vietnamese,,,vi

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,156,728,156,728,sl.po,,sl,,slovenian,,,sl

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,156,728,156,728,ml.po,,ml,,malayalam,,,ml

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,156,728,156,728,lt.po,,lt,,lithuanian,,,lt

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,156,728,156,728,ms.po,,ms,,malay,,,ms

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,156,728,156,728,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,156,728,156,728,tw.po,,tw,,twi,,,tw

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,156,728,156,728,brx.po,,brx,,bodo,,,brx

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,156,728,156,728,th.po,,th,,thai,,,th

+ libosinfo-1.4.0-2.fc30.src.rpm.stats.csv,po/cs.po,141,640,608,0,0,15,88,156,728,cs.po,,cs,,czech,,,cs

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/nl.po,46,73,147,0,0,0,0,46,73,nl.po,,nl,,dutch,,,nl

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ru.po,46,73,68,0,0,0,0,46,73,ru.po,,ru,,russian,,,ru

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/sv.po,46,73,76,0,0,0,0,46,73,sv.po,,sv,,swedish,,,sv

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/uk.po,0,0,0,1,25,45,48,46,73,uk.po,,uk,,ukrainian,,,uk

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/tr.po,46,73,66,0,0,0,0,46,73,tr.po,,tr,,turkish,,,tr

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/da.po,46,73,73,0,0,0,0,46,73,da.po,,da,,danish,,,da

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pt_br.po,46,73,81,0,0,0,0,46,73,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/es.po,46,73,80,0,0,0,0,46,73,es.po,,es,,spanish,,,es

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/cs.po,46,73,67,0,0,0,0,46,73,cs.po,,cs,,czech,,,cs

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/gl.po,46,73,77,0,0,0,0,46,73,gl.po,,gl,,galician,,,gl

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/fr.po,46,73,73,0,0,0,0,46,73,fr.po,,fr,,french,,,fr

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/it.po,46,73,69,0,0,0,0,46,73,it.po,,it,,italian,,,it

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pl.po,46,73,78,0,0,0,0,46,73,pl.po,,pl,,polish,,,pl

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ja.po,46,73,48,0,0,0,0,46,73,ja.po,,ja,,japanese,,,ja

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/sk.po,46,73,70,0,0,0,0,46,73,sk.po,,sk,,slovak,,,sk

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/ca.po,46,73,82,0,0,0,0,46,73,ca.po,,ca,,catalan,,,ca

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/vi.po,46,73,97,0,0,0,0,46,73,vi.po,,vi,,vietnamese,,,vi

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/de.po,46,73,78,0,0,0,0,46,73,de.po,,de,,german,,,de

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/hu.po,2,29,22,0,0,44,44,46,73,hu.po,,hu,,hungarian,,,hu

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/eu.po,46,73,72,0,0,0,0,46,73,eu.po,,eu,,basque,,,eu

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/fi.po,46,73,60,0,0,0,0,46,73,fi.po,,fi,,finnish,,,fi

+ libpaper-1.1.24-24.fc30.src.rpm.stats.csv,debian/po/pt.po,46,73,88,0,0,0,0,46,73,pt.po,,pt,,portuguese,,,pt

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/th.po,34,112,54,0,0,0,0,34,112,th.po,,th,,thai,,,th

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_tw.po,34,112,37,0,0,0,0,34,112,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/uk.po,26,105,83,0,0,0,0,26,105,uk.po,,uk,,ukrainian,,,uk

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/el.po,34,112,112,0,0,0,0,34,112,el.po,,el,,greek,,,el

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nds.po,11,24,21,0,0,0,0,11,24,nds.po,,nds,,low german,,,nds

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/lt.po,34,112,94,0,0,0,0,34,112,lt.po,,lt,,lithuanian,,,lt

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fr.po,34,112,127,0,0,0,0,34,112,fr.po,,fr,,french,,,fr

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ast.po,24,103,103,0,0,0,0,24,103,ast.po,,ast,,asturian,,,ast

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/id.po,34,112,98,0,0,0,0,34,112,id.po,,id,,indonesian,,,id

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/an.po,34,111,118,0,0,0,0,34,111,an.po,,an,,aragonese,,,an

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/tg.po,26,105,107,0,0,0,0,26,105,tg.po,,tg,,tajik,,,tg

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/be.po,34,112,99,0,0,0,0,34,112,be.po,,be,,belarusian,,,be

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/de.po,34,112,110,0,0,0,0,34,112,de.po,,de,,german,,,de

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ar.po,26,105,85,0,0,0,0,26,105,ar.po,,ar,,arabic,,,ar

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/he.po,34,112,100,0,0,0,0,34,112,he.po,,he,,hebrew,,,he

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sr.po,34,112,110,0,0,0,0,34,112,sr.po,,sr,,serbian,,,sr

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/te.po,31,110,101,0,0,0,0,31,110,te.po,,te,,telugu,,,te

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ml.po,26,105,88,0,0,0,0,26,105,ml.po,,ml,,malayalam,,,ml

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pl.po,34,112,107,0,0,0,0,34,112,pl.po,,pl,,polish,,,pl

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/it.po,34,112,117,0,0,0,0,34,112,it.po,,it,,italian,,,it

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/as.po,31,110,125,0,0,0,0,31,110,as.po,,as,,assamese,,,as

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_hk.po,31,110,35,0,0,0,0,31,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/eu.po,34,112,111,0,0,0,0,34,112,eu.po,,eu,,basque,,,eu

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/gu.po,31,110,126,0,0,0,0,31,110,gu.po,,gu,,gujarati,,,gu

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bg.po,26,105,114,0,0,0,0,26,105,bg.po,,bg,,bulgarian,,,bg

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/gl.po,34,112,122,0,0,0,0,34,112,gl.po,,gl,,galician,,,gl

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ta.po,31,110,102,0,0,0,0,31,110,ta.po,,ta,,tamil,,,ta

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hi.po,31,110,135,0,0,0,0,31,110,hi.po,,hi,,hindi,,,hi

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sv.po,34,112,107,0,0,0,0,34,112,sv.po,,sv,,swedish,,,sv

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ne.po,19,33,38,6,22,6,55,31,110,ne.po,,ne,,nepali,,,ne

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ru.po,34,112,104,0,0,0,0,34,112,ru.po,,ru,,russian,,,ru

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nl.po,27,106,99,0,0,0,0,27,106,nl.po,,nl,,dutch,,,nl

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hu.po,34,112,103,0,0,0,0,34,112,hu.po,,hu,,hungarian,,,hu

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fi.po,34,112,100,0,0,0,0,34,112,fi.po,,fi,,finnish,,,fi

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bs.po,34,111,105,0,0,0,0,34,111,bs.po,,bs,,bosnian,,,bs

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fur.po,34,112,133,0,0,0,0,34,112,fur.po,,fur,,friulian,,,fur

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/oc.po,34,112,121,0,0,0,0,34,112,oc.po,,oc,,occitan,,,oc

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/hr.po,34,112,105,0,0,0,0,34,112,hr.po,,hr,,croatian,,,hr

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ro.po,34,112,131,0,0,0,0,34,112,ro.po,,ro,,romanian,,,ro

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ca@valencia.po,31,110,121,0,0,0,0,31,110,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/or.po,31,110,127,0,0,0,0,31,110,or.po,,or,,odia,,,or

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/fa.po,34,112,109,0,0,0,0,34,112,fa.po,,fa,,persian,,,fa

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/da.po,34,112,107,0,0,0,0,34,112,da.po,,da,,danish,,,da

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/en_gb.po,34,112,112,0,0,0,0,34,112,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pa.po,31,110,119,0,0,0,0,31,110,pa.po,,pa,,punjabi,,,pa

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/mr.po,31,110,115,0,0,0,0,31,110,mr.po,,mr,,marathi,,,mr

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/vi.po,26,105,135,0,0,0,0,26,105,vi.po,,vi,,vietnamese,,,vi

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/is.po,27,56,62,0,0,7,55,34,111,is.po,,is,,icelandic,,,is

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sk.po,34,112,117,0,0,0,0,34,112,sk.po,,sk,,slovak,,,sk

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/et.po,26,105,80,0,0,0,0,26,105,et.po,,et,,estonian,,,et

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ko.po,34,112,92,0,0,0,0,34,112,ko.po,,ko,,korean,,,ko

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/zh_cn.po,34,112,37,0,0,0,0,34,112,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/lv.po,34,112,95,0,0,0,0,34,112,lv.po,,lv,,latvian,,,lv

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/bn_in.po,31,110,124,0,0,0,0,31,110,bn_in.po,,bn,in,bangla,,india,bn_in

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/cs.po,34,112,118,0,0,0,0,34,112,cs.po,,cs,,czech,,,cs

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sr@latin.po,34,112,110,0,0,0,0,34,112,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pt_br.po,34,112,116,0,0,0,0,34,112,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/kn.po,34,111,107,0,0,0,0,34,111,kn.po,,kn,,kannada,,,kn

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/kk.po,34,112,96,0,0,0,0,34,112,kk.po,,kk,,kazakh,,,kk

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/nb.po,34,112,112,0,0,0,0,34,112,nb.po,,nb,,norwegian bokmål,,,nb

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/es.po,34,112,119,0,0,0,0,34,112,es.po,,es,,spanish,,,es

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/eo.po,24,103,91,0,0,0,0,24,103,eo.po,,eo,,esperanto,,,eo

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ja.po,30,99,48,3,9,1,3,34,111,ja.po,,ja,,japanese,,,ja

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ug.po,26,105,89,0,0,0,0,26,105,ug.po,,ug,,uyghur,,,ug

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/pt.po,34,112,119,0,0,0,0,34,112,pt.po,,pt,,portuguese,,,pt

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/ca.po,34,112,124,0,0,0,0,34,112,ca.po,,ca,,catalan,,,ca

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/tr.po,34,112,103,0,0,0,0,34,112,tr.po,,tr,,turkish,,,tr

+ libpeas-1.22.0-10.fc30.src.rpm.stats.csv,po/sl.po,34,112,114,0,0,0,0,34,112,sl.po,,sl,,slovenian,,,sl

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/hu.po,53,343,311,0,0,0,0,53,343,hu.po,,hu,,hungarian,,,hu

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/bn_in.po,53,343,307,0,0,0,0,53,343,bn_in.po,,bn,in,bangla,,india,bn_in

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/si.po,6,18,19,0,0,47,325,53,343,si.po,,si,,sinhala,,,si

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/de.po,53,343,308,0,0,0,0,53,343,de.po,,de,,german,,,de

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/kk.po,6,18,20,0,0,47,325,53,343,kk.po,,kk,,kazakh,,,kk

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/tr.po,6,18,17,0,0,47,325,53,343,tr.po,,tr,,turkish,,,tr

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/fi.po,53,343,255,0,0,0,0,53,343,fi.po,,fi,,finnish,,,fi

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ru.po,53,343,275,0,0,0,0,53,343,ru.po,,ru,,russian,,,ru

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sr.po,53,343,290,0,0,0,0,53,343,sr.po,,sr,,serbian,,,sr

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sk.po,53,343,292,0,0,0,0,53,343,sk.po,,sk,,slovak,,,sk

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/te.po,53,343,255,0,0,0,0,53,343,te.po,,te,,telugu,,,te

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/uk.po,53,343,311,0,0,0,0,53,343,uk.po,,uk,,ukrainian,,,uk

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/gu.po,53,343,309,0,0,0,0,53,343,gu.po,,gu,,gujarati,,,gu

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/nb.po,6,18,18,0,0,47,325,53,343,nb.po,,nb,,norwegian bokmål,,,nb

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/fr.po,53,343,462,0,0,0,0,53,343,fr.po,,fr,,french,,,fr

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zu.po,6,18,17,0,0,47,325,53,343,zu.po,,zu,,zulu,,,zu

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/he.po,53,343,286,0,0,0,0,53,343,he.po,,he,,hebrew,,,he

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/kn.po,53,343,259,0,0,0,0,53,343,kn.po,,kn,,kannada,,,kn

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zh_tw.po,53,343,81,0,0,0,0,53,343,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sq.po,9,59,53,0,0,44,284,53,343,sq.po,,sq,,albanian,,,sq

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ja.po,53,343,86,0,0,0,0,53,343,ja.po,,ja,,japanese,,,ja

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ta.po,53,343,285,0,0,0,0,53,343,ta.po,,ta,,tamil,,,ta

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/da.po,53,343,305,0,0,0,0,53,343,da.po,,da,,danish,,,da

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/nl.po,53,343,339,0,0,0,0,53,343,nl.po,,nl,,dutch,,,nl

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/bg.po,51,324,304,0,0,2,19,53,343,bg.po,,bg,,bulgarian,,,bg

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/vi.po,6,18,32,0,0,47,325,53,343,vi.po,,vi,,vietnamese,,,vi

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/or.po,53,343,344,0,0,0,0,53,343,or.po,,or,,odia,,,or

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sr@latin.po,6,18,19,0,0,47,325,53,343,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ko.po,53,343,274,0,0,0,0,53,343,ko.po,,ko,,korean,,,ko

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/km.po,53,343,101,0,0,0,0,53,343,km.po,,km,,khmer,,,km

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/cs.po,53,343,291,0,0,0,0,53,343,cs.po,,cs,,czech,,,cs

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/zh_cn.po,53,343,86,0,0,0,0,53,343,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pt_br.po,53,343,372,0,0,0,0,53,343,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pl.po,53,343,307,0,0,0,0,53,343,pl.po,,pl,,polish,,,pl

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/sv.po,53,343,290,0,0,0,0,53,343,sv.po,,sv,,swedish,,,sv

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ca.po,53,343,389,0,0,0,0,53,343,ca.po,,ca,,catalan,,,ca

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ur.po,6,23,33,0,0,47,320,53,343,ur.po,,ur,,urdu,,,ur

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/hi.po,53,343,356,0,0,0,0,53,343,hi.po,,hi,,hindi,,,hi

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pt.po,53,343,372,0,0,0,0,53,343,pt.po,,pt,,portuguese,,,pt

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/as.po,53,343,289,0,0,0,0,53,343,as.po,,as,,assamese,,,as

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/mr.po,53,343,287,0,0,0,0,53,343,mr.po,,mr,,marathi,,,mr

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/eu.po,23,108,85,0,0,30,235,53,343,eu.po,,eu,,basque,,,eu

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/it.po,53,343,350,0,0,0,0,53,343,it.po,,it,,italian,,,it

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ar.po,6,18,29,0,0,47,325,53,343,ar.po,,ar,,arabic,,,ar

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/pa.po,53,343,381,0,0,0,0,53,343,pa.po,,pa,,punjabi,,,pa

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/ml.po,53,343,219,0,0,0,0,53,343,ml.po,,ml,,malayalam,,,ml

+ libpwquality-1.4.0-12.fc30.src.rpm.stats.csv,po/es.po,53,343,398,0,0,0,0,53,343,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ab/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/af/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/am/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/an/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ar/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/as/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sr.po,1,9,13,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ast/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/az/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/be/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bg/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bn/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bo/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/an_es.po,1,3,6,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/be_by.po,1,3,6,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bg_bg.po,1,7,13,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bn_bd.po,1,3,6,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/br_fr.po,1,3,6,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/bs_ba.po,1,3,6,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ca.po,1,7,13,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/da_dk.po,1,7,13,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/de.po,1,10,18,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/el_gr.po,1,6,11,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/es.po,1,12,18,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/fr_fr.po,1,7,13,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/gu_in.po,1,3,6,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/he_il.po,1,3,6,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/is.po,1,7,13,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/it_it.po,1,7,13,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lo_la.po,1,3,6,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ne_np.po,1,5,10,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/no.po,1,10,16,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/oc_fr.po,1,3,6,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pl_pl.po,1,7,13,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/pt_pt.po,1,8,14,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ro.po,1,7,13,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/si_lk.po,1,3,6,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sk_sk.po,1,7,13,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sl_si.po,1,7,13,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sr.po,1,9,13,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/sw_tz.po,1,3,6,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/te_in.po,1,6,11,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/th_th.po,1,3,6,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/uk_ua.po,1,7,13,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/vi.po,1,3,6,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/br/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/brx/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ca.po,1,7,14,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/de.po,1,10,17,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/en.po,1,9,16,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/et_ee.po,1,6,12,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hr_hr.po,1,6,12,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/it_it.po,1,7,14,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lt_lt.po,1,6,12,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/lv_lv.po,1,6,12,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/nl_nl.po,1,6,12,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_br.po,1,9,15,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/pt_pt.po,1,8,15,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ro.po,1,7,14,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/ru_ru.po,1,9,16,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sk_sk.po,1,7,14,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sl_si.po,1,7,14,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sr.po,1,9,15,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/te_in.po,1,6,12,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/uk_ua.po,1,7,14,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/dictionaries/zu_za.po,1,3,9,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/bs/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bg_bg.po,1,7,12,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bo.po,1,6,9,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/es.po,1,12,20,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/hu_hu.po,1,9,14,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/no.po,1,10,15,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/ru_ru.po,1,9,14,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca-valencia/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bg_bg.po,1,7,12,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bo.po,1,6,9,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ca.po,1,7,12,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/cs_cz.po,1,8,12,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/en.po,1,9,14,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/es.po,1,12,20,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/hu_hu.po,1,9,14,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/id.po,1,7,12,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ne_np.po,1,5,9,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/no.po,1,10,15,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/ru_ru.po,1,9,14,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ca/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ar.po,1,5,8,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cs/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/cy/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/da/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/de/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sr.po,1,9,6,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dgo/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dsb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/dz/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/cs_cz.po,1,8,6,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/el/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-gb/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/en-za/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sv_se.po,1,2,4,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eo/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/es/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/et/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/eu/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fa/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bo.po,1,6,4,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fi/scp2/source/kde.po,2,9,5,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/hu_hu.po,1,9,15,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/ru_ru.po,1,9,15,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fr/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/fy/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ga/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gd/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/id.po,1,7,8,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gl/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gu/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/en.po,0,0,0,1,9,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/gug/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/he/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hi/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bn_bd.po,1,3,7,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sq_al.po,1,3,6,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hr/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hsb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/es.po,1,12,11,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/hu/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_br.po,1,9,13,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/id/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/hu_hu.po,1,9,5,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_br.po,1,9,5,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/ru_ru.po,1,9,5,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/is/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/it/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bo.po,1,6,1,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_br.po,1,9,2,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/pt_pt.po,1,8,3,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ja/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/jv/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ka/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/af_za.po,1,6,11,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/es.po,1,12,17,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/et_ee.po,1,6,11,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gd_gb.po,1,4,7,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hr_hr.po,1,6,11,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/id.po,1,7,12,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lt_lt.po,1,6,11,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/lv_lv.po,1,6,11,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/nl_nl.po,1,6,11,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sr.po,1,9,14,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/te_in.po,1,6,11,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kab/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kk/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/dictionaries/zu_za.po,0,0,0,1,3,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kl/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/af_za.po,1,6,2,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ar.po,1,5,2,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bg_bg.po,1,7,3,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ca.po,1,7,3,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/da_dk.po,1,7,3,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/de.po,1,10,7,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/el_gr.po,1,6,2,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/et_ee.po,1,6,2,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/fr_fr.po,1,7,3,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gl.po,1,7,3,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hr_hr.po,1,6,2,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/hu_hu.po,1,9,3,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/it_it.po,1,7,3,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lt_lt.po,1,6,2,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/lv_lv.po,1,6,2,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ne_np.po,1,5,2,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/nl_nl.po,1,6,2,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/no.po,1,10,5,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pl_pl.po,1,7,3,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_br.po,1,9,4,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/pt_pt.po,1,8,3,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ro.po,1,7,3,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/ru_ru.po,1,9,4,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sk_sk.po,1,7,3,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sl_si.po,1,7,3,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sr.po,1,9,4,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/te_in.po,1,6,2,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/uk_ua.po,1,7,3,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/km/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kmr-latn/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_br.po,1,9,8,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kn/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ko/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ar.po,1,5,12,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/br_fr.po,1,3,10,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ca.po,1,7,15,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/da_dk.po,1,7,15,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/et_ee.po,1,6,13,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hr_hr.po,1,6,13,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/it_it.po,1,7,15,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lt_lt.po,1,6,13,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/lv_lv.po,1,6,14,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ne_np.po,1,5,12,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/nl_nl.po,1,6,13,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pl_pl.po,1,7,15,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ro.po,1,7,15,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sk_sk.po,1,7,15,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sl_si.po,1,7,15,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sr.po,1,9,16,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/uk_ua.po,1,7,15,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/kok/scp2/source/kde.po,2,9,16,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ks/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ky/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bg_bg.po,0,0,0,1,7,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/da_dk.po,0,0,0,1,7,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lb/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/hu_hu.po,1,9,6,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lt_lt.po,1,6,4,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/lv_lv.po,1,6,4,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/no.po,1,10,7,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sr.po,1,9,6,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lo/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sv_se.po,1,2,5,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/tr_tr.po,1,3,5,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lt/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/es.po,1,12,10,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/lv/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mai/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mk/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ca.po,1,7,6,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/hu_hu.po,1,9,8,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/no.po,1,10,6,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/ru_ru.po,1,9,8,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ml/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/be_by.po,1,3,7,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bn_bd.po,1,3,10,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/da_dk.po,1,7,12,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/en.po,1,9,15,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/fr_fr.po,1,7,12,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gl.po,1,7,12,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/gu_in.po,1,3,7,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/he_il.po,1,3,7,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hi_in.po,1,3,7,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/hu_hu.po,1,9,15,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/is.po,1,7,12,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lo_la.po,1,3,7,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pl_pl.po,1,7,12,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ro.po,1,7,12,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/ru_ru.po,1,9,15,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sk_sk.po,1,7,12,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/sw_tz.po,1,3,7,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/te_in.po,1,6,10,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/th_th.po,1,3,7,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/vi.po,1,3,7,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mn/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mni/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/mr/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bg_bg.po,1,7,4,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ca.po,1,7,4,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/hu_hu.po,1,9,4,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/it_it.po,1,7,4,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ne_np.po,1,5,3,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ro.po,1,7,4,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/uk_ua.po,1,7,4,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/my/scp2/source/kde.po,2,9,5,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nb/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ca.po,1,7,2,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ne/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/en.po,1,9,7,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/id.po,1,7,6,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/ru_ru.po,1,9,7,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nl/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/an_es.po,1,3,2,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/be_by.po,1,3,2,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bg_bg.po,1,7,5,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bn_bd.po,1,3,2,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/bs_ba.po,1,3,2,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/da_dk.po,1,7,5,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/de.po,1,10,8,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/et_ee.po,1,6,4,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/fr_fr.po,1,7,5,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gd_gb.po,1,4,2,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gl.po,1,7,5,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/gu_in.po,1,3,2,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hi_in.po,1,3,2,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hr_hr.po,1,6,4,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/it_it.po,1,7,5,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/nl_nl.po,1,6,4,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/no.po,1,10,8,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pl_pl.po,1,7,5,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_br.po,1,9,6,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/pt_pt.po,1,8,5,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ro.po,1,7,5,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/si_lk.po,1,3,2,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sk_sk.po,1,7,5,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sl_si.po,1,7,5,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/te_in.po,1,6,4,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/uk_ua.po,1,7,5,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nn/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nr/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/nso/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/de.po,1,10,15,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ne_np.po,1,5,4,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/sw_tz.po,1,3,6,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/te_in.po,1,6,9,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/oc/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/af_za.po,1,6,4,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bg_bg.po,1,7,4,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ca.po,1,7,4,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/da_dk.po,1,7,4,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/de.po,1,10,4,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/el_gr.po,1,6,4,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/en.po,1,9,4,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/hu_hu.po,0,0,0,1,9,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/om/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/or/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pa-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/an_es.po,1,3,6,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/cs_cz.po,1,8,10,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/id.po,1,7,10,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/no.po,1,10,13,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/pt_pt.po,1,8,13,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pl/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt-br/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/el_gr.po,1,6,8,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/hu_hu.po,1,9,11,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lo_la.po,1,3,4,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/lv_lv.po,1,6,8,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/nl_nl.po,1,6,8,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sq_al.po,1,3,4,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/pt/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gl.po,1,7,9,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ro/scp2/source/kde.po,2,9,13,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ru/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/rw/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bg_bg.po,0,0,0,1,7,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/br_fr.po,1,3,2,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/oc_fr.po,1,3,2,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/pt_pt.po,1,8,7,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/sw_tz.po,1,3,2,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/th_th.po,1,3,2,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/vi.po,1,3,2,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/dictionaries/zu_za.po,1,3,2,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sa-in/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sah/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ar.po,1,5,12,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bg_bg.po,1,7,17,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ca.po,1,7,32,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/da_dk.po,1,7,15,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/fr_fr.po,1,7,16,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/it_it.po,1,7,16,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ne_np.po,1,5,12,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pl_pl.po,1,7,16,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ro.po,1,7,16,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sk_sk.po,1,7,16,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sl_si.po,1,7,16,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/uk_ua.po,1,7,16,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/dictionaries/zu_za.po,1,3,5,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sat/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/an_es.po,0,0,0,1,3,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/be_by.po,0,0,0,1,3,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/de.po,0,0,0,1,10,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/et_ee.po,1,6,9,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hr_hr.po,1,6,9,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lt_lt.po,1,6,9,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/no.po,0,0,0,1,10,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sd/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/si/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/bs_ba.po,1,3,4,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/uk_ua.po,1,7,9,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sid/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/af_za.po,1,6,9,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ar.po,1,5,7,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bg_bg.po,1,7,9,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bn_bd.po,1,3,5,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bo.po,1,6,6,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/br_fr.po,1,3,5,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/bs_ba.po,1,3,5,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/de.po,1,10,13,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/el_gr.po,1,6,10,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/et_ee.po,1,6,10,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gd_gb.po,1,4,5,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/he_il.po,1,3,5,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hr_hr.po,1,6,10,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lo_la.po,1,3,5,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lt_lt.po,1,6,10,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/lv_lv.po,1,6,10,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/nl_nl.po,1,6,10,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pl_pl.po,1,7,9,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_br.po,1,9,14,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/pt_pt.po,1,8,12,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sq_al.po,1,3,5,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sr.po,1,9,12,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/te_in.po,1,6,10,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/th_th.po,1,3,5,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/vi.po,1,3,5,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/dictionaries/zu_za.po,1,3,6,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sk/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/af_za.po,1,6,12,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/an_es.po,1,3,7,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/be_by.po,1,3,7,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bg_bg.po,1,7,14,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bn_bd.po,1,3,7,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bo.po,1,6,11,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/br_fr.po,1,3,7,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ca.po,1,7,14,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/cs_cz.po,1,8,14,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/de.po,1,10,17,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/el_gr.po,1,6,12,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/en.po,1,9,16,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/es.po,1,12,19,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/et_ee.po,1,6,12,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/fr_fr.po,1,7,14,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gd_gb.po,1,4,8,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gl.po,1,7,14,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/gu_in.po,1,3,7,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/he_il.po,1,3,7,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hi_in.po,1,3,7,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hr_hr.po,1,6,12,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/id.po,1,7,14,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/is.po,1,7,14,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/it_it.po,1,7,14,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lo_la.po,1,3,7,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lt_lt.po,1,6,12,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/lv_lv.po,1,6,12,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ne_np.po,1,5,10,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/nl_nl.po,1,6,12,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/oc_fr.po,1,3,7,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/pt_pt.po,1,8,15,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ro.po,1,7,14,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/ru_ru.po,1,9,16,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/si_lk.po,1,3,7,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sk_sk.po,1,7,14,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sl_si.po,1,7,14,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sq_al.po,1,3,7,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sr.po,1,9,15,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sv_se.po,1,2,7,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/sw_tz.po,1,3,7,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/te_in.po,1,6,12,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/th_th.po,1,3,7,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/tr_tr.po,1,3,7,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/uk_ua.po,1,7,14,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/vi.po,1,3,7,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/dictionaries/zu_za.po,1,3,7,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sl/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/af_za.po,1,6,8,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ca.po,1,7,9,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/cs_cz.po,1,8,9,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/en.po,1,9,11,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/es.po,1,12,14,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/fr_fr.po,1,7,9,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gd_gb.po,1,4,6,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/is.po,1,7,9,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/it_it.po,1,7,9,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/no.po,1,10,12,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/pt_pt.po,1,8,10,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ro.po,1,7,9,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sk_sk.po,1,7,9,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sl_si.po,1,7,9,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/tr_tr.po,1,3,6,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sq/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr-latn/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sr/scp2/source/kde.po,2,9,11,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ss/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/st/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bo.po,1,6,5,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ca.po,1,7,5,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/cs_cz.po,1,8,5,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/de.po,1,10,9,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/el_gr.po,1,6,5,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/en.po,1,9,6,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/et_ee.po,1,6,5,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/fr_fr.po,1,7,6,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gd_gb.po,1,4,3,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gl.po,1,7,6,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/he_il.po,1,3,2,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hr_hr.po,1,6,5,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/hu_hu.po,1,9,7,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/id.po,1,7,5,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/is.po,1,7,5,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/it_it.po,1,7,6,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lo_la.po,1,3,2,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/nl_nl.po,1,6,5,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pl_pl.po,1,7,6,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_br.po,1,9,7,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/pt_pt.po,1,8,6,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ro.po,1,7,6,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/ru_ru.po,1,9,6,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sk_sk.po,1,7,6,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sl_si.po,1,7,6,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sq_al.po,1,3,2,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sr.po,1,9,8,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/te_in.po,1,6,5,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/tr_tr.po,1,3,2,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/uk_ua.po,1,7,6,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sv/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/sw-tz/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/szl/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/af_za.po,1,6,5,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ar.po,1,5,4,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bg_bg.po,1,7,6,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/da_dk.po,1,7,6,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/el_gr.po,1,6,9,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/es.po,1,12,9,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/no.po,1,10,9,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sr.po,1,9,7,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ta/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lt_lt.po,1,6,5,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/lv_lv.po,1,6,5,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/te/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tg/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ar.po,1,5,3,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bg_bg.po,1,7,2,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bn_bd.po,0,0,0,1,3,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/br_fr.po,0,0,0,1,3,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ca.po,1,7,2,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/da_dk.po,0,0,0,1,7,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/el_gr.po,0,0,0,1,6,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/th/scp2/source/kde.po,0,0,0,2,9,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ti/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tn/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/cs_cz.po,1,8,8,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/da_dk.po,1,7,9,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/en.po,1,9,8,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/es.po,1,12,13,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gl.po,1,7,8,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/id.po,1,7,9,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/is.po,1,7,8,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_br.po,1,9,10,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/ru_ru.po,1,9,11,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/tr_tr.po,1,3,4,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tr/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ts/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/be_by.po,1,3,4,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bn_bd.po,1,3,4,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/br_fr.po,1,3,4,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/bs_ba.po,0,0,0,1,3,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ca.po,1,7,8,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/gu_in.po,1,3,4,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/he_il.po,1,3,4,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hi_in.po,1,3,4,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/hu_hu.po,1,9,10,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/it_it.po,1,7,8,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/no.po,1,10,11,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/oc_fr.po,1,3,4,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pl_pl.po,1,7,8,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/pt_pt.po,1,8,9,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ro.po,1,7,8,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/ru_ru.po,1,9,10,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/si_lk.po,1,3,4,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sk_sk.po,1,7,8,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sl_si.po,1,7,8,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/sw_tz.po,1,3,4,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/th_th.po,1,3,4,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/uk_ua.po,1,7,8,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/vi.po,1,3,4,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/tt/scp2/source/kde.po,0,0,0,1,7,1,2,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ar.po,1,5,6,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bg_bg.po,1,7,10,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ca.po,1,7,10,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/da_dk.po,1,7,10,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/de.po,1,10,12,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/en.po,1,9,12,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/es.po,1,12,15,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/fr_fr.po,1,7,10,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gl.po,1,7,10,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/hu_hu.po,1,9,12,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/is.po,1,7,10,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/it_it.po,1,7,10,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ne_np.po,1,5,6,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pl_pl.po,1,7,10,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_br.po,1,9,11,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ro.po,1,7,10,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/ru_ru.po,1,9,12,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sk_sk.po,1,7,10,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sl_si.po,1,7,10,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/te_in.po,1,6,3,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/th_th.po,1,3,10,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/uk_ua.po,1,7,10,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ug/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/af_za.po,1,6,6,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bg_bg.po,1,7,7,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bo.po,1,6,7,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ca.po,1,7,7,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/cs_cz.po,1,8,7,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/da_dk.po,1,7,7,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/el_gr.po,1,6,6,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/en.po,1,9,9,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/es.po,1,12,12,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/et_ee.po,1,6,6,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/fr_fr.po,1,7,7,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gl.po,1,7,7,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hr_hr.po,1,6,6,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/hu_hu.po,1,9,9,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/id.po,1,7,7,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/is.po,1,7,7,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/it_it.po,1,7,7,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lt_lt.po,1,6,6,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/lv_lv.po,1,6,6,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ne_np.po,1,5,5,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/nl_nl.po,1,6,6,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/no.po,1,10,10,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pl_pl.po,1,7,7,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_br.po,1,9,9,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/pt_pt.po,1,8,8,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ro.po,1,7,7,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/ru_ru.po,1,9,9,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sk_sk.po,1,7,7,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sl_si.po,1,7,7,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sr.po,1,9,9,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sv_se.po,1,2,3,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/te_in.po,1,6,6,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/uk_ua.po,1,7,7,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/dictionaries/zu_za.po,1,3,3,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uk/scp2/source/kde.po,2,9,9,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ur/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/an_es.po,1,3,3,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ar.po,1,5,5,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bg_bg.po,1,7,8,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ca.po,0,0,0,1,7,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/da_dk.po,1,7,8,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/de.po,1,10,11,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/en.po,1,9,10,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/et_ee.po,0,0,0,1,6,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/fr_fr.po,0,0,0,1,7,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gl.po,0,0,0,1,7,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/gu_in.po,0,0,0,1,3,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/he_il.po,0,0,0,1,3,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hi_in.po,0,0,0,1,3,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hr_hr.po,0,0,0,1,6,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/hu_hu.po,0,0,0,1,9,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/it_it.po,0,0,0,1,7,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lt_lt.po,0,0,0,1,6,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/lv_lv.po,0,0,0,1,6,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ne_np.po,0,0,0,1,5,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/nl_nl.po,0,0,0,1,6,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/oc_fr.po,0,0,0,1,3,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pl_pl.po,0,0,0,1,7,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/pt_pt.po,0,0,0,1,8,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ro.po,0,0,0,1,7,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/ru_ru.po,0,0,0,1,9,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/si_lk.po,0,0,0,1,3,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sk_sk.po,0,0,0,1,7,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sl_si.po,0,0,0,1,7,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/sw_tz.po,0,0,0,1,3,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/te_in.po,0,0,0,1,6,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/th_th.po,0,0,0,1,3,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/uk_ua.po,0,0,0,1,7,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/vi.po,0,0,0,1,3,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/uz/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/ve/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/af_za.po,1,6,7,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/an_es.po,1,3,4,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ar.po,1,5,9,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/be_by.po,1,3,3,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bg_bg.po,1,7,11,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bn_bd.po,1,3,3,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bo.po,1,6,8,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/br_fr.po,1,3,3,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/bs_ba.po,1,3,3,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ca.po,1,7,11,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/cs_cz.po,1,8,11,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/da_dk.po,1,7,11,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/de.po,1,10,14,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/el_gr.po,1,6,7,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/en.po,1,9,13,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/es.po,1,12,17,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/et_ee.po,1,6,7,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/fr_fr.po,1,7,11,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gd_gb.po,1,4,4,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gl.po,1,7,11,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/gu_in.po,1,3,3,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/he_il.po,1,3,3,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hi_in.po,1,3,3,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hr_hr.po,1,6,7,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/hu_hu.po,1,9,13,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/id.po,1,7,11,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/is.po,1,7,11,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/it_it.po,1,7,11,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lo_la.po,1,3,3,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lt_lt.po,1,6,7,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/lv_lv.po,1,6,7,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ne_np.po,1,5,8,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/nl_nl.po,1,6,7,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/no.po,1,10,14,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/oc_fr.po,1,3,3,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pl_pl.po,1,7,11,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_br.po,1,9,12,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/pt_pt.po,1,8,11,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ro.po,1,7,11,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/ru_ru.po,1,9,13,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/si_lk.po,1,3,3,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sk_sk.po,1,7,11,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sl_si.po,1,7,11,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sq_al.po,1,3,3,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sr.po,1,9,10,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sv_se.po,1,2,2,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/sw_tz.po,1,3,3,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/te_in.po,1,6,7,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/th_th.po,1,3,3,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/tr_tr.po,1,3,3,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/uk_ua.po,1,7,11,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/vi.po,1,3,3,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vec/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/af_za.po,1,6,10,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/an_es.po,1,3,5,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ar.po,1,5,10,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/be_by.po,1,3,5,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bg_bg.po,1,7,13,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bn_bd.po,1,3,6,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/br_fr.po,1,3,6,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/bs_ba.po,1,3,7,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ca.po,1,7,13,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/cs_cz.po,0,0,0,1,8,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/da_dk.po,1,7,14,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/de.po,1,10,10,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/el_gr.po,1,6,11,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/en.po,1,9,18,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/et_ee.po,1,6,8,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/fr_fr.po,1,7,8,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gl.po,1,7,13,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/gu_in.po,1,3,5,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/he_il.po,1,3,6,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hi_in.po,1,3,5,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hr_hr.po,1,6,8,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/hu_hu.po,1,9,16,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/is.po,0,0,0,1,7,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/it_it.po,1,7,12,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lo_la.po,0,0,0,1,3,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lt_lt.po,1,6,8,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/lv_lv.po,1,6,9,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ne_np.po,1,5,7,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/nl_nl.po,1,6,9,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/no.po,1,10,17,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/oc_fr.po,1,3,5,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pl_pl.po,1,7,14,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/pt_pt.po,1,8,17,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ro.po,1,7,13,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/ru_ru.po,1,9,19,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/si_lk.po,1,3,5,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sk_sk.po,1,7,13,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sl_si.po,1,7,12,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sq_al.po,0,0,0,1,3,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sr.po,1,9,11,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/sw_tz.po,1,3,5,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/te_in.po,1,6,8,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/th_th.po,1,3,6,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/uk_ua.po,1,7,12,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/vi.po,1,3,6,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/dictionaries/zu_za.po,1,3,4,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/vi/scp2/source/kde.po,2,9,10,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/xh/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bo.po,1,6,2,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_br.po,1,9,1,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/pt_pt.po,1,8,1,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-cn/scp2/source/kde.po,2,9,8,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/af_za.po,1,6,1,0,0,0,0,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/an_es.po,1,3,1,0,0,0,0,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ar.po,1,5,1,0,0,0,0,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/be_by.po,1,3,1,0,0,0,0,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bg_bg.po,1,7,1,0,0,0,0,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bn_bd.po,1,3,1,0,0,0,0,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bo.po,1,6,2,0,0,0,0,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/br_fr.po,1,3,1,0,0,0,0,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/bs_ba.po,1,3,1,0,0,0,0,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ca.po,1,7,1,0,0,0,0,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/cs_cz.po,1,8,1,0,0,0,0,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/da_dk.po,1,7,1,0,0,0,0,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/de.po,1,10,3,0,0,0,0,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/el_gr.po,1,6,1,0,0,0,0,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/en.po,1,9,1,0,0,0,0,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/es.po,1,12,1,0,0,0,0,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/et_ee.po,1,6,1,0,0,0,0,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/fr_fr.po,1,7,1,0,0,0,0,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gd_gb.po,1,4,1,0,0,0,0,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gl.po,1,7,1,0,0,0,0,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/gu_in.po,1,3,1,0,0,0,0,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/he_il.po,1,3,1,0,0,0,0,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hi_in.po,1,3,1,0,0,0,0,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hr_hr.po,1,6,1,0,0,0,0,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/hu_hu.po,1,9,1,0,0,0,0,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/id.po,1,7,1,0,0,0,0,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/is.po,1,7,1,0,0,0,0,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/it_it.po,1,7,1,0,0,0,0,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lo_la.po,1,3,1,0,0,0,0,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lt_lt.po,1,6,1,0,0,0,0,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/lv_lv.po,1,6,1,0,0,0,0,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ne_np.po,1,5,1,0,0,0,0,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/nl_nl.po,1,6,1,0,0,0,0,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/no.po,1,10,3,0,0,0,0,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/oc_fr.po,1,3,1,0,0,0,0,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pl_pl.po,1,7,1,0,0,0,0,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_br.po,1,9,1,0,0,0,0,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/pt_pt.po,1,8,1,0,0,0,0,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ro.po,1,7,1,0,0,0,0,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/ru_ru.po,1,9,1,0,0,0,0,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/si_lk.po,1,3,1,0,0,0,0,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sk_sk.po,1,7,1,0,0,0,0,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sl_si.po,1,7,1,0,0,0,0,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sq_al.po,1,3,1,0,0,0,0,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sr.po,1,9,3,0,0,0,0,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sv_se.po,1,2,1,0,0,0,0,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/sw_tz.po,1,3,1,0,0,0,0,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/te_in.po,1,6,1,0,0,0,0,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/th_th.po,1,3,1,0,0,0,0,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/tr_tr.po,1,3,1,0,0,0,0,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/uk_ua.po,1,7,1,0,0,0,0,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/vi.po,1,3,1,0,0,0,0,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/dictionaries/zu_za.po,1,3,1,0,0,0,0,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zh-tw/scp2/source/kde.po,2,9,7,0,0,0,0,2,9,kde.po,,kde,,makonde,,,kde

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/af_za.po,0,0,0,0,0,1,6,1,6,af_za.po,,af,za,afrikaans,,south africa,af_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/an_es.po,0,0,0,0,0,1,3,1,3,an_es.po,,an,es,aragonese,,spain,an_es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ar.po,0,0,0,0,0,1,5,1,5,ar.po,,ar,,arabic,,,ar

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/be_by.po,0,0,0,0,0,1,3,1,3,be_by.po,,be,by,belarusian,,belarus,be_by

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bg_bg.po,0,0,0,0,0,1,7,1,7,bg_bg.po,,bg,bg,bulgarian,,bulgaria,bg_bg

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bn_bd.po,0,0,0,0,0,1,3,1,3,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bo.po,0,0,0,0,0,1,6,1,6,bo.po,,bo,,tibetan,,,bo

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/br_fr.po,0,0,0,0,0,1,3,1,3,br_fr.po,,br,fr,breton,,france,br_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/bs_ba.po,0,0,0,0,0,1,3,1,3,bs_ba.po,,bs,ba,bosnian,,bosnia & herzegovina,bs_ba

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ca.po,0,0,0,0,0,1,7,1,7,ca.po,,ca,,catalan,,,ca

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/cs_cz.po,0,0,0,0,0,1,8,1,8,cs_cz.po,,cs,cz,czech,,czechia,cs_cz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/da_dk.po,0,0,0,0,0,1,7,1,7,da_dk.po,,da,dk,danish,,denmark,da_dk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/de.po,0,0,0,0,0,1,10,1,10,de.po,,de,,german,,,de

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/el_gr.po,0,0,0,0,0,1,6,1,6,el_gr.po,,el,gr,greek,,greece,el_gr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/en.po,0,0,0,0,0,1,9,1,9,en.po,,en,,english,,,en

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/es.po,0,0,0,0,0,1,12,1,12,es.po,,es,,spanish,,,es

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/et_ee.po,0,0,0,0,0,1,6,1,6,et_ee.po,,et,ee,estonian,,estonia,et_ee

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/fr_fr.po,0,0,0,0,0,1,7,1,7,fr_fr.po,,fr,fr,french,,france,fr_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gd_gb.po,0,0,0,0,0,1,4,1,4,gd_gb.po,,gd,gb,scottish gaelic,,united kingdom,gd_gb

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gl.po,0,0,0,0,0,1,7,1,7,gl.po,,gl,,galician,,,gl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/gu_in.po,0,0,0,0,0,1,3,1,3,gu_in.po,,gu,in,gujarati,,india,gu_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/he_il.po,0,0,0,0,0,1,3,1,3,he_il.po,,he,il,hebrew,,israel,he_il

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hi_in.po,0,0,0,0,0,1,3,1,3,hi_in.po,,hi,in,hindi,,india,hi_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hr_hr.po,0,0,0,0,0,1,6,1,6,hr_hr.po,,hr,hr,croatian,,croatia,hr_hr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/hu_hu.po,0,0,0,0,0,1,9,1,9,hu_hu.po,,hu,hu,hungarian,,hungary,hu_hu

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/id.po,0,0,0,0,0,1,7,1,7,id.po,,id,,indonesian,,,id

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/is.po,0,0,0,0,0,1,7,1,7,is.po,,is,,icelandic,,,is

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/it_it.po,0,0,0,0,0,1,7,1,7,it_it.po,,it,it,italian,,italy,it_it

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lo_la.po,0,0,0,0,0,1,3,1,3,lo_la.po,,lo,la,lao,,laos,lo_la

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lt_lt.po,0,0,0,0,0,1,6,1,6,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/lv_lv.po,0,0,0,0,0,1,6,1,6,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ne_np.po,0,0,0,0,0,1,5,1,5,ne_np.po,,ne,np,nepali,,nepal,ne_np

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/nl_nl.po,0,0,0,0,0,1,6,1,6,nl_nl.po,,nl,nl,dutch,,netherlands,nl_nl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/no.po,0,0,0,0,0,1,10,1,10,no.po,,no,,norwegian,,,no

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/oc_fr.po,0,0,0,0,0,1,3,1,3,oc_fr.po,,oc,fr,occitan,,france,oc_fr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pl_pl.po,0,0,0,0,0,1,7,1,7,pl_pl.po,,pl,pl,polish,,poland,pl_pl

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_br.po,0,0,0,0,0,1,9,1,9,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/pt_pt.po,0,0,0,0,0,1,8,1,8,pt_pt.po,,pt,pt,portuguese,,portugal,pt_pt

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ro.po,0,0,0,0,0,1,7,1,7,ro.po,,ro,,romanian,,,ro

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/ru_ru.po,0,0,0,0,0,1,9,1,9,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/si_lk.po,0,0,0,0,0,1,3,1,3,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sk_sk.po,0,0,0,0,0,1,7,1,7,sk_sk.po,,sk,sk,slovak,,slovakia,sk_sk

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sl_si.po,0,0,0,0,0,1,7,1,7,sl_si.po,,sl,si,slovenian,,slovenia,sl_si

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sq_al.po,0,0,0,0,0,1,3,1,3,sq_al.po,,sq,al,albanian,,albania,sq_al

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sr.po,0,0,0,0,0,1,9,1,9,sr.po,,sr,,serbian,,,sr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sv_se.po,0,0,0,0,0,1,2,1,2,sv_se.po,,sv,se,swedish,,sweden,sv_se

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/sw_tz.po,0,0,0,0,0,1,3,1,3,sw_tz.po,,sw,tz,swahili,,tanzania,sw_tz

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/te_in.po,0,0,0,0,0,1,6,1,6,te_in.po,,te,in,telugu,,india,te_in

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/th_th.po,0,0,0,0,0,1,3,1,3,th_th.po,,th,th,thai,,thailand,th_th

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/tr_tr.po,0,0,0,0,0,1,3,1,3,tr_tr.po,,tr,tr,turkish,,turkey,tr_tr

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/uk_ua.po,0,0,0,0,0,1,7,1,7,uk_ua.po,,uk,ua,ukrainian,,ukraine,uk_ua

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/vi.po,0,0,0,0,0,1,3,1,3,vi.po,,vi,,vietnamese,,,vi

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/dictionaries/zu_za.po,0,0,0,0,0,1,3,1,3,zu_za.po,,zu,za,zulu,,south africa,zu_za

+ libreoffice-6.2.2.2-4.fc30.src.rpm.stats.csv,translations/source/zu/scp2/source/kde.po,0,0,0,0,0,2,9,2,9,kde.po,,kde,,makonde,,,kde

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,452,3501,452,3501,zu.po,,zu,,zulu,,,zu

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,607,4987,1829,0,0,0,0,607,4987,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,452,3501,452,3501,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,607,4987,2018,0,0,0,0,607,4987,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,452,3501,452,3501,xh.po,,xh,,xhosa,,,xh

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,452,3501,452,3501,wo.po,,wo,,wolof,,,wo

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,452,3501,452,3501,vi.po,,vi,,vietnamese,,,vi

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,452,3501,452,3501,uz.po,,uz,,uzbek,,,uz

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,452,3501,452,3501,ur.po,,ur,,urdu,,,ur

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/uk.po,607,4987,5205,0,0,0,0,607,4987,uk.po,,uk,,ukrainian,,,uk

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tr.po,144,695,578,0,0,463,4292,607,4987,tr.po,,tr,,turkish,,,tr

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,452,3501,452,3501,tl.po,,tl,,tagalog,,,tl

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,452,3501,452,3501,th.po,,th,,thai,,,th

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,452,3501,452,3501,tg.po,,tg,,tajik,,,tg

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/te.po,376,2390,2029,0,0,231,2597,607,4987,te.po,,te,,telugu,,,te

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ta.po,405,2625,2275,0,0,202,2362,607,4987,ta.po,,ta,,tamil,,,ta

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sv.po,607,4987,4649,0,0,0,0,607,4987,sv.po,,sv,,swedish,,,sv

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,22,91,82,0,0,585,4896,607,4987,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sr.po,22,91,82,0,0,585,4896,607,4987,sr.po,,sr,,serbian,,,sr

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,452,3501,452,3501,sq.po,,sq,,albanian,,,sq

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,452,3501,452,3501,sl.po,,sl,,slovenian,,,sl

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/sk.po,388,2375,2241,0,0,219,2612,607,4987,sk.po,,sk,,slovak,,,sk

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,452,3501,452,3501,si.po,,si,,sinhala,,,si

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,452,3501,452,3501,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ru.po,607,4987,4456,0,0,0,0,607,4987,ru.po,,ru,,russian,,,ru

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,452,3501,452,3501,ro.po,,ro,,romanian,,,ro

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,607,4987,5471,0,0,0,0,607,4987,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pt.po,201,1081,1183,0,0,406,3906,607,4987,pt.po,,pt,,portuguese,,,pt

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pl.po,607,4987,4886,0,0,0,0,607,4987,pl.po,,pl,,polish,,,pl

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/pa.po,183,1038,1189,0,0,424,3949,607,4987,pa.po,,pa,,punjabi,,,pa

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/or.po,384,2463,2590,0,0,223,2524,607,4987,or.po,,or,,odia,,,or

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,452,3501,452,3501,nso.po,,nso,,northern sotho,,,nso

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,452,3501,452,3501,no.po,,no,,norwegian,,,no

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,452,3501,452,3501,nn.po,,nn,,norwegian nynorsk,,,nn

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nl.po,607,4987,5224,0,0,0,0,607,4987,nl.po,,nl,,dutch,,,nl

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,452,3501,452,3501,ne.po,,ne,,nepali,,,ne

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nds.po,7,9,9,0,0,600,4978,607,4987,nds.po,,nds,,low german,,,nds

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/nb.po,65,180,174,0,0,542,4807,607,4987,nb.po,,nb,,norwegian bokmål,,,nb

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,452,3501,452,3501,my.po,,my,,burmese,,,my

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,452,3501,452,3501,ms.po,,ms,,malay,,,ms

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mr.po,390,2507,2436,0,0,217,2480,607,4987,mr.po,,mr,,marathi,,,mr

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,452,3501,452,3501,mn.po,,mn,,mongolian,,,mn

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ml.po,200,1127,901,0,0,407,3860,607,4987,ml.po,,ml,,malayalam,,,ml

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,452,3501,452,3501,mk.po,,mk,,macedonian,,,mk

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,452,3501,452,3501,mg.po,,mg,,malagasy,,,mg

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,452,3501,452,3501,mai.po,,mai,,maithili,,,mai

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lv.po,33,70,62,0,0,574,4917,607,4987,lv.po,,lv,,latvian,,,lv

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,452,3501,452,3501,lt.po,,lt,,lithuanian,,,lt

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,452,3501,452,3501,lo.po,,lo,,lao,,,lo

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,452,3501,452,3501,la.po,,la,,latin,,,la

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,452,3501,452,3501,ky.po,,ky,,kyrgyz,,,ky

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,452,3501,452,3501,ku.po,,ku,,kurdish,,,ku

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,452,3501,452,3501,ks.po,,ks,,kashmiri,,,ks

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ko.po,183,1038,902,0,0,424,3949,607,4987,ko.po,,ko,,korean,,,ko

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/kn.po,390,2507,2260,0,0,217,2480,607,4987,kn.po,,kn,,kannada,,,kn

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,452,3501,452,3501,km.po,,km,,khmer,,,km

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,452,3501,452,3501,kk.po,,kk,,kazakh,,,kk

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ka.po,85,214,194,0,0,522,4773,607,4987,ka.po,,ka,,georgian,,,ka

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ja.po,390,2507,1055,0,0,217,2480,607,4987,ja.po,,ja,,japanese,,,ja

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/it.po,552,3893,4220,22,489,33,605,607,4987,it.po,,it,,italian,,,it

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,452,3501,452,3501,is.po,,is,,icelandic,,,is

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,452,3501,452,3501,ilo.po,,ilo,,iloko,,,ilo

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/id.po,1,1,1,0,0,606,4986,607,4987,id.po,,id,,indonesian,,,id

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ia.po,69,230,251,0,0,538,4757,607,4987,ia.po,,ia,,interlingua,,,ia

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,452,3501,452,3501,hy.po,,hy,,armenian,,,hy

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hu.po,470,3241,3174,0,0,137,1746,607,4987,hu.po,,hu,,hungarian,,,hu

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,452,3501,452,3501,hr.po,,hr,,croatian,,,hr

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/hi.po,376,2390,2926,0,0,231,2597,607,4987,hi.po,,hi,,hindi,,,hi

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/he.po,81,337,316,0,0,526,4650,607,4987,he.po,,he,,hebrew,,,he

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/gu.po,388,2497,2747,0,0,219,2490,607,4987,gu.po,,gu,,gujarati,,,gu

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/gl.po,254,1424,1753,0,0,353,3563,607,4987,gl.po,,gl,,galician,,,gl

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,452,3501,452,3501,ga.po,,ga,,irish,,,ga

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fr.po,607,4987,5735,0,0,0,0,607,4987,fr.po,,fr,,french,,,fr

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fi.po,392,2288,1779,0,0,215,2699,607,4987,fi.po,,fi,,finnish,,,fi

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/fa.po,33,148,159,0,0,574,4839,607,4987,fa.po,,fa,,persian,,,fa

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/eu.po,68,181,174,0,0,539,4806,607,4987,eu.po,,eu,,basque,,,eu

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,452,3501,452,3501,et.po,,et,,estonian,,,et

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/es.po,607,4987,5630,0,0,0,0,607,4987,es.po,,es,,spanish,,,es

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,452,3501,452,3501,eo.po,,eo,,esperanto,,,eo

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,452,3501,452,3501,en_us.po,,en,us,english,,united states,en_us

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,139,682,682,0,0,468,4305,607,4987,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/el.po,2,2,2,0,0,605,4985,607,4987,el.po,,el,,greek,,,el

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,452,3501,452,3501,dz.po,,dz,,dzongkha,,,dz

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,452,3501,452,3501,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/de.po,607,4987,4755,0,0,0,0,607,4987,de.po,,de,,german,,,de

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/da.po,177,674,647,0,0,430,4313,607,4987,da.po,,da,,danish,,,da

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,452,3501,452,3501,cy.po,,cy,,welsh,,,cy

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/cs.po,607,4987,4554,0,0,0,0,607,4987,cs.po,,cs,,czech,,,cs

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ca.po,607,4987,6174,0,0,0,0,607,4987,ca.po,,ca,,catalan,,,ca

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bs.po,43,229,220,0,0,564,4758,607,4987,bs.po,,bs,,bosnian,,,bs

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,452,3501,452,3501,brx.po,,brx,,bodo,,,brx

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,452,3501,452,3501,br.po,,br,,breton,,,br

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,452,3501,452,3501,bo.po,,bo,,tibetan,,,bo

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,216,1249,1428,0,0,391,3738,607,4987,bn_in.po,,bn,in,bangla,,india,bn_in

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,452,3501,452,3501,bn.po,,bn,,bangla,,,bn

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bg.po,259,1583,1677,0,0,348,3404,607,4987,bg.po,,bg,,bulgarian,,,bg

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,452,3501,452,3501,be.po,,be,,belarusian,,,be

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,452,3501,452,3501,bal.po,,bal,,baluchi,,,bal

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,452,3501,452,3501,az.po,,az,,azerbaijani,,,az

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,452,3501,452,3501,ast.po,,ast,,asturian,,,ast

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/as.po,390,2507,2679,0,0,217,2480,607,4987,as.po,,as,,assamese,,,as

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ar.po,56,233,224,0,0,551,4754,607,4987,ar.po,,ar,,arabic,,,ar

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,452,3501,452,3501,am.po,,am,,amharic,,,am

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,452,3501,452,3501,aln.po,,aln,,gheg albanian,,,aln

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,452,3501,452,3501,af.po,,af,,afrikaans,,,af

+ libreport-2.10.0-1.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,452,3501,452,3501,ach.po,,ach,,acoli,,,ach

+ librsvg2-2.45.5-3.fc30.src.rpm.stats.csv,po/es.po,21,67,80,0,0,0,0,21,67,es.po,,es,,spanish,,,es

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fur.po,9,59,71,0,0,0,0,9,59,fur.po,,fur,,friulian,,,fur

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/hr.po,9,59,54,0,0,0,0,9,59,hr.po,,hr,,croatian,,,hr

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ar.po,9,59,49,0,0,0,0,9,59,ar.po,,ar,,arabic,,,ar

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ko.po,9,59,46,0,0,0,0,9,59,ko.po,,ko,,korean,,,ko

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sv.po,9,59,51,0,0,0,0,9,59,sv.po,,sv,,swedish,,,sv

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/tg.po,9,59,55,0,0,0,0,9,59,tg.po,,tg,,tajik,,,tg

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/uk.po,9,59,53,0,0,0,0,9,59,uk.po,,uk,,ukrainian,,,uk

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/da.po,9,59,61,0,0,0,0,9,59,da.po,,da,,danish,,,da

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ne.po,9,59,50,0,0,0,0,9,59,ne.po,,ne,,nepali,,,ne

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sr.po,9,59,56,0,0,0,0,9,59,sr.po,,sr,,serbian,,,sr

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_hk.po,9,59,9,0,0,0,0,9,59,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ro.po,9,59,63,0,0,0,0,9,59,ro.po,,ro,,romanian,,,ro

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pa.po,9,59,63,0,0,0,0,9,59,pa.po,,pa,,punjabi,,,pa

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/es.po,9,59,71,0,0,0,0,9,59,es.po,,es,,spanish,,,es

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/tr.po,9,59,42,0,0,0,0,9,59,tr.po,,tr,,turkish,,,tr

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/it.po,9,59,65,0,0,0,0,9,59,it.po,,it,,italian,,,it

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/de.po,9,59,54,0,0,0,0,9,59,de.po,,de,,german,,,de

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/lv.po,9,59,47,0,0,0,0,9,59,lv.po,,lv,,latvian,,,lv

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ca.po,9,59,77,0,0,0,0,9,59,ca.po,,ca,,catalan,,,ca

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/bs.po,9,59,53,0,0,0,0,9,59,bs.po,,bs,,bosnian,,,bs

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/as.po,9,59,54,0,0,0,0,9,59,as.po,,as,,assamese,,,as

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pt_br.po,9,59,70,0,0,0,0,9,59,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/an.po,9,59,69,0,0,0,0,9,59,an.po,,an,,aragonese,,,an

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/eu.po,9,59,50,0,0,0,0,9,59,eu.po,,eu,,basque,,,eu

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/kk.po,9,59,48,0,0,0,0,9,59,kk.po,,kk,,kazakh,,,kk

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/nb.po,9,59,56,0,0,0,0,9,59,nb.po,,nb,,norwegian bokmål,,,nb

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/nl.po,9,59,55,0,0,0,0,9,59,nl.po,,nl,,dutch,,,nl

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/eo.po,9,59,52,0,0,0,0,9,59,eo.po,,eo,,esperanto,,,eo

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/lt.po,9,59,45,0,0,0,0,9,59,lt.po,,lt,,lithuanian,,,lt

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fa.po,9,59,62,0,0,0,0,9,59,fa.po,,fa,,persian,,,fa

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/oc.po,9,59,69,0,0,0,0,9,59,oc.po,,oc,,occitan,,,oc

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/fr.po,9,59,68,0,0,0,0,9,59,fr.po,,fr,,french,,,fr

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ru.po,9,59,50,0,0,0,0,9,59,ru.po,,ru,,russian,,,ru

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sl.po,9,59,59,0,0,0,0,9,59,sl.po,,sl,,slovenian,,,sl

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/cs.po,9,59,55,0,0,0,0,9,59,cs.po,,cs,,czech,,,cs

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/bg.po,9,59,48,0,0,0,0,9,59,bg.po,,bg,,bulgarian,,,bg

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ml.po,9,59,38,0,0,0,0,9,59,ml.po,,ml,,malayalam,,,ml

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/be.po,9,59,51,0,0,0,0,9,59,be.po,,be,,belarusian,,,be

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pl.po,9,59,49,0,0,0,0,9,59,pl.po,,pl,,polish,,,pl

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_cn.po,9,59,9,0,0,0,0,9,59,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,59,77,0,0,0,0,9,59,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/en_gb.po,9,59,59,0,0,0,0,9,59,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/id.po,9,59,59,0,0,0,0,9,59,id.po,,id,,indonesian,,,id

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sr@latin.po,9,59,56,0,0,0,0,9,59,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/ja.po,6,44,6,0,0,0,0,6,44,ja.po,,ja,,japanese,,,ja

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/gl.po,9,59,73,0,0,0,0,9,59,gl.po,,gl,,galician,,,gl

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/he.po,9,59,49,0,0,0,0,9,59,he.po,,he,,hebrew,,,he

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/hu.po,9,59,51,0,0,0,0,9,59,hu.po,,hu,,hungarian,,,hu

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/sk.po,9,59,51,0,0,0,0,9,59,sk.po,,sk,,slovak,,,sk

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/pt.po,9,59,64,0,0,0,0,9,59,pt.po,,pt,,portuguese,,,pt

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/el.po,9,59,67,0,0,0,0,9,59,el.po,,el,,greek,,,el

+ libsecret-0.18.8-1.fc30.src.rpm.stats.csv,po/zh_tw.po,9,59,9,0,0,0,0,9,59,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,359,2174,359,2174,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,359,2174,359,2174,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,359,2174,359,2174,nl.po,,nl,,dutch,,,nl

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,359,2174,359,2174,ko.po,,ko,,korean,,,ko

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,359,2174,359,2174,ja.po,,ja,,japanese,,,ja

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,359,2174,359,2174,it.po,,it,,italian,,,it

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,0,0,359,2174,359,2174,fr.po,,fr,,french,,,fr

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/es.po,217,1139,1374,21,152,121,883,359,2174,es.po,,es,,spanish,,,es

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en_us.po,21,178,178,0,0,0,0,21,178,en_us.po,,en,us,english,,united states,en_us

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en@quot.po,359,2174,2174,0,0,0,0,359,2174,en@quot.po,quot,en,,english,,,en@quot

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,359,2174,2174,0,0,0,0,359,2174,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/en.po,12,88,88,8,69,339,2017,359,2174,en.po,,en,,english,,,en

+ libsmbios-2.4.2-3.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,359,2174,359,2174,de.po,,de,,german,,,de

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_tw.po,38,162,78,0,0,0,0,38,162,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_hk.po,25,110,50,0,0,0,0,25,110,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/zh_cn.po,38,162,87,0,0,0,0,38,162,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/vi.po,36,155,267,0,0,0,0,36,155,vi.po,,vi,,vietnamese,,,vi

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,14,51,52,0,0,0,0,14,51,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/uk.po,25,110,111,0,0,0,0,25,110,uk.po,,uk,,ukrainian,,,uk

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ug.po,20,79,79,0,0,0,0,20,79,ug.po,,ug,,uyghur,,,ug

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/tr.po,38,162,162,0,0,0,0,38,162,tr.po,,tr,,turkish,,,tr

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/th.po,36,155,81,0,0,0,0,36,155,th.po,,th,,thai,,,th

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/tg.po,20,79,92,0,0,0,0,20,79,tg.po,,tg,,tajik,,,tg

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/te.po,25,110,96,0,0,0,0,25,110,te.po,,te,,telugu,,,te

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ta.po,25,110,105,0,0,0,0,25,110,ta.po,,ta,,tamil,,,ta

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sv.po,38,162,155,0,0,0,0,38,162,sv.po,,sv,,swedish,,,sv

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sr@latin.po,37,158,188,0,0,0,0,37,158,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sr.po,38,162,193,0,0,0,0,38,162,sr.po,,sr,,serbian,,,sr

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sl.po,38,162,185,0,0,0,0,38,162,sl.po,,sl,,slovenian,,,sl

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/sk.po,38,162,188,0,0,0,0,38,162,sk.po,,sk,,slovak,,,sk

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ru.po,36,155,157,0,0,0,0,36,155,ru.po,,ru,,russian,,,ru

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ro.po,38,162,213,0,0,0,0,38,162,ro.po,,ro,,romanian,,,ro

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pt_br.po,38,162,231,0,0,0,0,38,162,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pt.po,36,155,183,0,0,0,0,36,155,pt.po,,pt,,portuguese,,,pt

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pl.po,38,162,175,0,0,0,0,38,162,pl.po,,pl,,polish,,,pl

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/pa.po,25,110,146,0,0,0,0,25,110,pa.po,,pa,,punjabi,,,pa

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/or.po,25,110,121,0,0,0,0,25,110,or.po,,or,,odia,,,or

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/oc.po,36,155,221,0,0,0,0,36,155,oc.po,,oc,,occitan,,,oc

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/nl.po,38,162,147,0,0,0,0,38,162,nl.po,,nl,,dutch,,,nl

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ne.po,36,155,159,0,0,0,0,36,155,ne.po,,ne,,nepali,,,ne

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/nb.po,36,155,168,0,0,0,0,36,155,nb.po,,nb,,norwegian bokmål,,,nb

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/mr.po,25,110,108,0,0,0,0,25,110,mr.po,,mr,,marathi,,,mr

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ml.po,20,79,70,0,0,0,0,20,79,ml.po,,ml,,malayalam,,,ml

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/lv.po,38,162,153,0,0,0,0,38,162,lv.po,,lv,,latvian,,,lv

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/lt.po,38,162,157,0,0,0,0,38,162,lt.po,,lt,,lithuanian,,,lt

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ko.po,38,162,173,0,0,0,0,38,162,ko.po,,ko,,korean,,,ko

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/kn.po,25,110,106,0,0,0,0,25,110,kn.po,,kn,,kannada,,,kn

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ja.po,14,51,31,0,0,0,0,14,51,ja.po,,ja,,japanese,,,ja

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/it.po,38,162,200,0,0,0,0,38,162,it.po,,it,,italian,,,it

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/id.po,38,162,190,0,0,0,0,38,162,id.po,,id,,indonesian,,,id

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hu.po,38,162,188,0,0,0,0,38,162,hu.po,,hu,,hungarian,,,hu

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hr.po,38,162,155,0,0,0,0,38,162,hr.po,,hr,,croatian,,,hr

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/hi.po,25,110,148,0,0,0,0,25,110,hi.po,,hi,,hindi,,,hi

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/he.po,36,155,173,0,0,0,0,36,155,he.po,,he,,hebrew,,,he

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gu.po,25,110,124,0,0,0,0,25,110,gu.po,,gu,,gujarati,,,gu

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gl.po,38,162,236,0,0,0,0,38,162,gl.po,,gl,,galician,,,gl

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/gd.po,36,155,259,0,0,0,0,36,155,gd.po,,gd,,scottish gaelic,,,gd

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fur.po,38,162,219,0,0,0,0,38,162,fur.po,,fur,,friulian,,,fur

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fr.po,38,162,235,0,0,0,0,38,162,fr.po,,fr,,french,,,fr

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/fa.po,20,79,97,0,0,0,0,20,79,fa.po,,fa,,persian,,,fa

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/eu.po,36,155,176,0,0,0,0,36,155,eu.po,,eu,,basque,,,eu

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/et.po,37,158,145,0,0,0,0,37,158,et.po,,et,,estonian,,,et

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/es.po,38,162,255,0,0,0,0,38,162,es.po,,es,,spanish,,,es

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/eo.po,21,80,82,0,0,15,75,36,155,eo.po,,eo,,esperanto,,,eo

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/en_gb.po,36,155,155,0,0,0,0,36,155,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/el.po,38,162,205,0,0,0,0,38,162,el.po,,el,,greek,,,el

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/de.po,38,162,173,0,0,0,0,38,162,de.po,,de,,german,,,de

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/da.po,38,162,164,0,0,0,0,38,162,da.po,,da,,danish,,,da

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/cs.po,38,162,168,0,0,0,0,38,162,cs.po,,cs,,czech,,,cs

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,36,155,260,0,0,0,0,36,155,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/ca.po,38,162,273,0,0,0,0,38,162,ca.po,,ca,,catalan,,,ca

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bs.po,25,110,114,0,0,0,0,25,110,bs.po,,bs,,bosnian,,,bs

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bn_in.po,25,110,119,0,0,0,0,25,110,bn_in.po,,bn,in,bangla,,india,bn_in

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/bg.po,36,155,207,0,0,0,0,36,155,bg.po,,bg,,bulgarian,,,bg

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/be.po,38,162,161,0,0,0,0,38,162,be.po,,be,,belarusian,,,be

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/as.po,25,110,119,0,0,0,0,25,110,as.po,,as,,assamese,,,as

+ libsoup-2.66.1-2.fc30.src.rpm.stats.csv,po/an.po,36,155,238,0,0,0,0,36,155,an.po,,an,,aragonese,,,an

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ar.po,211,981,1061,7,38,83,418,301,1437,ar.po,,ar,,arabic,,,ar

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/as.po,213,996,1132,7,38,81,403,301,1437,as.po,,as,,assamese,,,as

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/bg.po,290,1374,1575,8,45,3,18,301,1437,bg.po,,bg,,bulgarian,,,bg

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/bn.po,213,996,1165,7,38,81,403,301,1437,bn.po,,bn,,bangla,,,bn

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/bn_in.po,213,996,1165,7,38,81,403,301,1437,bn_in.po,,bn,in,bangla,,india,bn_in

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/bs.po,192,889,945,5,25,104,523,301,1437,bs.po,,bs,,bosnian,,,bs

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ca.po,292,1385,2086,6,34,3,18,301,1437,ca.po,,ca,,catalan,,,ca

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/cs.po,301,1437,1381,0,0,0,0,301,1437,cs.po,,cs,,czech,,,cs

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/cy.po,197,904,1036,5,25,99,508,301,1437,cy.po,,cy,,welsh,,,cy

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/da.po,292,1385,1360,6,34,3,18,301,1437,da.po,,da,,danish,,,da

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/de.po,292,1385,1425,6,34,3,18,301,1437,de.po,,de,,german,,,de

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/de_ch.po,204,938,990,7,38,90,461,301,1437,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/el.po,290,1374,1533,8,45,3,18,301,1437,el.po,,el,,greek,,,el

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/en_gb.po,197,904,904,5,25,99,508,301,1437,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/es.po,290,1374,1749,8,45,3,18,301,1437,es.po,,es,,spanish,,,es

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/et.po,202,923,834,7,38,92,476,301,1437,et.po,,et,,estonian,,,et

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/eu.po,24,58,55,0,0,277,1379,301,1437,eu.po,,eu,,basque,,,eu

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/fi.po,211,984,842,7,38,83,415,301,1437,fi.po,,fi,,finnish,,,fi

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/fr.po,290,1374,1850,8,45,3,18,301,1437,fr.po,,fr,,french,,,fr

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/gu.po,213,996,1147,7,38,81,403,301,1437,gu.po,,gu,,gujarati,,,gu

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/he.po,84,355,359,5,25,212,1057,301,1437,he.po,,he,,hebrew,,,he

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/hi.po,213,996,1271,7,38,81,403,301,1437,hi.po,,hi,,hindi,,,hi

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/hr.po,197,904,959,5,25,99,508,301,1437,hr.po,,hr,,croatian,,,hr

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/hu.po,290,1374,1337,8,45,3,18,301,1437,hu.po,,hu,,hungarian,,,hu

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/id.po,213,996,1062,7,38,81,403,301,1437,id.po,,id,,indonesian,,,id

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/is.po,211,985,1064,7,38,83,414,301,1437,is.po,,is,,icelandic,,,is

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/it.po,213,996,1179,7,38,81,403,301,1437,it.po,,it,,italian,,,it

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ja.po,290,1374,609,8,45,3,18,301,1437,ja.po,,ja,,japanese,,,ja

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/kn.po,213,996,975,7,38,81,403,301,1437,kn.po,,kn,,kannada,,,kn

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ko.po,218,1020,1049,7,38,76,379,301,1437,ko.po,,ko,,korean,,,ko

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/lv.po,62,248,223,5,25,234,1164,301,1437,lv.po,,lv,,latvian,,,lv

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/mai.po,204,938,1192,7,38,90,461,301,1437,mai.po,,mai,,maithili,,,mai

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/mk.po,197,904,1066,5,25,99,508,301,1437,mk.po,,mk,,macedonian,,,mk

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ml.po,208,970,862,7,38,86,429,301,1437,ml.po,,ml,,malayalam,,,ml

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/mr.po,212,990,1013,7,38,82,409,301,1437,mr.po,,mr,,marathi,,,mr

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ms.po,197,904,897,5,25,99,508,301,1437,ms.po,,ms,,malay,,,ms

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/nb.po,290,1374,1364,8,45,3,18,301,1437,nb.po,,nb,,norwegian bokmål,,,nb

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/nds.po,15,27,27,0,0,286,1410,301,1437,nds.po,,nds,,low german,,,nds

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/nl.po,292,1385,1483,6,34,3,18,301,1437,nl.po,,nl,,dutch,,,nl

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/or.po,213,996,1389,7,38,81,403,301,1437,or.po,,or,,odia,,,or

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/pa.po,213,996,1259,7,38,81,403,301,1437,pa.po,,pa,,punjabi,,,pa

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/pl.po,292,1385,1463,6,34,3,18,301,1437,pl.po,,pl,,polish,,,pl

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/pt.po,213,996,1259,7,38,81,403,301,1437,pt.po,,pt,,portuguese,,,pt

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/pt_br.po,219,1014,1243,7,38,75,385,301,1437,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ro.po,77,306,353,5,25,219,1106,301,1437,ro.po,,ro,,romanian,,,ro

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ru.po,290,1374,1342,8,45,3,18,301,1437,ru.po,,ru,,russian,,,ru

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/sk.po,211,979,994,8,49,82,409,301,1437,sk.po,,sk,,slovak,,,sk

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/sl.po,197,904,968,5,25,99,508,301,1437,sl.po,,sl,,slovenian,,,sl

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/sr.po,292,1385,1440,6,34,3,18,301,1437,sr.po,,sr,,serbian,,,sr

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/sr@latin.po,208,970,1024,7,38,86,429,301,1437,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/sv.po,292,1385,1404,6,34,3,18,301,1437,sv.po,,sv,,swedish,,,sv

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/ta.po,213,996,879,7,38,81,403,301,1437,ta.po,,ta,,tamil,,,ta

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/te.po,213,996,894,7,38,81,403,301,1437,te.po,,te,,telugu,,,te

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/tr.po,212,990,901,7,38,82,409,301,1437,tr.po,,tr,,turkish,,,tr

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/uk.po,292,1385,1380,6,34,3,18,301,1437,uk.po,,uk,,ukrainian,,,uk

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/vi.po,145,607,810,5,25,151,805,301,1437,vi.po,,vi,,vietnamese,,,vi

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/zh_cn.po,290,1374,574,8,45,3,18,301,1437,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libuser-0.62-20.fc30.src.rpm.stats.csv,po/zh_tw.po,290,1374,539,8,45,3,18,301,1437,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,9877,64065,9877,64065,zu.po,,zu,,zulu,,,zu

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_tw.po,290,1273,511,0,0,9587,62792,9877,64065,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,9877,64065,9877,64065,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/zh_cn.po,6212,38181,17684,0,0,3665,25884,9877,64065,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,9877,64065,9877,64065,yo.po,,yo,,yoruba,,,yo

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/vi.po,2234,12503,17619,0,0,7643,51562,9877,64065,vi.po,,vi,,vietnamese,,,vi

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,9877,64065,9877,64065,ur.po,,ur,,urdu,,,ur

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/uk.po,9789,63408,68392,0,0,88,657,9877,64065,uk.po,,uk,,ukrainian,,,uk

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,9877,64065,9877,64065,tw.po,,tw,,twi,,,tw

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,9877,64065,9877,64065,tr.po,,tr,,turkish,,,tr

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,9877,64065,9877,64065,th.po,,th,,thai,,,th

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,9877,64065,9877,64065,tg.po,,tg,,tajik,,,tg

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/te.po,5674,34412,30313,0,0,4203,29653,9877,64065,te.po,,te,,telugu,,,te

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ta.po,6240,38353,35168,0,0,3637,25712,9877,64065,ta.po,,ta,,tamil,,,ta

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sv.po,685,3447,3116,0,0,9192,60618,9877,64065,sv.po,,sv,,swedish,,,sv

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sr.po,594,2722,2626,0,0,9283,61343,9877,64065,sr.po,,sr,,serbian,,,sr

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sr@latin.po,594,2722,2626,0,0,9283,61343,9877,64065,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,9877,64065,9877,64065,sq.po,,sq,,albanian,,,sq

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,9877,64065,9877,64065,sl.po,,sl,,slovenian,,,sl

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,9877,64065,9877,64065,sk.po,,sk,,slovak,,,sk

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,9877,64065,9877,64065,si.po,,si,,sinhala,,,si

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ru.po,5526,32781,31785,0,0,4351,31284,9877,64065,ru.po,,ru,,russian,,,ru

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,9877,64065,9877,64065,ro.po,,ro,,romanian,,,ro

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pt.po,345,1488,1996,0,0,9532,62577,9877,64065,pt.po,,pt,,portuguese,,,pt

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pt_br.po,5813,35278,43640,0,0,4064,28787,9877,64065,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pl.po,2622,14541,15360,0,0,7255,49524,9877,64065,pl.po,,pl,,polish,,,pl

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/pa.po,5677,34495,39805,0,0,4200,29570,9877,64065,pa.po,,pa,,punjabi,,,pa

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/or.po,5565,31727,33007,0,0,4312,32338,9877,64065,or.po,,or,,odia,,,or

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,9877,64065,9877,64065,nso.po,,nso,,northern sotho,,,nso

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,9877,64065,9877,64065,nn.po,,nn,,norwegian nynorsk,,,nn

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nl.po,2537,14131,14704,0,0,7340,49934,9877,64065,nl.po,,nl,,dutch,,,nl

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,9877,64065,9877,64065,ne.po,,ne,,nepali,,,ne

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,9877,64065,9877,64065,nds.po,,nds,,low german,,,nds

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/nb.po,132,468,432,0,0,9745,63597,9877,64065,nb.po,,nb,,norwegian bokmål,,,nb

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,9877,64065,9877,64065,my.po,,my,,burmese,,,my

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ms.po,46,115,112,0,0,9831,63950,9877,64065,ms.po,,ms,,malay,,,ms

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mr.po,6749,41259,39684,0,0,3128,22806,9877,64065,mr.po,,mr,,marathi,,,mr

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,9877,64065,9877,64065,mn.po,,mn,,mongolian,,,mn

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ml.po,5733,34865,29079,0,0,4144,29200,9877,64065,ml.po,,ml,,malayalam,,,ml

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mk.po,317,1353,1603,0,0,9560,62712,9877,64065,mk.po,,mk,,macedonian,,,mk

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,9877,64065,9877,64065,mai.po,,mai,,maithili,,,mai

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,9877,64065,9877,64065,lv.po,,lv,,latvian,,,lv

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,9877,64065,9877,64065,lt.po,,lt,,lithuanian,,,lt

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,9877,64065,9877,64065,ky.po,,ky,,kyrgyz,,,ky

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,9877,64065,9877,64065,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,9877,64065,9877,64065,kw.po,,kw,,cornish,,,kw

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,9877,64065,9877,64065,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,9877,64065,9877,64065,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ko.po,3364,18956,18126,0,0,6513,45109,9877,64065,ko.po,,ko,,korean,,,ko

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kn.po,5704,34630,31559,0,0,4173,29435,9877,64065,kn.po,,kn,,kannada,,,kn

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,9877,64065,9877,64065,km.po,,km,,khmer,,,km

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,9877,64065,9877,64065,kk.po,,kk,,kazakh,,,kk

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,9877,64065,9877,64065,ka.po,,ka,,georgian,,,ka

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ja.po,5839,35421,16456,0,0,4038,28644,9877,64065,ja.po,,ja,,japanese,,,ja

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/it.po,1676,8996,10539,0,0,8201,55069,9877,64065,it.po,,it,,italian,,,it

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,9877,64065,9877,64065,is.po,,is,,icelandic,,,is

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,9877,64065,9877,64065,ilo.po,,ilo,,iloko,,,ilo

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/id.po,209,834,787,0,0,9668,63231,9877,64065,id.po,,id,,indonesian,,,id

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,9877,64065,9877,64065,ia.po,,ia,,interlingua,,,ia

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hu.po,270,1164,1106,0,0,9607,62901,9877,64065,hu.po,,hu,,hungarian,,,hu

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,9877,64065,9877,64065,hr.po,,hr,,croatian,,,hr

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/hi.po,3586,20813,24843,0,0,6291,43252,9877,64065,hi.po,,hi,,hindi,,,hi

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,9877,64065,9877,64065,he.po,,he,,hebrew,,,he

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/gu.po,5943,35847,38666,0,0,3934,28218,9877,64065,gu.po,,gu,,gujarati,,,gu

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,9877,64065,9877,64065,gl.po,,gl,,galician,,,gl

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,9877,64065,9877,64065,ga.po,,ga,,irish,,,ga

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fur.po,0,0,0,0,0,9877,64065,9877,64065,fur.po,,fur,,friulian,,,fur

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fr.po,1157,5793,7186,0,0,8720,58272,9877,64065,fr.po,,fr,,french,,,fr

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fi.po,358,1518,1185,0,0,9519,62547,9877,64065,fi.po,,fi,,finnish,,,fi

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fil.po,0,0,0,0,0,9877,64065,9877,64065,fil.po,,fil,,filipino,,,fil

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,9877,64065,9877,64065,fa.po,,fa,,persian,,,fa

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,9877,64065,9877,64065,eu.po,,eu,,basque,,,eu

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,9877,64065,9877,64065,et.po,,et,,estonian,,,et

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/es.po,5715,34614,44483,0,0,4162,29451,9877,64065,es.po,,es,,spanish,,,es

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,9877,64065,9877,64065,eo.po,,eo,,esperanto,,,eo

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/en_gb.po,5799,35309,35309,0,0,4078,28756,9877,64065,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/el.po,179,926,1349,0,0,9698,63139,9877,64065,el.po,,el,,greek,,,el

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/de.po,5746,34937,33795,0,0,4131,29128,9877,64065,de.po,,de,,german,,,de

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,9877,64065,9877,64065,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/da.po,270,1164,1082,0,0,9607,62901,9877,64065,da.po,,da,,danish,,,da

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,9877,64065,9877,64065,cy.po,,cy,,welsh,,,cy

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/cs.po,1294,6111,5858,0,0,8583,57954,9877,64065,cs.po,,cs,,czech,,,cs

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ca.po,443,1971,2603,0,0,9434,62094,9877,64065,ca.po,,ca,,catalan,,,ca

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bs.po,204,849,847,0,0,9673,63216,9877,64065,bs.po,,bs,,bosnian,,,bs

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,9877,64065,9877,64065,brx.po,,brx,,bodo,,,brx

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,9877,64065,9877,64065,br.po,,br,,breton,,,br

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,9877,64065,9877,64065,bo.po,,bo,,tibetan,,,bo

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,9877,64065,9877,64065,bn.po,,bn,,bangla,,,bn

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bn_in.po,2364,13222,14044,0,0,7513,50843,9877,64065,bn_in.po,,bn,in,bangla,,india,bn_in

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bg.po,335,1452,1632,0,0,9542,62613,9877,64065,bg.po,,bg,,bulgarian,,,bg

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,9877,64065,9877,64065,be.po,,be,,belarusian,,,be

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,9877,64065,9877,64065,bal.po,,bal,,baluchi,,,bal

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,9877,64065,9877,64065,ast.po,,ast,,asturian,,,ast

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/as.po,5981,36594,38452,0,0,3896,27471,9877,64065,as.po,,as,,assamese,,,as

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,9877,64065,9877,64065,ar.po,,ar,,arabic,,,ar

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,9877,64065,9877,64065,anp.po,,anp,,angika,,,anp

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,9877,64065,9877,64065,am.po,,am,,amharic,,,am

+ libvirt-5.1.0-4.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,9877,64065,9877,64065,af.po,,af,,afrikaans,,,af

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/cs.po,30,153,142,0,0,0,0,30,153,cs.po,,cs,,czech,,,cs

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,25,121,159,0,0,5,32,30,153,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,30,153,30,153,sl.po,,sl,,slovenian,,,sl

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,30,153,30,153,fa.po,,fa,,persian,,,fa

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,30,153,30,153,cy.po,,cy,,welsh,,,cy

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,30,153,30,153,mk.po,,mk,,macedonian,,,mk

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/es.po,29,145,205,0,0,1,8,30,153,es.po,,es,,spanish,,,es

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,30,153,30,153,sv.po,,sv,,swedish,,,sv

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ca.po,30,153,223,0,0,0,0,30,153,ca.po,,ca,,catalan,,,ca

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,30,153,30,153,el.po,,el,,greek,,,el

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,30,153,30,153,ro.po,,ro,,romanian,,,ro

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,30,153,30,153,nds.po,,nds,,low german,,,nds

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,30,153,30,153,or.po,,or,,odia,,,or

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,30,153,30,153,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,30,153,30,153,ar.po,,ar,,arabic,,,ar

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,30,153,30,153,hr.po,,hr,,croatian,,,hr

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,30,153,30,153,et.po,,et,,estonian,,,et

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,30,153,30,153,be.po,,be,,belarusian,,,be

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,30,153,30,153,bn_in.po,,bn,in,bangla,,india,bn_in

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,30,153,30,153,as.po,,as,,assamese,,,as

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,30,153,30,153,bg.po,,bg,,bulgarian,,,bg

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,30,153,30,153,anp.po,,anp,,angika,,,anp

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,30,153,30,153,ka.po,,ka,,georgian,,,ka

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,30,153,30,153,zu.po,,zu,,zulu,,,zu

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/uk.po,30,153,150,0,0,0,0,30,153,uk.po,,uk,,ukrainian,,,uk

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,30,153,30,153,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,30,153,30,153,lt.po,,lt,,lithuanian,,,lt

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,30,153,30,153,bn.po,,bn,,bangla,,,bn

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,30,153,30,153,mr.po,,mr,,marathi,,,mr

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,30,153,30,153,ne.po,,ne,,nepali,,,ne

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pl.po,30,153,158,0,0,0,0,30,153,pl.po,,pl,,polish,,,pl

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,30,153,30,153,sr.po,,sr,,serbian,,,sr

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,30,153,30,153,gl.po,,gl,,galician,,,gl

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,30,153,30,153,lv.po,,lv,,latvian,,,lv

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,30,153,30,153,te.po,,te,,telugu,,,te

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,30,153,30,153,eu.po,,eu,,basque,,,eu

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,153,30,153,ilo.po,,ilo,,iloko,,,ilo

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,30,153,30,153,vi.po,,vi,,vietnamese,,,vi

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fi.po,7,31,28,0,0,23,122,30,153,fi.po,,fi,,finnish,,,fi

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,30,153,30,153,bs.po,,bs,,bosnian,,,bs

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,30,153,30,153,pa.po,,pa,,punjabi,,,pa

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,30,153,30,153,th.po,,th,,thai,,,th

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/en_gb.po,25,121,121,0,0,5,32,30,153,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/fr.po,29,145,167,0,0,1,8,30,153,fr.po,,fr,,french,,,fr

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,30,153,30,153,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,30,153,30,153,br.po,,br,,breton,,,br

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,30,153,30,153,ml.po,,ml,,malayalam,,,ml

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,30,153,30,153,mai.po,,mai,,maithili,,,mai

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,30,153,30,153,is.po,,is,,icelandic,,,is

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,30,153,30,153,hu.po,,hu,,hungarian,,,hu

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,30,153,30,153,nl.po,,nl,,dutch,,,nl

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,30,153,30,153,sq.po,,sq,,albanian,,,sq

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,30,153,30,153,pt.po,,pt,,portuguese,,,pt

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ru.po,1,4,3,0,0,29,149,30,153,ru.po,,ru,,russian,,,ru

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,30,153,30,153,ta.po,,ta,,tamil,,,ta

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,30,153,30,153,de_ch.po,,de,ch,german,,switzerland,de_ch

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,30,153,30,153,eo.po,,eo,,esperanto,,,eo

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,30,153,30,153,am.po,,am,,amharic,,,am

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,30,153,30,153,nso.po,,nso,,northern sotho,,,nso

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,30,153,30,153,kn.po,,kn,,kannada,,,kn

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,30,153,30,153,af.po,,af,,afrikaans,,,af

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,30,153,30,153,id.po,,id,,indonesian,,,id

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,30,153,30,153,brx.po,,brx,,bodo,,,brx

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,30,153,30,153,gu.po,,gu,,gujarati,,,gu

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,30,153,30,153,ms.po,,ms,,malay,,,ms

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,30,153,30,153,si.po,,si,,sinhala,,,si

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,30,153,30,153,tw.po,,tw,,twi,,,tw

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,30,153,30,153,de.po,,de,,german,,,de

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,30,153,30,153,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,30,153,30,153,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,30,153,30,153,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ja.po,25,121,52,0,0,5,32,30,153,ja.po,,ja,,japanese,,,ja

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,30,153,30,153,nn.po,,nn,,norwegian nynorsk,,,nn

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,30,153,30,153,km.po,,km,,khmer,,,km

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,30,153,30,153,kw.po,,kw,,cornish,,,kw

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,30,153,30,153,da.po,,da,,danish,,,da

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,30,153,30,153,ko.po,,ko,,korean,,,ko

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/hi.po,25,121,166,0,0,5,32,30,153,hi.po,,hi,,hindi,,,hi

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,30,153,30,153,mn.po,,mn,,mongolian,,,mn

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,30,153,30,153,yo.po,,yo,,yoruba,,,yo

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,30,153,30,153,ky.po,,ky,,kyrgyz,,,ky

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,30,153,30,153,sk.po,,sk,,slovak,,,sk

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,30,153,30,153,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,30,153,30,153,bo.po,,bo,,tibetan,,,bo

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,30,153,30,153,he.po,,he,,hebrew,,,he

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,30,153,30,153,kk.po,,kk,,kazakh,,,kk

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,153,30,153,ur.po,,ur,,urdu,,,ur

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,30,153,30,153,bal.po,,bal,,baluchi,,,bal

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,30,153,30,153,it.po,,it,,italian,,,it

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,30,153,30,153,tr.po,,tr,,turkish,,,tr

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,30,153,30,153,ast.po,,ast,,asturian,,,ast

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,30,153,30,153,tg.po,,tg,,tajik,,,tg

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,30,153,30,153,nb.po,,nb,,norwegian bokmål,,,nb

+ libvirt-glib-2.0.0-3.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,30,153,30,153,ia.po,,ia,,interlingua,,,ia

+ libvisual-0.4.0-26.fc30.src.rpm.stats.csv,po/es_es.po,62,303,364,51,204,92,548,205,1055,es_es.po,,es,es,spanish,,spain,es_es

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

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,231,1086,353,0,0,0,0,231,1086,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_hk.po,230,1084,352,0,0,0,0,230,1084,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,231,1086,330,0,0,0,0,231,1086,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/xh.po,30,73,88,0,0,0,0,30,73,xh.po,,xh,,xhosa,,,xh

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/wa.po,15,30,46,9,29,6,14,30,73,wa.po,,wa,,walloon,,,wa

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/vi.po,231,1086,1657,0,0,0,0,231,1086,vi.po,,vi,,vietnamese,,,vi

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/uk.po,230,1084,998,0,0,0,0,230,1084,uk.po,,uk,,ukrainian,,,uk

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ug.po,230,1082,991,0,0,0,0,230,1082,ug.po,,ug,,uyghur,,,ug

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/tr.po,231,1086,986,0,0,0,0,231,1086,tr.po,,tr,,turkish,,,tr

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/th.po,231,1086,432,0,0,0,0,231,1086,th.po,,th,,thai,,,th

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/te.po,231,1086,859,0,0,0,0,231,1086,te.po,,te,,telugu,,,te

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ta.po,230,1068,908,1,18,0,0,231,1086,ta.po,,ta,,tamil,,,ta

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sv.po,231,1086,1025,0,0,0,0,231,1086,sv.po,,sv,,swedish,,,sv

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,231,1086,1084,0,0,0,0,231,1086,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sr.po,231,1086,1084,0,0,0,0,231,1086,sr.po,,sr,,serbian,,,sr

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sq.po,33,88,131,0,0,0,0,33,88,sq.po,,sq,,albanian,,,sq

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sl.po,231,1086,1032,0,0,0,0,231,1086,sl.po,,sl,,slovenian,,,sl

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/sk.po,231,1086,1016,0,0,0,0,231,1086,sk.po,,sk,,slovak,,,sk

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/si.po,32,87,103,0,0,0,0,32,87,si.po,,si,,sinhala,,,si

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/rw.po,1,2,2,20,55,9,16,30,73,rw.po,,rw,,kinyarwanda,,,rw

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ru.po,231,1086,1035,0,0,0,0,231,1086,ru.po,,ru,,russian,,,ru

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ro.po,241,1124,1277,0,0,0,0,241,1124,ro.po,,ro,,romanian,,,ro

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,231,1086,1280,0,0,0,0,231,1086,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pt.po,231,1086,1291,0,0,0,0,231,1086,pt.po,,pt,,portuguese,,,pt

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pl.po,231,1086,1022,0,0,0,0,231,1086,pl.po,,pl,,polish,,,pl

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/pa.po,230,1084,1097,0,0,0,0,230,1084,pa.po,,pa,,punjabi,,,pa

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/or.po,230,1068,1013,1,18,0,0,231,1086,or.po,,or,,odia,,,or

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/oc.po,230,1082,1337,0,0,0,0,230,1082,oc.po,,oc,,occitan,,,oc

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nn.po,241,1124,1049,0,0,0,0,241,1124,nn.po,,nn,,norwegian nynorsk,,,nn

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nl.po,230,1084,992,0,0,0,0,230,1084,nl.po,,nl,,dutch,,,nl

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ne.po,236,1083,1017,3,39,0,0,239,1122,ne.po,,ne,,nepali,,,ne

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/nb.po,203,749,697,0,0,27,335,230,1084,nb.po,,nb,,norwegian bokmål,,,nb

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ms.po,21,47,49,7,21,2,5,30,73,ms.po,,ms,,malay,,,ms

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mr.po,231,1086,1049,0,0,0,0,231,1086,mr.po,,mr,,marathi,,,mr

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mn.po,21,47,56,7,21,2,5,30,73,mn.po,,mn,,mongolian,,,mn

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ml.po,231,1086,835,0,0,0,0,231,1086,ml.po,,ml,,malayalam,,,ml

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mk.po,240,1106,1275,1,18,0,0,241,1124,mk.po,,mk,,macedonian,,,mk

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,6,11,24,62,30,73,mi.po,,mi,,maori,,,mi

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/mai.po,47,97,124,0,0,194,1027,241,1124,mai.po,,mai,,maithili,,,mai

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/lv.po,231,1086,967,0,0,0,0,231,1086,lv.po,,lv,,latvian,,,lv

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/lt.po,231,1086,940,0,0,0,0,231,1086,lt.po,,lt,,lithuanian,,,lt

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/li.po,15,30,32,9,29,6,14,30,73,li.po,,li,,limburgish,,,li

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ky.po,27,69,74,1,1,2,3,30,73,ky.po,,ky,,kyrgyz,,,ky

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ku.po,30,73,87,0,0,0,0,30,73,ku.po,,ku,,kurdish,,,ku

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ko.po,230,1084,985,0,0,0,0,230,1084,ko.po,,ko,,korean,,,ko

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/kn.po,230,1068,899,1,18,0,0,231,1086,kn.po,,kn,,kannada,,,kn

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/km.po,230,1084,522,0,0,0,0,230,1084,km.po,,km,,khmer,,,km

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/kk.po,89,207,223,0,0,142,879,231,1086,kk.po,,kk,,kazakh,,,kk

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ka.po,152,621,529,0,0,87,501,239,1122,ka.po,,ka,,georgian,,,ka

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ja.po,231,1086,443,0,0,0,0,231,1086,ja.po,,ja,,japanese,,,ja

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/it.po,231,1086,1208,0,0,0,0,231,1086,it.po,,it,,italian,,,it

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/is.po,17,33,43,8,27,5,13,30,73,is.po,,is,,icelandic,,,is

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/id.po,231,1086,1113,0,0,0,0,231,1086,id.po,,id,,indonesian,,,id

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hu.po,231,1086,984,0,0,0,0,231,1086,hu.po,,hu,,hungarian,,,hu

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hr.po,22,65,80,4,10,215,1049,241,1124,hr.po,,hr,,croatian,,,hr

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/hi.po,231,1086,1234,0,0,0,0,231,1086,hi.po,,hi,,hindi,,,hi

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/he.po,230,1084,1094,0,0,0,0,230,1084,he.po,,he,,hebrew,,,he

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gu.po,231,1086,1133,0,0,0,0,231,1086,gu.po,,gu,,gujarati,,,gu

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gl.po,231,1086,1330,0,0,0,0,231,1086,gl.po,,gl,,galician,,,gl

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/gd.po,231,1086,1331,0,0,0,0,231,1086,gd.po,,gd,,scottish gaelic,,,gd

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ga.po,143,343,404,0,0,98,781,241,1124,ga.po,,ga,,irish,,,ga

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fy.po,230,1082,1120,0,0,0,0,230,1082,fy.po,,fy,,western frisian,,,fy

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fr.po,230,1084,1336,0,0,0,0,230,1084,fr.po,,fr,,french,,,fr

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fi.po,230,1084,846,0,0,0,0,230,1084,fi.po,,fi,,finnish,,,fi

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/fa.po,230,1084,1127,0,0,0,0,230,1084,fa.po,,fa,,persian,,,fa

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/eu.po,229,1066,935,1,18,0,0,230,1084,eu.po,,eu,,basque,,,eu

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/et.po,230,1084,868,0,0,0,0,230,1084,et.po,,et,,estonian,,,et

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/es.po,231,1086,1356,0,0,0,0,231,1086,es.po,,es,,spanish,,,es

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/eo.po,153,410,403,0,0,78,676,231,1086,eo.po,,eo,,esperanto,,,eo

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,230,1084,1084,0,0,0,0,230,1084,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en_ca.po,33,88,88,0,0,0,0,33,88,en_ca.po,,en,ca,english,,canada,en_ca

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/en@shaw.po,195,893,892,46,231,0,0,241,1124,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/el.po,231,1086,1216,0,0,0,0,231,1086,el.po,,el,,greek,,,el

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/dz.po,241,1124,745,0,0,0,0,241,1124,dz.po,,dz,,dzongkha,,,dz

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/de.po,231,1086,1023,0,0,0,0,231,1086,de.po,,de,,german,,,de

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/da.po,231,1086,1023,0,0,0,0,231,1086,da.po,,da,,danish,,,da

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/cy.po,33,88,104,0,0,0,0,33,88,cy.po,,cy,,welsh,,,cy

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/cs.po,231,1086,1037,0,0,0,0,231,1086,cs.po,,cs,,czech,,,cs

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/crh.po,230,1084,959,0,0,0,0,230,1084,crh.po,,crh,,crimean turkish,,,crh

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,229,1066,1341,1,18,0,0,230,1084,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ca.po,229,1066,1343,2,20,0,0,231,1086,ca.po,,ca,,catalan,,,ca

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bs.po,230,1068,1148,1,18,0,0,231,1086,bs.po,,bs,,bosnian,,,bs

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/br.po,98,240,257,2,8,141,876,241,1124,br.po,,br,,breton,,,br

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,230,1068,1127,1,18,0,0,231,1086,bn_in.po,,bn,in,bangla,,india,bn_in

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bn.po,240,1106,1180,1,18,0,0,241,1124,bn.po,,bn,,bangla,,,bn

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/bg.po,230,1084,1263,0,0,0,0,230,1084,bg.po,,bg,,bulgarian,,,bg

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/be@latin.po,241,1124,1022,0,0,0,0,241,1124,be@latin.po,latin,be,,belarusian,,,be@latin

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/be.po,230,1084,1019,0,0,0,0,230,1084,be.po,,be,,belarusian,,,be

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/az.po,21,47,50,7,21,2,5,30,73,az.po,,az,,azerbaijani,,,az

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ast.po,241,1124,1303,0,0,0,0,241,1124,ast.po,,ast,,asturian,,,ast

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/as.po,230,1068,1055,1,18,0,0,231,1086,as.po,,as,,assamese,,,as

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/ar.po,241,1124,1093,0,0,0,0,241,1124,ar.po,,ar,,arabic,,,ar

+ libwnck3-3.31.4-1.fc30.src.rpm.stats.csv,po/am.po,11,26,35,13,33,6,14,30,73,am.po,,am,,amharic,,,am

+ lrzsz-0.12.20-47.fc30.src.rpm.stats.csv,po/de.po,128,709,711,2,404,5,10,135,1123,de.po,,de,,german,,,de

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bg.po,53,145,166,36,89,77,521,166,755,bg.po,,bg,,bulgarian,,,bg

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/eu.po,166,755,626,0,0,0,0,166,755,eu.po,,eu,,basque,,,eu

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/uk.po,91,208,216,0,0,75,547,166,755,uk.po,,uk,,ukrainian,,,uk

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pt.po,166,755,865,0,0,0,0,166,755,pt.po,,pt,,portuguese,,,pt

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/te.po,102,215,213,0,0,64,540,166,755,te.po,,te,,telugu,,,te

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/el.po,166,755,843,0,0,0,0,166,755,el.po,,el,,greek,,,el

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/en_gb.po,26,97,97,29,78,111,580,166,755,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/hr.po,121,422,420,0,0,45,333,166,755,hr.po,,hr,,croatian,,,hr

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/af.po,11,28,29,4,9,151,718,166,755,af.po,,af,,afrikaans,,,af

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ca.po,166,755,910,0,0,0,0,166,755,ca.po,,ca,,catalan,,,ca

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sv.po,166,755,735,0,0,0,0,166,755,sv.po,,sv,,swedish,,,sv

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fa.po,12,29,29,4,9,150,717,166,755,fa.po,,fa,,persian,,,fa

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pt_br.po,166,755,926,0,0,0,0,166,755,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/et.po,166,755,599,0,0,0,0,166,755,et.po,,et,,estonian,,,et

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/is.po,135,343,343,0,0,31,412,166,755,is.po,,is,,icelandic,,,is

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ro.po,26,97,91,29,78,111,580,166,755,ro.po,,ro,,romanian,,,ro

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nb.po,12,29,27,4,9,150,717,166,755,nb.po,,nb,,norwegian bokmål,,,nb

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ja.po,166,755,251,0,0,0,0,166,755,ja.po,,ja,,japanese,,,ja

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/be.po,26,97,87,29,78,111,580,166,755,be.po,,be,,belarusian,,,be

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sl.po,47,131,126,11,22,144,659,202,812,sl.po,,sl,,slovenian,,,sl

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/am.po,3,5,6,3,5,160,745,166,755,am.po,,am,,amharic,,,am

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/de.po,46,114,115,15,38,105,603,166,755,de.po,,de,,german,,,de

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/eo.po,12,29,28,4,9,150,717,166,755,eo.po,,eo,,esperanto,,,eo

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sr.po,166,755,742,0,0,0,0,166,755,sr.po,,sr,,serbian,,,sr

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

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ast.po,12,29,27,4,9,150,717,166,755,ast.po,,ast,,asturian,,,ast

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ko.po,166,755,660,0,0,0,0,166,755,ko.po,,ko,,korean,,,ko

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,166,755,166,755,th.po,,th,,thai,,,th

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ar.po,122,490,461,12,84,32,181,166,755,ar.po,,ar,,arabic,,,ar

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/zh_tw.po,149,680,241,14,40,3,35,166,755,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/lt.po,166,755,736,0,0,0,0,166,755,lt.po,,lt,,lithuanian,,,lt

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ms.po,12,29,25,4,9,150,717,166,755,ms.po,,ms,,malay,,,ms

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ru.po,166,755,738,0,0,0,0,166,755,ru.po,,ru,,russian,,,ru

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fi.po,105,241,192,11,40,50,474,166,755,fi.po,,fi,,finnish,,,fi

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nl.po,166,755,758,0,0,0,0,166,755,nl.po,,nl,,dutch,,,nl

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/hu.po,59,106,92,0,0,107,649,166,755,hu.po,,hu,,hungarian,,,hu

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/vi.po,26,97,152,29,78,111,580,166,755,vi.po,,vi,,vietnamese,,,vi

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/si.po,12,29,33,4,9,150,717,166,755,si.po,,si,,sinhala,,,si

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/nn.po,12,29,31,4,9,150,717,166,755,nn.po,,nn,,norwegian nynorsk,,,nn

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sk.po,159,713,695,0,0,7,42,166,755,sk.po,,sk,,slovak,,,sk

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

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pl.po,166,755,751,0,0,0,0,166,755,pl.po,,pl,,polish,,,pl

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/es.po,166,755,910,0,0,0,0,166,755,es.po,,es,,spanish,,,es

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fr.po,166,755,985,0,0,0,0,166,755,fr.po,,fr,,french,,,fr

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/it.po,52,142,146,32,81,82,532,166,755,it.po,,it,,italian,,,it

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ps.po,0,0,0,0,0,166,755,166,755,ps.po,,ps,,pashto,,,ps

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,166,755,166,755,ml.po,,ml,,malayalam,,,ml

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,28,27,5,10,150,717,166,755,bn_in.po,,bn,in,bangla,,india,bn_in

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/ug.po,26,97,83,29,78,111,580,166,755,ug.po,,ug,,uyghur,,,ug

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/fo.po,12,29,21,4,9,150,717,166,755,fo.po,,fo,,faroese,,,fo

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/kk.po,121,318,320,4,24,41,413,166,755,kk.po,,kk,,kazakh,,,kk

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

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/gl.po,166,755,917,0,0,0,0,166,755,gl.po,,gl,,galician,,,gl

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/sr@latin.po,165,734,726,0,0,1,21,166,755,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/da.po,166,755,701,0,0,0,0,166,755,da.po,,da,,danish,,,da

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/zh_cn.po,166,755,249,0,0,0,0,166,755,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/id.po,111,298,315,10,37,45,420,166,755,id.po,,id,,indonesian,,,id

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/bn.po,12,29,31,4,9,150,717,166,755,bn.po,,bn,,bangla,,,bn

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/tr.po,166,755,700,0,0,0,0,166,755,tr.po,,tr,,turkish,,,tr

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

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/cs.po,166,755,732,0,0,0,0,166,755,cs.po,,cs,,czech,,,cs

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/pa.po,12,29,29,4,9,150,717,166,755,pa.po,,pa,,punjabi,,,pa

+ lxsession-0.5.4-1.fc30.src.rpm.stats.csv,po/he.po,124,328,343,6,17,36,410,166,755,he.po,,he,,hebrew,,,he

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

+ m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/ja.po,5,107,23,0,0,55,1283,60,1390,ja.po,,ja,,japanese,,,ja

+ m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/eo.po,5,44,83,0,0,55,1346,60,1390,eo.po,,eo,,esperanto,,,eo

+ m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/de.po,54,1120,1080,2,42,4,228,60,1390,de.po,,de,,german,,,de

+ m17n-db-1.8.0-5.fc30.src.rpm.stats.csv,po/vi.po,3,130,208,3,119,54,1141,60,1390,vi.po,,vi,,vietnamese,,,vi

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/it.po,42,163,185,7,40,0,0,49,203,it.po,,it,,italian,,,it

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/nl.po,42,163,175,7,40,0,0,49,203,nl.po,,nl,,dutch,,,nl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/da.po,42,163,160,7,40,0,0,49,203,da.po,,da,,danish,,,da

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/cs.po,42,163,168,7,40,0,0,49,203,cs.po,,cs,,czech,,,cs

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ru.po,42,163,160,7,40,0,0,49,203,ru.po,,ru,,russian,,,ru

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/uk.po,42,163,149,7,40,0,0,49,203,uk.po,,uk,,ukrainian,,,uk

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ca.po,15,66,85,26,114,8,23,49,203,ca.po,,ca,,catalan,,,ca

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/zh_tw.po,3,6,3,25,123,21,74,49,203,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pl.po,42,163,162,7,40,0,0,49,203,pl.po,,pl,,polish,,,pl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/fi.po,42,163,140,7,40,0,0,49,203,fi.po,,fi,,finnish,,,fi

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/be.po,4,13,12,23,113,22,77,49,203,be.po,,be,,belarusian,,,be

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pt_br.po,42,163,191,7,40,0,0,49,203,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/af.po,4,13,12,23,113,22,77,49,203,af.po,,af,,afrikaans,,,af

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/eo.po,42,163,154,7,40,0,0,49,203,eo.po,,eo,,esperanto,,,eo

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/fr.po,42,163,195,7,40,0,0,49,203,fr.po,,fr,,french,,,fr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ga.po,40,153,161,9,50,0,0,49,203,ga.po,,ga,,irish,,,ga

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ms.po,4,13,15,23,113,22,77,49,203,ms.po,,ms,,malay,,,ms

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/bg.po,5,19,21,23,110,21,74,49,203,bg.po,,bg,,bulgarian,,,bg

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/eu.po,3,6,5,24,120,22,77,49,203,eu.po,,eu,,basque,,,eu

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sk.po,2,5,5,23,103,24,95,49,203,sk.po,,sk,,slovak,,,sk

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/nb.po,2,5,5,24,120,23,78,49,203,nb.po,,nb,,norwegian bokmål,,,nb

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/tr.po,4,13,11,24,116,21,74,49,203,tr.po,,tr,,turkish,,,tr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sr.po,42,163,165,7,40,0,0,49,203,sr.po,,sr,,serbian,,,sr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/pt.po,42,163,186,7,40,0,0,49,203,pt.po,,pt,,portuguese,,,pt

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ko.po,2,5,7,24,120,23,78,49,203,ko.po,,ko,,korean,,,ko

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/hu.po,42,163,160,7,40,0,0,49,203,hu.po,,hu,,hungarian,,,hu

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/es.po,42,163,198,7,40,0,0,49,203,es.po,,es,,spanish,,,es

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ro.po,14,57,61,23,101,12,45,49,203,ro.po,,ro,,romanian,,,ro

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sv.po,42,163,158,7,40,0,0,49,203,sv.po,,sv,,swedish,,,sv

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/ja.po,42,163,70,7,40,0,0,49,203,ja.po,,ja,,japanese,,,ja

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/de.po,42,163,166,7,40,0,0,49,203,de.po,,de,,german,,,de

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/gl.po,34,118,152,7,40,8,45,49,203,gl.po,,gl,,galician,,,gl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/et.po,35,150,127,6,37,8,16,49,203,et.po,,et,,estonian,,,et

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/vi.po,42,163,265,7,40,0,0,49,203,vi.po,,vi,,vietnamese,,,vi

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/rw.po,2,2,2,38,175,9,26,49,203,rw.po,,rw,,kinyarwanda,,,rw

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/sl.po,42,163,164,7,40,0,0,49,203,sl.po,,sl,,slovenian,,,sl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/el.po,3,6,7,22,102,24,95,49,203,el.po,,el,,greek,,,el

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,gl/po/zh_cn.po,41,160,63,8,43,0,0,49,203,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/nl.po,185,4827,4619,61,1176,130,2347,376,8350,nl.po,,nl,,dutch,,,nl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/da.po,278,3985,3576,0,0,98,4365,376,8350,da.po,,da,,danish,,,da

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/ru.po,376,8350,7382,0,0,0,0,376,8350,ru.po,,ru,,russian,,,ru

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/id.po,347,7617,7100,28,697,1,36,376,8350,id.po,,id,,indonesian,,,id

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/pl.po,374,8256,7683,2,94,0,0,376,8350,pl.po,,pl,,polish,,,pl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/pt_br.po,376,8350,9051,0,0,0,0,376,8350,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/fr.po,374,8256,9537,2,94,0,0,376,8350,fr.po,,fr,,french,,,fr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/tr.po,374,8256,6588,2,94,0,0,376,8350,tr.po,,tr,,turkish,,,tr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/sr.po,374,8256,7473,2,94,0,0,376,8350,sr.po,,sr,,serbian,,,sr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/es.po,363,7626,8143,6,349,7,375,376,8350,es.po,,es,,spanish,,,es

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/sv.po,376,8350,7667,0,0,0,0,376,8350,sv.po,,sv,,swedish,,,sv

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/ja.po,254,5069,1201,39,881,83,2400,376,8350,ja.po,,ja,,japanese,,,ja

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/de.po,376,8350,7764,0,0,0,0,376,8350,de.po,,de,,german,,,de

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,man/po4a/po/zh_cn.po,376,8350,1940,0,0,0,0,376,8350,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/it.po,85,452,540,14,109,101,485,200,1046,it.po,,it,,italian,,,it

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/nl.po,192,965,960,8,81,0,0,200,1046,nl.po,,nl,,dutch,,,nl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/da.po,200,1046,1026,0,0,0,0,200,1046,da.po,,da,,danish,,,da

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/cs.po,200,1046,1182,0,0,0,0,200,1046,cs.po,,cs,,czech,,,cs

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ru.po,200,1046,1120,0,0,0,0,200,1046,ru.po,,ru,,russian,,,ru

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/id.po,200,1046,1145,0,0,0,0,200,1046,id.po,,id,,indonesian,,,id

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ca.po,200,1046,1426,0,0,0,0,200,1046,ca.po,,ca,,catalan,,,ca

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/zh_tw.po,200,1046,483,0,0,0,0,200,1046,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/pl.po,200,1046,1156,0,0,0,0,200,1046,pl.po,,pl,,polish,,,pl

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/fi.po,72,290,250,13,86,115,670,200,1046,fi.po,,fi,,finnish,,,fi

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/pt_br.po,200,1046,1298,0,0,0,0,200,1046,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/eo.po,200,1046,1103,0,0,0,0,200,1046,eo.po,,eo,,esperanto,,,eo

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/fr.po,200,1046,1359,0,0,0,0,200,1046,fr.po,,fr,,french,,,fr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/tr.po,200,1046,976,0,0,0,0,200,1046,tr.po,,tr,,turkish,,,tr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/sr.po,200,1046,1180,0,0,0,0,200,1046,sr.po,,sr,,serbian,,,sr

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/es.po,200,1046,1309,0,0,0,0,200,1046,es.po,,es,,spanish,,,es

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ro.po,80,425,539,19,136,101,485,200,1046,ro.po,,ro,,romanian,,,ro

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/sv.po,200,1046,1023,0,0,0,0,200,1046,sv.po,,sv,,swedish,,,sv

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/ja.po,200,1046,558,0,0,0,0,200,1046,ja.po,,ja,,japanese,,,ja

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/de.po,200,1046,1094,0,0,0,0,200,1046,de.po,,de,,german,,,de

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/vi.po,200,1046,1688,0,0,0,0,200,1046,vi.po,,vi,,vietnamese,,,vi

+ man-db-2.8.4-4.fc30.src.rpm.stats.csv,po/zh_cn.po,200,1046,484,0,0,0,0,200,1046,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/sv.po,8,43,38,0,0,47,438,55,481,sv.po,,sv,,swedish,,,sv

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/fr.po,8,43,61,0,0,47,438,55,481,fr.po,,fr,,french,,,fr

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/nl.po,8,43,49,0,0,47,438,55,481,nl.po,,nl,,dutch,,,nl

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/es.po,29,212,278,0,0,26,269,55,481,es.po,,es,,spanish,,,es

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/de.po,16,122,105,0,0,39,359,55,481,de.po,,de,,german,,,de

+ mesa-19.0.2-3.fc30.src.rpm.stats.csv,src/util/xmlpool/ca.po,29,212,276,0,0,26,269,55,481,ca.po,,ca,,catalan,,,ca

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/nl.po,50,406,415,1,175,0,0,51,581,nl.po,,nl,,dutch,,,nl

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/et.po,44,270,252,0,0,7,311,51,581,et.po,,et,,estonian,,,et

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ms.po,31,165,157,0,0,20,416,51,581,ms.po,,ms,,malay,,,ms

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/cs.po,51,581,568,0,0,0,0,51,581,cs.po,,cs,,czech,,,cs

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sv.po,50,406,402,1,175,0,0,51,581,sv.po,,sv,,swedish,,,sv

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/tr.po,7,22,20,0,0,44,559,51,581,tr.po,,tr,,turkish,,,tr

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ru.po,50,406,413,1,175,0,0,51,581,ru.po,,ru,,russian,,,ru

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sr@latin.po,45,367,384,1,175,5,39,51,581,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pt.po,50,406,486,1,175,0,0,51,581,pt.po,,pt,,portuguese,,,pt

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ta.po,4,156,156,1,175,46,250,51,581,ta.po,,ta,,tamil,,,ta

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ast.po,49,397,464,1,175,1,9,51,581,ast.po,,ast,,asturian,,,ast

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/hu.po,50,406,373,1,175,0,0,51,581,hu.po,,hu,,hungarian,,,hu

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/es.po,50,406,490,1,175,0,0,51,581,es.po,,es,,spanish,,,es

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fr.po,50,406,519,1,175,0,0,51,581,fr.po,,fr,,french,,,fr

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ar.po,49,397,458,1,175,1,9,51,581,ar.po,,ar,,arabic,,,ar

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ca.po,50,406,534,1,175,0,0,51,581,ca.po,,ca,,catalan,,,ca

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/zh_tw.po,50,406,153,1,175,0,0,51,581,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pt_br.po,50,406,494,1,175,0,0,51,581,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ko.po,50,406,377,1,175,0,0,51,581,ko.po,,ko,,korean,,,ko

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/da.po,50,406,390,1,175,0,0,51,581,da.po,,da,,danish,,,da

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/el.po,47,286,330,0,0,4,295,51,581,el.po,,el,,greek,,,el

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/bs.po,47,380,399,1,175,3,26,51,581,bs.po,,bs,,bosnian,,,bs

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fi.po,34,174,150,0,0,17,407,51,581,fi.po,,fi,,finnish,,,fi

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/fa.po,50,406,447,1,175,0,0,51,581,fa.po,,fa,,persian,,,fa

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/zh_cn.po,50,406,194,1,175,0,0,51,581,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/lv.po,50,406,385,1,175,0,0,51,581,lv.po,,lv,,latvian,,,lv

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/gu.po,24,140,147,0,0,27,441,51,581,gu.po,,gu,,gujarati,,,gu

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/de.po,50,406,372,1,175,0,0,51,581,de.po,,de,,german,,,de

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/bg.po,50,406,455,1,175,0,0,51,581,bg.po,,bg,,bulgarian,,,bg

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/sr.po,45,367,384,1,175,5,39,51,581,sr.po,,sr,,serbian,,,sr

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/en_gb.po,49,397,397,1,175,1,9,51,581,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/pl.po,50,406,426,1,175,0,0,51,581,pl.po,,pl,,polish,,,pl

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/as.po,50,406,413,1,175,0,0,51,581,as.po,,as,,assamese,,,as

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/uk.po,50,406,417,1,175,0,0,51,581,uk.po,,uk,,ukrainian,,,uk

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/nds.po,3,10,10,0,0,48,571,51,581,nds.po,,nds,,low german,,,nds

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/ja.po,50,406,202,1,175,0,0,51,581,ja.po,,ja,,japanese,,,ja

+ mlocate-0.26-23.fc30.src.rpm.stats.csv,po/it.po,50,406,451,1,175,0,0,51,581,it.po,,it,,italian,,,it

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/cs.po,17,134,166,0,0,0,0,17,134,cs.po,,cs,,czech,,,cs

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/de.po,13,105,106,2,15,2,14,17,134,de.po,,de,,german,,,de

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,17,134,178,0,0,0,0,17,134,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/sk.po,17,134,132,0,0,0,0,17,134,sk.po,,sk,,slovak,,,sk

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/hu.po,17,134,157,0,0,0,0,17,134,hu.po,,hu,,hungarian,,,hu

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/uk.po,17,134,147,0,0,0,0,17,134,uk.po,,uk,,ukrainian,,,uk

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/tr.po,17,134,137,0,0,0,0,17,134,tr.po,,tr,,turkish,,,tr

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/sv.po,17,134,135,0,0,0,0,17,134,sv.po,,sv,,swedish,,,sv

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/pl.po,17,134,124,0,0,0,0,17,134,pl.po,,pl,,polish,,,pl

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/it.po,17,134,182,0,0,0,0,17,134,it.po,,it,,italian,,,it

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/id.po,17,134,132,0,0,0,0,17,134,id.po,,id,,indonesian,,,id

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/fr.po,17,134,177,0,0,0,0,17,134,fr.po,,fr,,french,,,fr

+ modemmanager-1.10.0-1.fc30.src.rpm.stats.csv,po/fur.po,17,134,204,0,0,0,0,17,134,fur.po,,fur,,friulian,,,fur

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,30,114,113,0,0,0,0,30,114,he.po,,he,,hebrew,,,he

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,34,131,121,0,0,0,0,34,131,nl.po,,nl,,dutch,,,nl

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,30,114,123,0,0,0,0,30,114,fa.po,,fa,,persian,,,fa

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,30,114,109,0,0,0,0,30,114,ug.po,,ug,,uyghur,,,ug

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,30,114,102,0,0,0,0,30,114,ne.po,,ne,,nepali,,,ne

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,30,114,39,0,0,0,0,30,114,ja.po,,ja,,japanese,,,ja

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,94,715,740,0,0,0,0,94,715,bn_in.po,,bn,in,bangla,,india,bn_in

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,30,114,105,0,0,0,0,30,114,eo.po,,eo,,esperanto,,,eo

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,30,114,140,0,0,0,0,30,114,vi.po,,vi,,vietnamese,,,vi

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,30,114,129,0,0,0,0,30,114,ro.po,,ro,,romanian,,,ro

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,30,114,167,0,0,0,0,30,114,ca.po,,ca,,catalan,,,ca

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,94,715,720,0,0,0,0,94,715,or.po,,or,,odia,,,or

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,14,29,26,0,0,16,85,30,114,is.po,,is,,icelandic,,,is

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,30,114,114,0,0,0,0,30,114,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,34,131,121,0,0,0,0,34,131,hu.po,,hu,,hungarian,,,hu

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,30,114,104,0,0,0,0,30,114,lv.po,,lv,,latvian,,,lv

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,30,114,98,0,0,0,0,30,114,de.po,,de,,german,,,de

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,34,131,170,0,0,0,0,34,131,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,97,730,752,0,0,0,0,97,730,bn.po,,bn,,bangla,,,bn

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,30,114,117,0,0,0,0,30,114,bs.po,,bs,,bosnian,,,bs

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,34,131,164,0,0,0,0,34,131,it.po,,it,,italian,,,it

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,30,114,99,0,0,0,0,30,114,nb.po,,nb,,norwegian bokmål,,,nb

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,30,114,161,0,0,0,0,30,114,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,30,114,136,0,0,0,0,30,114,gd.po,,gd,,scottish gaelic,,,gd

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,30,114,111,0,0,0,0,30,114,hr.po,,hr,,croatian,,,hr

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,30,114,155,0,0,0,0,30,114,oc.po,,oc,,occitan,,,oc

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,30,114,38,0,0,0,0,30,114,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,34,131,101,0,0,0,0,34,131,sv.po,,sv,,swedish,,,sv

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,30,114,111,0,0,0,0,30,114,te.po,,te,,telugu,,,te

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,34,131,108,0,0,0,0,34,131,da.po,,da,,danish,,,da

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,23,73,59,1,4,6,37,30,114,fi.po,,fi,,finnish,,,fi

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,30,114,110,0,0,0,0,30,114,sk.po,,sk,,slovak,,,sk

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,83,630,630,14,100,0,0,97,730,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,30,114,115,0,0,0,0,30,114,be.po,,be,,belarusian,,,be

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,12,16,24,0,0,82,699,94,715,mai.po,,mai,,maithili,,,mai

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,30,114,121,0,0,0,0,30,114,sr.po,,sr,,serbian,,,sr

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,30,114,98,0,0,0,0,30,114,et.po,,et,,estonian,,,et

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,30,114,107,0,0,0,0,30,114,ko.po,,ko,,korean,,,ko

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,,ht,,haitian creole,,,ht

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,30,114,151,0,0,0,0,30,114,fur.po,,fur,,friulian,,,fur

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,34,131,132,0,0,0,0,34,131,pl.po,,pl,,polish,,,pl

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,114,36,0,0,0,0,30,114,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,30,114,116,0,0,0,0,30,114,kk.po,,kk,,kazakh,,,kk

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,30,114,118,0,0,0,0,30,114,tg.po,,tg,,tajik,,,tg

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,34,131,194,0,0,0,0,34,131,es.po,,es,,spanish,,,es

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,30,114,117,0,0,0,0,30,114,uk.po,,uk,,ukrainian,,,uk

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,30,114,109,0,0,0,0,30,114,ru.po,,ru,,russian,,,ru

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,30,114,102,0,0,0,0,30,114,ar.po,,ar,,arabic,,,ar

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,30,114,153,0,0,0,0,30,114,bg.po,,bg,,bulgarian,,,bg

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,30,114,38,0,0,0,0,30,114,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,34,131,124,0,0,0,0,34,131,tr.po,,tr,,turkish,,,tr

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,30,114,108,0,0,0,0,30,114,eu.po,,eu,,basque,,,eu

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,30,114,113,0,0,0,0,30,114,as.po,,as,,assamese,,,as

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,94,715,569,0,0,0,0,94,715,kn.po,,kn,,kannada,,,kn

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lo.po,30,114,48,0,0,0,0,30,114,lo.po,,lo,,lao,,,lo

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,30,114,125,0,0,0,0,30,114,el.po,,el,,greek,,,el

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,30,114,114,0,0,0,0,30,114,pa.po,,pa,,punjabi,,,pa

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,30,114,125,0,0,0,0,30,114,hi.po,,hi,,hindi,,,hi

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,30,114,97,0,0,0,0,30,114,lt.po,,lt,,lithuanian,,,lt

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,30,114,101,0,0,0,0,30,114,gu.po,,gu,,gujarati,,,gu

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,30,114,38,0,0,0,0,30,114,th.po,,th,,thai,,,th

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,30,114,167,0,0,0,0,30,114,an.po,,an,,aragonese,,,an

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,76,294,291,0,0,0,0,76,294,nn.po,,nn,,norwegian nynorsk,,,nn

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,94,715,631,0,0,0,0,94,715,mr.po,,mr,,marathi,,,mr

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,34,131,124,0,0,0,0,34,131,id.po,,id,,indonesian,,,id

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,30,114,150,0,0,0,0,30,114,fr.po,,fr,,french,,,fr

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,30,114,92,0,0,0,0,30,114,ml.po,,ml,,malayalam,,,ml

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,30,114,110,0,0,0,0,30,114,sl.po,,sl,,slovenian,,,sl

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,30,114,171,0,0,0,0,30,114,gl.po,,gl,,galician,,,gl

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,97,730,863,0,0,0,0,97,730,ast.po,,ast,,asturian,,,ast

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,30,114,112,0,0,0,0,30,114,ta.po,,ta,,tamil,,,ta

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,34,131,131,0,0,0,0,34,131,cs.po,,cs,,czech,,,cs

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,76,294,380,0,0,0,0,76,294,mk.po,,mk,,macedonian,,,mk

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,94,426,497,0,0,0,0,94,426,sq.po,,sq,,albanian,,,sq

+ mousetweaks-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,30,114,121,0,0,0,0,30,114,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,1171,6674,4763,36,174,7,128,1214,6976,zu.po,,zu,,zulu,,,zu

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1077,5524,1480,0,0,0,0,1077,5524,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1050,6243,1428,0,0,0,0,1050,6243,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1082,5566,1537,0,0,0,0,1082,5566,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/yo.po,295,1434,1797,513,2994,222,1686,1030,6114,yo.po,,yo,,yoruba,,,yo

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

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,1227,6945,5811,18,111,10,154,1255,7210,xh.po,,xh,,xhosa,,,xh

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,505,1435,1779,182,813,574,4957,1261,7205,wa.po,,wa,,walloon,,,wa

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,1123,5606,7068,0,0,0,0,1123,5606,vi.po,,vi,,vietnamese,,,vi

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,1015,4687,3905,0,0,299,3457,1314,8144,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uz.po,1015,4687,3905,0,0,299,3457,1314,8144,uz.po,,uz,,uzbek,,,uz

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,1114,5948,5502,0,0,0,0,1114,5948,uk.po,,uk,,ukrainian,,,uk

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,1076,6381,4988,0,0,0,0,1076,6381,ug.po,,ug,,uyghur,,,ug

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,1123,5606,4450,0,0,0,0,1123,5606,tr.po,,tr,,turkish,,,tr

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

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,1095,5862,1986,0,0,0,0,1095,5862,th.po,,th,,thai,,,th

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,976,4685,4949,77,1667,0,0,1053,6352,tg.po,,tg,,tajik,,,tg

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,1029,6107,4975,1,7,0,0,1030,6114,te.po,,te,,telugu,,,te

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,1030,6114,5024,0,0,0,0,1030,6114,ta.po,,ta,,tamil,,,ta

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,1123,5606,5548,0,0,0,0,1123,5606,sv.po,,sv,,swedish,,,sv

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1087,5622,6307,0,0,0,0,1087,5622,sr@latin.po,latin,sr,,serbian,,,sr@latin

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

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,1123,5606,6317,0,0,0,0,1123,5606,sr.po,,sr,,serbian,,,sr

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,1320,8379,9223,0,0,0,0,1320,8379,sq.po,,sq,,albanian,,,sq

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,1123,5606,6276,0,0,0,0,1123,5606,sl.po,,sl,,slovenian,,,sl

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,1087,5620,5769,0,0,0,0,1087,5620,sk.po,,sk,,slovak,,,sk

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,298,887,976,347,1835,385,3392,1030,6114,si.po,,si,,sinhala,,,si

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,100,107,117,849,6436,306,669,1255,7212,rw.po,,rw,,kinyarwanda,,,rw

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,1123,5606,5574,0,0,0,0,1123,5606,ru.po,,ru,,russian,,,ru

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,1123,5606,6518,0,0,0,0,1123,5606,ro.po,,ro,,romanian,,,ro

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1123,5606,6242,0,0,0,0,1123,5606,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,1002,5439,5737,66,282,40,172,1108,5893,pt.po,,pt,,portuguese,,,pt

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ps.po,512,1166,1250,1,4,807,7209,1320,8379,ps.po,,ps,,pashto,,,ps

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,1123,5606,5651,0,0,0,0,1123,5606,pl.po,,pl,,polish,,,pl

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,1087,5622,6386,0,0,0,0,1087,5622,pa.po,,pa,,punjabi,,,pa

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,1030,6114,6397,0,0,0,0,1030,6114,or.po,,or,,odia,,,or

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,1087,5622,6463,0,0,0,0,1087,5622,oc.po,,oc,,occitan,,,oc

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nso.po,704,3641,4773,412,2671,198,1832,1314,8144,nso.po,,nso,,northern sotho,,,nso

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,1097,6708,6383,10,71,4,36,1111,6815,nn.po,,nn,,norwegian nynorsk,,,nn

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,1123,5606,5909,0,0,0,0,1123,5606,nl.po,,nl,,dutch,,,nl

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,712,2397,2361,342,2525,70,1088,1124,6010,ne.po,,ne,,nepali,,,ne

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nds.po,813,2511,2359,0,0,588,6170,1401,8681,nds.po,,nds,,low german,,,nds

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,1096,5161,5086,20,674,11,153,1127,5988,nb.po,,nb,,norwegian bokmål,,,nb

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/my.po,288,797,572,0,0,1161,8094,1449,8891,my.po,,my,,burmese,,,my

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,844,4023,3681,244,1920,33,1136,1121,7079,ms.po,,ms,,malay,,,ms

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,1030,6114,5696,0,0,0,0,1030,6114,mr.po,,mr,,marathi,,,mr

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mn.po,1174,6597,5791,75,465,13,144,1262,7206,mn.po,,mn,,mongolian,,,mn

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,784,3484,2868,236,1891,104,665,1124,6040,ml.po,,ml,,malayalam,,,ml

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,1121,7079,7322,0,0,0,0,1121,7079,mk.po,,mk,,macedonian,,,mk

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mi.po,167,244,285,78,170,969,6562,1214,6976,mi.po,,mi,,maori,,,mi

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,1048,6089,6546,96,733,16,147,1160,6969,mg.po,,mg,,malagasy,,,mg

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,951,5078,5462,0,0,343,3175,1294,8253,mai.po,,mai,,maithili,,,mai

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,1123,5606,5259,0,0,0,0,1123,5606,lv.po,,lv,,latvian,,,lv

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,1123,5606,5087,0,0,0,0,1123,5606,lt.po,,lt,,lithuanian,,,lt

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ln.po,996,5489,5850,0,0,0,0,996,5489,ln.po,,ln,,lingala,,,ln

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/li.po,743,3450,3347,398,2903,120,852,1261,7205,li.po,,li,,limburgish,,,li

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,391,999,879,74,407,590,4910,1055,6316,ky.po,,ky,,kyrgyz,,,ky

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,658,2464,2638,232,1737,281,3114,1171,7315,ku.po,,ku,,kurdish,,,ku

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,1123,5606,4326,0,0,0,0,1123,5606,ko.po,,ko,,korean,,,ko

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,1030,6114,5253,0,0,0,0,1030,6114,kn.po,,kn,,kannada,,,kn

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,11,42,14,89,398,1013,6331,1113,6771,km.po,,km,,khmer,,,km

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,1123,5606,4680,0,0,0,0,1123,5606,kk.po,,kk,,kazakh,,,kk

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,1226,6415,4739,8,35,88,1948,1322,8398,ka.po,,ka,,georgian,,,ka

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,1077,5536,1499,19,32,27,38,1123,5606,ja.po,,ja,,japanese,,,ja

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,1123,5606,5938,0,0,0,0,1123,5606,it.po,,it,,italian,,,it

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,1077,5524,5612,0,0,0,0,1077,5524,is.po,,is,,icelandic,,,is

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

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

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,1123,5606,5494,0,0,0,0,1123,5606,id.po,,id,,indonesian,,,id

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hy.po,1140,6554,5928,28,262,0,0,1168,6816,hy.po,,hy,,armenian,,,hy

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,1123,5606,5020,0,0,0,0,1123,5606,hu.po,,hu,,hungarian,,,hu

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,1077,5524,5457,0,0,0,0,1077,5524,hr.po,,hr,,croatian,,,hr

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,1030,6114,7276,0,0,0,0,1030,6114,hi.po,,hi,,hindi,,,hi

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,1108,5893,5862,0,0,0,0,1108,5893,he.po,,he,,hebrew,,,he

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

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gv.po,1269,7500,9107,138,863,36,521,1443,8884,gv.po,,gv,,manx,,,gv

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,1030,6114,6546,0,0,0,0,1030,6114,gu.po,,gu,,gujarati,,,gu

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,1123,5606,6168,0,0,0,0,1123,5606,gl.po,,gl,,galician,,,gl

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,1087,5620,8440,0,0,0,0,1087,5620,gd.po,,gd,,scottish gaelic,,,gd

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,416,1130,1618,168,785,311,3255,895,5170,ga.po,,ga,,irish,,,ga

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fy.po,484,946,932,0,0,959,7938,1443,8884,fy.po,,fy,,western frisian,,,fy

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,1123,5606,6504,0,0,0,0,1123,5606,fur.po,,fur,,friulian,,,fur

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,1123,5606,6496,0,0,0,0,1123,5606,fr.po,,fr,,french,,,fr

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,1090,4753,3992,22,694,11,159,1123,5606,fi.po,,fi,,finnish,,,fi

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,1114,5984,6560,0,0,0,0,1114,5984,fa.po,,fa,,persian,,,fa

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,1123,5606,4837,0,0,0,0,1123,5606,eu.po,,eu,,basque,,,eu

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,1049,6236,4871,1,7,0,0,1050,6243,et.po,,et,,estonian,,,et

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,1123,5606,6297,0,0,0,0,1123,5606,es.po,,es,,spanish,,,es

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,1123,5606,5377,0,0,0,0,1123,5606,eo.po,,eo,,esperanto,,,eo

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,1077,5524,5604,0,0,0,0,1077,5524,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,1192,7325,7330,0,0,0,0,1192,7325,en_ca.po,,en,ca,english,,canada,en_ca

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,1333,7548,7548,105,1292,0,0,1438,8840,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,1123,5606,5791,0,0,0,0,1123,5606,el.po,,el,,greek,,,el

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,1172,7054,3098,3,10,1,2,1176,7066,dz.po,,dz,,dzongkha,,,dz

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,1123,5606,5721,0,0,0,0,1123,5606,de.po,,de,,german,,,de

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,1123,5606,5403,0,0,0,0,1123,5606,da.po,,da,,danish,,,da

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,1162,7004,7511,1,1,0,0,1163,7005,cy.po,,cy,,welsh,,,cy

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,1123,5606,5709,0,0,0,0,1123,5606,cs.po,,cs,,czech,,,cs

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,1032,6170,4852,2,16,6,46,1040,6232,crh.po,,crh,,crimean turkish,,,crh

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1114,5984,7063,0,0,0,0,1114,5984,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,1123,5606,6627,0,0,0,0,1123,5606,ca.po,,ca,,catalan,,,ca

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,869,5118,5012,0,0,0,0,869,5118,bs.po,,bs,,bosnian,,,bs

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,1417,8788,10044,1,13,0,0,1418,8801,br.po,,br,,breton,,,br

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bo.po,1031,6259,2219,115,823,46,321,1192,7403,bo.po,,bo,,tibetan,,,bo

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,1030,6114,6520,0,0,0,0,1030,6114,bn_in.po,,bn,in,bangla,,india,bn_in

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1121,7063,7293,7,66,0,0,1128,7129,bn.po,,bn,,bangla,,,bn

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,864,5223,5540,0,0,0,0,864,5223,bg.po,,bg,,bulgarian,,,bg

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,1287,7522,6673,8,104,19,509,1314,8135,be@latin.po,latin,be,,belarusian,,,be@latin

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,1123,5606,5651,0,0,0,0,1123,5606,be.po,,be,,belarusian,,,be

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,1214,6881,5493,40,193,8,132,1262,7206,az.po,,az,,azerbaijani,,,az

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,1121,7079,7278,0,0,0,0,1121,7079,ast.po,,ast,,asturian,,,ast

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,1030,6114,6295,0,0,0,0,1030,6114,as.po,,as,,assamese,,,as

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,1029,4536,5586,21,595,27,393,1077,5524,ar.po,,ar,,arabic,,,ar

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,783,3679,3986,0,0,85,1400,868,5079,an.po,,an,,aragonese,,,an

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,381,909,971,190,657,690,5639,1261,7205,am.po,,am,,amharic,,,am

+ nautilus-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,1050,4908,5323,0,0,30,636,1080,5544,af.po,,af,,afrikaans,,,af

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en_ca.po,39,173,171,0,0,0,0,39,173,en_ca.po,,en,ca,english,,canada,en_ca

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pt_br.po,10,56,69,0,0,0,0,10,56,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ja.po,8,45,16,0,0,0,0,8,45,ja.po,,ja,,japanese,,,ja

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/af.po,6,31,37,0,0,2,14,8,45,af.po,,af,,afrikaans,,,af

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/da.po,10,56,52,0,0,0,0,10,56,da.po,,da,,danish,,,da

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nl.po,8,45,41,0,0,0,0,8,45,nl.po,,nl,,dutch,,,nl

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/mk.po,62,299,293,0,0,0,0,62,299,mk.po,,mk,,macedonian,,,mk

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/he.po,8,45,45,0,0,0,0,8,45,he.po,,he,,hebrew,,,he

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/rw.po,2,1,1,12,42,5,10,19,53,rw.po,,rw,,kinyarwanda,,,rw

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sq.po,20,55,58,0,0,0,0,20,55,sq.po,,sq,,albanian,,,sq

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/tr.po,10,56,48,0,0,0,0,10,56,tr.po,,tr,,turkish,,,tr

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/mr.po,8,45,47,0,0,0,0,8,45,mr.po,,mr,,marathi,,,mr

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_cn.po,10,56,15,0,0,0,0,10,56,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/de.po,10,56,53,0,0,0,0,10,56,de.po,,de,,german,,,de

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/be.po,10,56,58,0,0,0,0,10,56,be.po,,be,,belarusian,,,be

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/it.po,10,56,67,0,0,0,0,10,56,it.po,,it,,italian,,,it

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bn_in.po,8,45,46,0,0,0,0,8,45,bn_in.po,,bn,in,bangla,,india,bn_in

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/te.po,8,45,38,0,0,0,0,8,45,te.po,,te,,telugu,,,te

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/vi.po,10,56,90,0,0,0,0,10,56,vi.po,,vi,,vietnamese,,,vi

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/cs.po,10,56,59,0,0,0,0,10,56,cs.po,,cs,,czech,,,cs

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ka.po,28,84,68,0,0,0,0,28,84,ka.po,,ka,,georgian,,,ka

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/br.po,33,98,112,0,0,34,218,67,316,br.po,,br,,breton,,,br

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ast.po,65,310,334,0,0,0,0,65,310,ast.po,,ast,,asturian,,,ast

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kk.po,10,56,50,0,0,0,0,10,56,kk.po,,kk,,kazakh,,,kk

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/eo.po,10,56,49,0,0,0,0,10,56,eo.po,,eo,,esperanto,,,eo

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hr.po,10,56,60,0,0,0,0,10,56,hr.po,,hr,,croatian,,,hr

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bg.po,8,45,59,0,0,0,0,8,45,bg.po,,bg,,bulgarian,,,bg

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bn.po,65,310,304,0,0,0,0,65,310,bn.po,,bn,,bangla,,,bn

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kg.po,11,39,34,2,6,44,230,57,275,kg.po,,kg,,kongo,,,kg

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ms.po,50,217,189,0,0,0,0,50,217,ms.po,,ms,,malay,,,ms

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hi.po,8,45,62,0,0,0,0,8,45,hi.po,,hi,,hindi,,,hi

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nds.po,43,152,156,0,0,22,158,65,310,nds.po,,nds,,low german,,,nds

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/oc.po,10,56,77,0,0,0,0,10,56,oc.po,,oc,,occitan,,,oc

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sr.po,10,56,59,0,0,0,0,10,56,sr.po,,sr,,serbian,,,sr

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pt.po,10,56,67,0,0,0,0,10,56,pt.po,,pt,,portuguese,,,pt

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/bs.po,8,45,47,0,0,0,0,8,45,bs.po,,bs,,bosnian,,,bs

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ko.po,10,56,47,0,0,0,0,10,56,ko.po,,ko,,korean,,,ko

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ro.po,8,45,54,0,0,0,0,8,45,ro.po,,ro,,romanian,,,ro

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/is.po,10,56,51,0,0,0,0,10,56,is.po,,is,,icelandic,,,is

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pl.po,10,56,61,0,0,0,0,10,56,pl.po,,pl,,polish,,,pl

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ne.po,8,45,42,0,0,0,0,8,45,ne.po,,ne,,nepali,,,ne

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/km.po,59,274,130,0,0,0,0,59,274,km.po,,km,,khmer,,,km

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/th.po,8,45,17,0,0,0,0,8,45,th.po,,th,,thai,,,th

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ga.po,8,45,56,0,0,0,0,8,45,ga.po,,ga,,irish,,,ga

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/be@latin.po,60,289,251,0,0,0,0,60,289,be@latin.po,latin,be,,belarusian,,,be@latin

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ta.po,8,45,40,0,0,0,0,8,45,ta.po,,ta,,tamil,,,ta

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_tw.po,10,56,18,0,0,0,0,10,56,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/lv.po,10,56,50,0,0,0,0,10,56,lv.po,,lv,,latvian,,,lv

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sk.po,10,56,63,0,0,0,0,10,56,sk.po,,sk,,slovak,,,sk

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/or.po,8,45,46,0,0,0,0,8,45,or.po,,or,,odia,,,or

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/eu.po,10,56,55,0,0,0,0,10,56,eu.po,,eu,,basque,,,eu

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ar.po,6,31,33,0,0,2,14,8,45,ar.po,,ar,,arabic,,,ar

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/tg.po,8,45,52,0,0,0,0,8,45,tg.po,,tg,,tajik,,,tg

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fur.po,10,56,70,0,0,0,0,10,56,fur.po,,fur,,friulian,,,fur

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/lt.po,10,56,49,0,0,0,0,10,56,lt.po,,lt,,lithuanian,,,lt

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fi.po,8,42,29,0,0,2,14,10,56,fi.po,,fi,,finnish,,,fi

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ca.po,10,56,80,0,0,0,0,10,56,ca.po,,ca,,catalan,,,ca

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en_gb.po,8,45,45,0,0,0,0,8,45,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fa.po,8,45,59,0,0,0,0,8,45,fa.po,,fa,,persian,,,fa

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ca@valencia.po,8,45,66,0,0,0,0,8,45,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/id.po,10,56,58,0,0,0,0,10,56,id.po,,id,,indonesian,,,id

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/kn.po,8,45,38,0,0,0,0,8,45,kn.po,,kn,,kannada,,,kn

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/en@shaw.po,64,308,305,0,0,0,0,64,308,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ml.po,8,45,33,0,0,0,0,8,45,ml.po,,ml,,malayalam,,,ml

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sr@latin.po,10,56,59,0,0,0,0,10,56,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gd.po,10,56,75,0,0,0,0,10,56,gd.po,,gd,,scottish gaelic,,,gd

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/el.po,10,56,61,0,0,0,0,10,56,el.po,,el,,greek,,,el

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/zh_hk.po,8,45,12,0,0,0,0,8,45,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sv.po,10,56,46,0,0,0,0,10,56,sv.po,,sv,,swedish,,,sv

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/uk.po,8,45,48,0,0,0,0,8,45,uk.po,,uk,,ukrainian,,,uk

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/et.po,8,45,37,0,0,0,0,8,45,et.po,,et,,estonian,,,et

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nb.po,10,56,45,0,0,0,0,10,56,nb.po,,nb,,norwegian bokmål,,,nb

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/an.po,8,45,62,0,0,0,0,8,45,an.po,,an,,aragonese,,,an

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gu.po,8,45,50,0,0,0,0,8,45,gu.po,,gu,,gujarati,,,gu

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ln.po,8,45,56,0,0,0,0,8,45,ln.po,,ln,,lingala,,,ln

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/es.po,10,56,76,0,0,0,0,10,56,es.po,,es,,spanish,,,es

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/pa.po,8,45,54,0,0,0,0,8,45,pa.po,,pa,,punjabi,,,pa

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/as.po,8,45,49,0,0,0,0,8,45,as.po,,as,,assamese,,,as

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/gl.po,10,56,77,0,0,0,0,10,56,gl.po,,gl,,galician,,,gl

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ug.po,7,38,32,0,0,0,0,7,38,ug.po,,ug,,uyghur,,,ug

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/nn.po,64,308,275,0,0,0,0,64,308,nn.po,,nn,,norwegian nynorsk,,,nn

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/fr.po,10,56,73,0,0,0,0,10,56,fr.po,,fr,,french,,,fr

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/hu.po,10,56,47,0,0,0,0,10,56,hu.po,,hu,,hungarian,,,hu

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/sl.po,10,56,64,0,0,0,0,10,56,sl.po,,sl,,slovenian,,,sl

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/dz.po,39,173,56,0,0,0,0,39,173,dz.po,,dz,,dzongkha,,,dz

+ nautilus-sendto-3.8.6-4.fc30.src.rpm.stats.csv,po/ru.po,10,56,61,0,0,0,0,10,56,ru.po,,ru,,russian,,,ru

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/tr.po,14,76,57,47,255,75,363,136,694,tr.po,,tr,,turkish,,,tr

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/cs.po,14,76,70,51,274,71,344,136,694,cs.po,,cs,,czech,,,cs

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,32,172,104,522,136,694,ru.po,,ru,,russian,,,ru

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,44,249,92,445,136,694,fr.po,,fr,,french,,,fr

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/de.po,14,76,82,51,274,71,344,136,694,de.po,,de,,german,,,de

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/ja.po,6,32,11,46,251,84,411,136,694,ja.po,,ja,,japanese,,,ja

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/pl.po,131,662,676,2,14,3,18,136,694,pl.po,,pl,,polish,,,pl

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/nn.po,14,76,72,61,317,61,301,136,694,nn.po,,nn,,norwegian nynorsk,,,nn

+ neon-0.30.2-10.fc30.src.rpm.stats.csv,po/zh_cn.po,92,476,159,20,105,24,113,136,694,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/pt_br.po,500,2225,2477,0,0,0,0,500,2225,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/fr.po,433,1859,2044,19,88,48,278,500,2225,fr.po,,fr,,french,,,fr

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

+ net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/de.po,486,2168,2038,8,31,6,26,500,2225,de.po,,de,,german,,,de

+ net-tools-2.0-0.54.20160912git.fc30.src.rpm.stats.csv,po/cs.po,608,2928,3121,0,0,0,0,608,2928,cs.po,,cs,,czech,,,cs

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1558,20550,4247,463,2974,15,266,2036,23790,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,33,177,70,331,1380,1672,22233,2036,23790,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1985,21016,7189,38,2613,13,161,2036,23790,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,133,457,1903,23333,2036,23790,wa.po,,wa,,walloon,,,wa

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/vi.po,23,158,198,60,347,1953,23285,2036,23790,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/uk.po,2036,23790,23429,0,0,0,0,2036,23790,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/tr.po,1050,7118,6374,355,2087,631,14585,2036,23790,tr.po,,tr,,turkish,,,tr

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/th.po,8,13,11,284,1092,1744,22685,2036,23790,th.po,,th,,thai,,,th

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/te.po,807,4990,4360,473,3164,756,15636,2036,23790,te.po,,te,,telugu,,,te

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ta.po,981,6525,5706,395,2395,660,14870,2036,23790,ta.po,,ta,,tamil,,,ta

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sv.po,1867,19460,17115,106,2314,63,2016,2036,23790,sv.po,,sv,,swedish,,,sv

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,135,644,671,598,3017,1303,20129,2036,23790,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sr.po,135,644,671,598,3017,1303,20129,2036,23790,sr.po,,sr,,serbian,,,sr

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,74,258,1962,23532,2036,23790,sq.po,,sq,,albanian,,,sq

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sl.po,258,1278,1302,459,2186,1319,20326,2036,23790,sl.po,,sl,,slovenian,,,sl

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/sk.po,123,584,611,272,1078,1641,22128,2036,23790,sk.po,,sk,,slovak,,,sk

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,204,792,1832,22998,2036,23790,rw.po,,rw,,kinyarwanda,,,rw

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ru.po,1886,22856,20510,137,682,13,252,2036,23790,ru.po,,ru,,russian,,,ru

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,2043,23862,26303,0,0,0,0,2043,23862,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pt.po,2,2,2,192,711,1842,23077,2036,23790,pt.po,,pt,,portuguese,,,pt

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pl.po,1736,12360,12178,0,0,0,0,1736,12360,pl.po,,pl,,polish,,,pl

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/pa.po,705,4064,4663,524,3297,807,16429,2036,23790,pa.po,,pa,,punjabi,,,pa

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/or.po,703,4054,4194,526,3307,807,16429,2036,23790,or.po,,or,,odia,,,or

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/oc.po,142,474,570,300,1328,1594,21988,2036,23790,oc.po,,oc,,occitan,,,oc

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/nl.po,16,106,100,28,155,1992,23529,2036,23790,nl.po,,nl,,dutch,,,nl

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ne.po,2,2,4,132,495,1902,23293,2036,23790,ne.po,,ne,,nepali,,,ne

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/nb.po,10,53,51,33,196,1993,23541,2036,23790,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/mr.po,807,4990,4787,474,3170,755,15630,2036,23790,mr.po,,mr,,marathi,,,mr

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ml.po,703,4054,3407,526,3307,807,16429,2036,23790,ml.po,,ml,,malayalam,,,ml

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,3,27,2033,23763,2036,23790,mk.po,,mk,,macedonian,,,mk

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/lv.po,5,10,10,276,1089,1755,22691,2036,23790,lv.po,,lv,,latvian,,,lv

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/lt.po,560,2847,2495,502,3030,974,17913,2036,23790,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ku.po,1,2,2,256,1014,1779,22774,2036,23790,ku.po,,ku,,kurdish,,,ku

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ko.po,1860,22794,18435,162,735,14,261,2036,23790,ko.po,,ko,,korean,,,ko

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/kn.po,807,4990,4493,473,3164,756,15636,2036,23790,kn.po,,kn,,kannada,,,kn

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ka.po,8,13,13,284,1092,1744,22685,2036,23790,ka.po,,ka,,georgian,,,ka

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ja.po,1998,21403,8178,25,2226,13,161,2036,23790,ja.po,,ja,,japanese,,,ja

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/it.po,1776,21675,23174,246,1854,14,261,2036,23790,it.po,,it,,italian,,,it

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/id.po,1903,19866,18755,86,2406,47,1518,2036,23790,id.po,,id,,indonesian,,,id

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hu.po,333,1689,1657,580,3132,1123,18969,2036,23790,hu.po,,hu,,hungarian,,,hu

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hr.po,95,352,322,487,2422,1454,21016,2036,23790,hr.po,,hr,,croatian,,,hr

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/hi.po,807,4990,5566,534,4163,695,14637,2036,23790,hi.po,,hi,,hindi,,,hi

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,3,27,2033,23763,2036,23790,he.po,,he,,hebrew,,,he

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gu.po,714,4112,4394,576,4351,746,15327,2036,23790,gu.po,,gu,,gujarati,,,gu

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gl.po,478,1982,2468,447,2164,1111,19644,2036,23790,gl.po,,gl,,galician,,,gl

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/gd.po,139,1088,1401,352,1997,1545,20705,2036,23790,gd.po,,gd,,scottish gaelic,,,gd

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/fr.po,2008,23164,26154,14,365,14,261,2036,23790,fr.po,,fr,,french,,,fr

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/fi.po,97,475,412,393,1835,1546,21480,2036,23790,fi.po,,fi,,finnish,,,fi

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/eu.po,105,462,501,402,1879,1529,21449,2036,23790,eu.po,,eu,,basque,,,eu

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/et.po,27,177,136,62,347,1947,23266,2036,23790,et.po,,et,,estonian,,,et

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/es.po,1834,22640,25954,188,889,14,261,2036,23790,es.po,,es,,spanish,,,es

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/eo.po,209,981,894,417,1987,1451,21157,2077,24125,eo.po,,eo,,esperanto,,,eo

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,252,1242,1241,554,2768,1230,19780,2036,23790,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,3,5,5,380,1612,1653,22173,2036,23790,en_ca.po,,en,ca,english,,canada,en_ca

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/el.po,766,4820,5267,554,4190,716,14780,2036,23790,el.po,,el,,greek,,,el

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/dz.po,2,2,2,197,733,1837,23055,2036,23790,dz.po,,dz,,dzongkha,,,dz

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/de.po,1967,22332,21773,56,1206,13,252,2036,23790,de.po,,de,,german,,,de

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/da.po,450,3777,3526,422,2112,1165,17945,2037,23834,da.po,,da,,danish,,,da

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/cs.po,410,1288,1243,405,2241,1221,20261,2036,23790,cs.po,,cs,,czech,,,cs

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ca.po,1207,8416,10277,320,2290,509,13084,2036,23790,ca.po,,ca,,catalan,,,ca

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,78,278,1958,23512,2036,23790,bs.po,,bs,,bosnian,,,bs

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,810,5011,5139,531,4142,695,14637,2036,23790,bn_in.po,,bn,in,bangla,,india,bn_in

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/bg.po,141,670,842,500,2500,1395,20620,2036,23790,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,0,0,0,5,29,2031,23761,2036,23790,be@latin.po,latin,be,,belarusian,,,be@latin

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/as.po,817,5059,5128,525,4100,694,14631,2036,23790,as.po,,as,,assamese,,,as

+ networkmanager-1.16.0-1.fc30.src.rpm.stats.csv,po/ar.po,2,2,2,145,545,1889,23243,2036,23790,ar.po,,ar,,arabic,,,ar

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sk.po,804,3225,3289,86,594,96,1009,986,4828,sk.po,,sk,,slovak,,,sk

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bs.po,542,1996,2016,184,1154,202,1253,928,4403,bs.po,,bs,,bosnian,,,bs

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bn_in.po,331,1081,1272,305,1617,292,1705,928,4403,bn_in.po,,bn,in,bangla,,india,bn_in

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/be@latin.po,137,382,387,325,1337,466,2684,928,4403,be@latin.po,latin,be,,belarusian,,,be@latin

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fr.po,991,4844,5727,0,0,0,0,991,4844,fr.po,,fr,,french,,,fr

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/oc.po,580,2082,2514,152,1003,196,1318,928,4403,oc.po,,oc,,occitan,,,oc

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/km.po,538,1965,952,186,1178,204,1260,928,4403,km.po,,km,,khmer,,,km

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/de.po,981,4790,4490,0,0,3,13,984,4803,de.po,,de,,german,,,de

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/eo.po,510,1739,1680,134,1037,328,1954,972,4730,eo.po,,eo,,esperanto,,,eo

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hu.po,910,4330,3988,5,27,13,46,928,4403,hu.po,,hu,,hungarian,,,hu

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/mk.po,333,1102,1308,275,1593,320,1708,928,4403,mk.po,,mk,,macedonian,,,mk

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/da.po,986,4828,4319,0,0,0,0,986,4828,da.po,,da,,danish,,,da

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/he.po,497,1803,1831,194,1174,237,1426,928,4403,he.po,,he,,hebrew,,,he

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_tw.po,540,1974,921,181,1164,251,1592,972,4730,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/es.po,960,4487,5426,0,0,17,323,977,4810,es.po,,es,,spanish,,,es

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ne.po,32,70,76,227,849,669,3484,928,4403,ne.po,,ne,,nepali,,,ne

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_cn.po,600,2264,1027,171,1147,201,1319,972,4730,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/as.po,540,1975,2165,190,1184,198,1244,928,4403,as.po,,as,,assamese,,,as

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/et.po,488,1783,1506,195,1177,245,1443,928,4403,et.po,,et,,estonian,,,et

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fi.po,568,1914,1485,172,1163,188,1326,928,4403,fi.po,,fi,,finnish,,,fi

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sr@latin.po,972,4730,4709,0,0,0,0,972,4730,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/th.po,377,1305,660,244,1464,307,1634,928,4403,th.po,,th,,thai,,,th

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/crh.po,444,1593,1526,197,1189,287,1621,928,4403,crh.po,,crh,,crimean turkish,,,crh

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/vi.po,541,1981,2558,186,1174,201,1248,928,4403,vi.po,,vi,,vietnamese,,,vi

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ml.po,491,1792,1568,193,1172,244,1439,928,4403,ml.po,,ml,,malayalam,,,ml

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ro.po,525,2292,2593,96,474,147,656,768,3422,ro.po,,ro,,romanian,,,ro

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ast.po,326,1087,1286,277,1587,325,1729,928,4403,ast.po,,ast,,asturian,,,ast

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ca.po,978,4803,6020,0,0,0,0,978,4803,ca.po,,ca,,catalan,,,ca

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ar.po,278,892,916,269,1392,381,2119,928,4403,ar.po,,ar,,arabic,,,ar

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ms.po,333,1102,1085,273,1586,322,1715,928,4403,ms.po,,ms,,malay,,,ms

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,539,1974,2582,186,1175,203,1254,928,4403,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ku.po,135,272,293,191,745,602,3386,928,4403,ku.po,,ku,,kurdish,,,ku

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ug.po,479,1711,1640,200,1194,249,1498,928,4403,ug.po,,ug,,uyghur,,,ug

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nl.po,972,4730,4644,0,0,0,0,972,4730,nl.po,,nl,,dutch,,,nl

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/eu.po,541,1981,1860,187,1174,200,1248,928,4403,eu.po,,eu,,basque,,,eu

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hi.po,486,1760,2125,198,1188,244,1455,928,4403,hi.po,,hi,,hindi,,,hi

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nn.po,366,1210,1160,250,1509,312,1684,928,4403,nn.po,,nn,,norwegian nynorsk,,,nn

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sv.po,985,4814,4337,0,0,0,0,985,4814,sv.po,,sv,,swedish,,,sv

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/id.po,984,4803,4662,0,0,0,0,984,4803,id.po,,id,,indonesian,,,id

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/mr.po,369,1190,1294,267,1566,292,1647,928,4403,mr.po,,mr,,marathi,,,mr

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pa.po,872,3588,3999,0,0,77,916,949,4504,pa.po,,pa,,punjabi,,,pa

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gd.po,780,3365,4473,30,128,118,910,928,4403,gd.po,,gd,,scottish gaelic,,,gd

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/or.po,331,1081,1224,305,1617,292,1705,928,4403,or.po,,or,,odia,,,or

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/lv.po,972,4730,4300,0,0,0,0,972,4730,lv.po,,lv,,latvian,,,lv

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ta.po,395,1281,1219,251,1502,282,1620,928,4403,ta.po,,ta,,tamil,,,ta

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sq.po,1,2,3,68,232,859,4169,928,4403,sq.po,,sq,,albanian,,,sq

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/el.po,540,1975,2126,191,1186,197,1242,928,4403,el.po,,el,,greek,,,el

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/tr.po,981,4720,4207,0,0,4,94,985,4814,tr.po,,tr,,turkish,,,tr

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/lt.po,991,4844,4337,0,0,0,0,991,4844,lt.po,,lt,,lithuanian,,,lt

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ja.po,969,4707,1931,2,14,1,9,972,4730,ja.po,,ja,,japanese,,,ja

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/kk.po,749,2641,2450,0,0,235,2162,984,4803,kk.po,,kk,,kazakh,,,kk

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/tg.po,307,685,741,388,2358,233,1360,928,4403,tg.po,,tg,,tajik,,,tg

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/cs.po,986,4828,4633,0,0,0,0,986,4828,cs.po,,cs,,czech,,,cs

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/en_ca.po,24,56,56,197,748,707,3599,928,4403,en_ca.po,,en,ca,english,,canada,en_ca

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,95,375,833,4028,928,4403,rw.po,,rw,,kinyarwanda,,,rw

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/it.po,984,4803,5162,0,0,0,0,984,4803,it.po,,it,,italian,,,it

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ru.po,897,3821,3493,0,0,87,982,984,4803,ru.po,,ru,,russian,,,ru

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/nb.po,530,1912,1828,189,1179,209,1312,928,4403,nb.po,,nb,,norwegian bokmål,,,nb

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ur.po,241,813,1104,300,1528,387,2062,928,4403,ur.po,,ur,,urdu,,,ur

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pl.po,991,4844,4526,0,0,0,0,991,4844,pl.po,,pl,,polish,,,pl

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/af.po,155,445,379,187,880,586,3078,928,4403,af.po,,af,,afrikaans,,,af

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pt.po,629,2353,2677,171,1131,128,919,928,4403,pt.po,,pt,,portuguese,,,pt

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/dz.po,32,70,40,227,849,669,3484,928,4403,dz.po,,dz,,dzongkha,,,dz

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/en_gb.po,485,1755,1755,203,1202,240,1446,928,4403,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/uk.po,364,1197,1174,252,1511,312,1695,928,4403,uk.po,,uk,,ukrainian,,,uk

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/zh_hk.po,543,1978,925,185,1177,200,1248,928,4403,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/be.po,482,1750,1625,196,1187,250,1466,928,4403,be.po,,be,,belarusian,,,be

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/is.po,816,3203,3155,23,145,133,1382,972,4730,is.po,,is,,icelandic,,,is

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gl.po,949,4504,5401,0,0,1,3,950,4507,gl.po,,gl,,galician,,,gl

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/ko.po,538,1972,1735,181,1161,253,1597,972,4730,ko.po,,ko,,korean,,,ko

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sr.po,972,4730,4709,0,0,0,0,972,4730,sr.po,,sr,,serbian,,,sr

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/wa.po,1,2,2,72,251,855,4150,928,4403,wa.po,,wa,,walloon,,,wa

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/sl.po,545,2002,2012,181,1148,202,1253,928,4403,sl.po,,sl,,slovenian,,,sl

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/hr.po,985,4814,4588,0,0,0,0,985,4814,hr.po,,hr,,croatian,,,hr

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/gu.po,499,1634,1899,196,1267,233,1502,928,4403,gu.po,,gu,,gujarati,,,gu

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/kn.po,331,1081,1038,305,1617,292,1705,928,4403,kn.po,,kn,,kannada,,,kn

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/an.po,313,915,1106,298,1787,317,1701,928,4403,an.po,,an,,aragonese,,,an

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/pt_br.po,991,4844,5606,0,0,0,0,991,4844,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/fa.po,377,1305,1606,244,1457,307,1641,928,4403,fa.po,,fa,,persian,,,fa

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/te.po,416,1414,1336,233,1419,279,1570,928,4403,te.po,,te,,telugu,,,te

+ network-manager-applet-1.8.20-2.fc30.src.rpm.stats.csv,po/bg.po,540,1975,2323,185,1174,203,1254,928,4403,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bg.po,16,54,59,2,5,578,3182,596,3241,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_cn.po,112,468,245,18,81,466,2692,596,3241,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_tw.po,23,86,44,2,11,571,3144,596,3241,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/kn.po,9,34,36,2,5,585,3202,596,3241,kn.po,,kn,,kannada,,,kn

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/or.po,16,54,71,2,5,578,3182,596,3241,or.po,,or,,odia,,,or

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fi.po,114,385,335,24,149,809,4872,947,5406,fi.po,,fi,,finnish,,,fi

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/es.po,929,5286,6666,0,0,18,120,947,5406,es.po,,es,,spanish,,,es

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pa.po,122,463,530,31,156,443,2622,596,3241,pa.po,,pa,,punjabi,,,pa

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fa.po,15,51,62,2,5,579,3185,596,3241,fa.po,,fa,,persian,,,fa

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ar.po,10,48,51,0,0,539,3016,549,3064,ar.po,,ar,,arabic,,,ar

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ro.po,16,54,54,2,5,578,3182,596,3241,ro.po,,ro,,romanian,,,ro

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,34,38,5,11,582,3196,596,3241,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ca.po,936,5323,6936,0,0,11,83,947,5406,ca.po,,ca,,catalan,,,ca

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/uk.po,81,305,336,17,102,498,2834,596,3241,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pl.po,969,5555,6112,0,0,0,0,969,5555,pl.po,,pl,,polish,,,pl

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/tg.po,6,10,10,0,0,543,3054,549,3064,tg.po,,tg,,tajik,,,tg

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/vi.po,31,134,191,2,5,563,3102,596,3241,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/en_gb.po,468,2531,2531,21,105,447,2690,936,5326,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/mr.po,9,34,33,2,5,585,3202,596,3241,mr.po,,mr,,marathi,,,mr

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ta.po,9,34,33,2,5,585,3202,596,3241,ta.po,,ta,,tamil,,,ta

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/lv.po,32,139,133,2,5,562,3097,596,3241,lv.po,,lv,,latvian,,,lv

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sv.po,910,5159,4870,0,0,37,247,947,5406,sv.po,,sv,,swedish,,,sv

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pt.po,883,4982,5697,0,0,64,424,947,5406,pt.po,,pt,,portuguese,,,pt

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/gl.po,156,780,1018,21,127,419,2334,596,3241,gl.po,,gl,,galician,,,gl

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bs.po,857,4812,4857,0,0,90,594,947,5406,bs.po,,bs,,bosnian,,,bs

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/tr.po,726,4047,3875,0,0,221,1359,947,5406,tr.po,,tr,,turkish,,,tr

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/de.po,964,5524,5487,2,14,3,17,969,5555,de.po,,de,,german,,,de

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/zh_hk.po,16,54,34,2,5,578,3182,596,3241,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/da.po,32,139,125,2,5,562,3097,596,3241,da.po,,da,,danish,,,da

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/te.po,9,34,34,2,5,585,3202,596,3241,te.po,,te,,telugu,,,te

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/lt.po,947,5406,5012,0,0,0,0,947,5406,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/pt_br.po,929,5286,6182,0,0,18,120,947,5406,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sl.po,514,2771,3118,20,94,402,2461,936,5326,sl.po,,sl,,slovenian,,,sl

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/et.po,32,139,133,2,5,562,3097,596,3241,et.po,,et,,estonian,,,et

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sr.po,947,5406,5964,0,0,0,0,947,5406,sr.po,,sr,,serbian,,,sr

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ko.po,16,54,49,2,5,578,3182,596,3241,ko.po,,ko,,korean,,,ko

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/bn_in.po,9,34,35,2,5,585,3202,596,3241,bn_in.po,,bn,in,bangla,,india,bn_in

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/it.po,93,346,400,391,1798,390,2780,874,4924,it.po,,it,,italian,,,it

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/nl.po,441,2398,2481,24,123,471,2805,936,5326,nl.po,,nl,,dutch,,,nl

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/as.po,16,54,68,2,5,578,3182,596,3241,as.po,,as,,assamese,,,as

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/he.po,16,54,64,2,5,578,3182,596,3241,he.po,,he,,hebrew,,,he

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/sr@latin.po,947,5406,5964,0,0,0,0,947,5406,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/eu.po,547,2935,3044,149,894,240,1497,936,5326,eu.po,,eu,,basque,,,eu

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/fr.po,58,213,247,9,44,529,2984,596,3241,fr.po,,fr,,french,,,fr

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/cs.po,969,5555,5702,0,0,0,0,969,5555,cs.po,,cs,,czech,,,cs

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/nb.po,35,128,124,6,28,555,3085,596,3241,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ru.po,32,139,129,2,5,562,3097,596,3241,ru.po,,ru,,russian,,,ru

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/ug.po,427,2314,2171,20,104,489,2908,936,5326,ug.po,,ug,,uyghur,,,ug

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/id.po,925,5277,5354,0,0,22,129,947,5406,id.po,,id,,indonesian,,,id

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/hu.po,969,5555,5922,0,0,0,0,969,5555,hu.po,,hu,,hungarian,,,hu

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/gu.po,16,54,66,2,5,578,3182,596,3241,gu.po,,gu,,gujarati,,,gu

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/eo.po,6,15,14,0,0,590,3226,596,3241,eo.po,,eo,,esperanto,,,eo

+ networkmanager-openconnect-1.2.4-11.fc30.src.rpm.stats.csv,po/el.po,540,2895,3194,13,75,383,2356,936,5326,el.po,,el,,greek,,,el

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sk.po,5,14,14,26,60,138,975,169,1049,sk.po,,sk,,slovak,,,sk

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/bs.po,169,1049,1020,0,0,0,0,169,1049,bs.po,,bs,,bosnian,,,bs

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ka.po,9,30,20,33,82,127,937,169,1049,ka.po,,ka,,georgian,,,ka

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fr.po,161,997,1230,2,11,6,41,169,1049,fr.po,,fr,,french,,,fr

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/de.po,256,1847,1773,0,0,0,0,256,1847,de.po,,de,,german,,,de

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/eo.po,30,43,41,2,6,137,1000,169,1049,eo.po,,eo,,esperanto,,,eo

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/hu.po,249,1768,1634,0,0,0,0,249,1768,hu.po,,hu,,hungarian,,,hu

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/mk.po,9,32,42,32,78,128,939,169,1049,mk.po,,mk,,macedonian,,,mk

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/da.po,255,1846,1733,0,0,0,0,255,1846,da.po,,da,,danish,,,da

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/he.po,29,82,87,14,31,126,936,169,1049,he.po,,he,,hebrew,,,he

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_tw.po,42,102,68,16,134,111,813,169,1049,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/es.po,246,1695,2036,3,41,7,118,256,1854,es.po,,es,,spanish,,,es

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_cn.po,126,750,338,11,59,32,240,169,1049,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/as.po,48,121,137,18,151,103,777,169,1049,as.po,,as,,assamese,,,as

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/et.po,71,207,167,11,137,87,705,169,1049,et.po,,et,,estonian,,,et

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fi.po,113,358,277,17,169,126,1320,256,1847,fi.po,,fi,,finnish,,,fi

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sr@latin.po,247,1734,1749,0,0,0,0,247,1734,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/th.po,10,31,21,27,72,132,946,169,1049,th.po,,th,,thai,,,th

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/vi.po,7,22,31,32,78,130,949,169,1049,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ro.po,52,147,156,21,165,96,737,169,1049,ro.po,,ro,,romanian,,,ro

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ca.po,256,1847,2279,0,0,0,0,256,1847,ca.po,,ca,,catalan,,,ca

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ar.po,10,33,34,37,97,122,919,169,1049,ar.po,,ar,,arabic,,,ar

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ps.po,36,93,102,15,50,118,906,169,1049,ps.po,,ps,,pashto,,,ps

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,52,133,154,26,189,91,727,169,1049,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ug.po,28,77,71,14,31,127,941,169,1049,ug.po,,ug,,uyghur,,,ug

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/nl.po,110,449,417,0,0,26,308,136,757,nl.po,,nl,,dutch,,,nl

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/eu.po,160,972,857,3,36,6,41,169,1049,eu.po,,eu,,basque,,,eu

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sv.po,256,1847,1685,0,0,0,0,256,1847,sv.po,,sv,,swedish,,,sv

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/id.po,256,1847,1813,0,0,0,0,256,1847,id.po,,id,,indonesian,,,id

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/mr.po,48,121,133,18,151,103,777,169,1049,mr.po,,mr,,marathi,,,mr

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pa.po,96,356,373,0,0,43,435,139,791,pa.po,,pa,,punjabi,,,pa

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/lv.po,249,1768,1623,0,0,0,0,249,1768,lv.po,,lv,,latvian,,,lv

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ta.po,49,125,126,19,156,101,768,169,1049,ta.po,,ta,,tamil,,,ta

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/el.po,199,1222,1341,6,64,24,327,229,1613,el.po,,el,,greek,,,el

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/tr.po,168,1164,1051,7,40,37,265,212,1469,tr.po,,tr,,turkish,,,tr

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/lt.po,256,1854,1720,0,0,0,0,256,1854,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ja.po,118,451,253,4,25,47,573,169,1049,ja.po,,ja,,japanese,,,ja

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/cs.po,255,1846,1739,0,0,0,0,255,1846,cs.po,,cs,,czech,,,cs

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/it.po,256,1847,2030,0,0,0,0,256,1847,it.po,,it,,italian,,,it

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ru.po,209,1328,1274,1,1,44,510,254,1839,ru.po,,ru,,russian,,,ru

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/nb.po,86,242,223,7,29,76,778,169,1049,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pl.po,256,1854,1801,0,0,0,0,256,1854,pl.po,,pl,,polish,,,pl

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pt.po,180,1265,1374,0,0,0,0,180,1265,pt.po,,pt,,portuguese,,,pt

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/dz.po,9,31,10,36,94,124,924,169,1049,dz.po,,dz,,dzongkha,,,dz

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/en_gb.po,134,788,788,10,77,25,184,169,1049,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/uk.po,71,207,195,11,137,87,705,169,1049,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/zh_hk.po,42,102,68,16,134,111,813,169,1049,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/be.po,96,337,334,15,164,58,548,169,1049,be.po,,be,,belarusian,,,be

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/gl.po,249,1768,2126,0,0,0,0,249,1768,gl.po,,gl,,galician,,,gl

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/ko.po,34,97,86,33,95,102,857,169,1049,ko.po,,ko,,korean,,,ko

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sr.po,247,1734,1749,0,0,0,0,247,1734,sr.po,,sr,,serbian,,,sr

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/sl.po,159,969,964,4,39,6,41,169,1049,sl.po,,sl,,slovenian,,,sl

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/hr.po,77,283,281,2,2,177,1562,256,1847,hr.po,,hr,,croatian,,,hr

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/gu.po,29,82,85,14,31,126,936,169,1049,gu.po,,gu,,gujarati,,,gu

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/kn.po,49,125,123,19,156,101,768,169,1049,kn.po,,kn,,kannada,,,kn

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/pt_br.po,256,1854,2176,0,0,0,0,256,1854,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/fa.po,70,205,231,12,139,87,705,169,1049,fa.po,,fa,,persian,,,fa

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/te.po,49,125,122,19,156,101,768,169,1049,te.po,,te,,telugu,,,te

+ networkmanager-openvpn-1.8.10-1.fc30.src.rpm.stats.csv,po/bg.po,70,205,229,12,139,87,705,169,1049,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_tw.po,44,144,74,0,0,0,0,44,144,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_hk.po,44,144,74,0,0,0,0,44,144,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/zh_cn.po,66,280,142,0,0,0,0,66,280,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/vi.po,129,588,817,0,0,0,0,129,588,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/uk.po,44,144,138,0,0,0,0,44,144,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ug.po,38,102,106,0,0,6,42,44,144,ug.po,,ug,,uyghur,,,ug

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/tr.po,71,407,401,0,0,0,0,71,407,tr.po,,tr,,turkish,,,tr

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/th.po,129,584,313,0,0,0,0,129,584,th.po,,th,,thai,,,th

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/te.po,43,118,127,0,0,0,0,43,118,te.po,,te,,telugu,,,te

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ta.po,44,144,151,0,0,0,0,44,144,ta.po,,ta,,tamil,,,ta

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sv.po,84,509,465,0,0,0,0,84,509,sv.po,,sv,,swedish,,,sv

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sr@latin.po,84,509,527,0,0,0,0,84,509,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sr.po,84,509,527,0,0,0,0,84,509,sr.po,,sr,,serbian,,,sr

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/sl.po,77,415,403,0,0,0,0,77,415,sl.po,,sl,,slovenian,,,sl

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ru.po,84,509,485,0,0,0,0,84,509,ru.po,,ru,,russian,,,ru

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ro.po,44,144,161,0,0,0,0,44,144,ro.po,,ro,,romanian,,,ro

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pt_br.po,84,509,588,0,0,0,0,84,509,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pt.po,71,407,458,0,0,0,0,71,407,pt.po,,pt,,portuguese,,,pt

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pl.po,84,509,509,0,0,0,0,84,509,pl.po,,pl,,polish,,,pl

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/pa.po,54,188,202,0,0,23,227,77,415,pa.po,,pa,,punjabi,,,pa

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/oc.po,74,410,486,0,0,0,0,74,410,oc.po,,oc,,occitan,,,oc

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/nl.po,84,509,457,0,0,0,0,84,509,nl.po,,nl,,dutch,,,nl

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/nb.po,56,193,184,0,0,21,222,77,415,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/mr.po,42,115,145,0,0,0,0,42,115,mr.po,,mr,,marathi,,,mr

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/mk.po,129,584,617,0,0,0,0,129,584,mk.po,,mk,,macedonian,,,mk

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/lv.po,84,509,474,0,0,0,0,84,509,lv.po,,lv,,latvian,,,lv

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/lt.po,84,509,475,0,0,0,0,84,509,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ko.po,44,144,132,0,0,0,0,44,144,ko.po,,ko,,korean,,,ko

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/kn.po,43,118,117,0,0,0,0,43,118,kn.po,,kn,,kannada,,,kn

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ka.po,129,584,412,0,0,0,0,129,584,ka.po,,ka,,georgian,,,ka

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ja.po,62,273,149,1,2,3,5,66,280,ja.po,,ja,,japanese,,,ja

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/it.po,84,509,560,0,0,0,0,84,509,it.po,,it,,italian,,,it

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/id.po,84,509,516,0,0,0,0,84,509,id.po,,id,,indonesian,,,id

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/hu.po,84,509,476,0,0,0,0,84,509,hu.po,,hu,,hungarian,,,hu

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/hr.po,83,508,477,0,0,1,1,84,509,hr.po,,hr,,croatian,,,hr

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/he.po,44,144,149,0,0,0,0,44,144,he.po,,he,,hebrew,,,he

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/gu.po,44,144,171,0,0,0,0,44,144,gu.po,,gu,,gujarati,,,gu

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/gl.po,77,415,501,0,0,0,0,77,415,gl.po,,gl,,galician,,,gl

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fur.po,84,509,581,0,0,0,0,84,509,fur.po,,fur,,friulian,,,fur

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fr.po,77,415,511,0,0,0,0,77,415,fr.po,,fr,,french,,,fr

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fi.po,47,147,118,0,0,27,263,74,410,fi.po,,fi,,finnish,,,fi

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/fa.po,44,144,173,0,0,24,145,68,289,fa.po,,fa,,persian,,,fa

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/eu.po,74,410,389,0,0,0,0,74,410,eu.po,,eu,,basque,,,eu

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/et.po,44,144,122,0,0,0,0,44,144,et.po,,et,,estonian,,,et

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/es.po,84,509,625,0,0,0,0,84,509,es.po,,es,,spanish,,,es

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/eo.po,22,37,34,0,0,44,243,66,280,eo.po,,eo,,esperanto,,,eo

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/en_gb.po,44,144,144,0,0,0,0,44,144,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/el.po,71,407,475,0,0,0,0,71,407,el.po,,el,,greek,,,el

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/de.po,84,509,470,0,0,0,0,84,509,de.po,,de,,german,,,de

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/da.po,84,509,463,0,0,0,0,84,509,da.po,,da,,danish,,,da

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/cs.po,84,509,485,0,0,0,0,84,509,cs.po,,cs,,czech,,,cs

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ca@valencia.po,42,115,145,1,3,1,26,44,144,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ca.po,84,509,650,0,0,0,0,84,509,ca.po,,ca,,catalan,,,ca

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bs.po,74,410,411,0,0,0,0,74,410,bs.po,,bs,,bosnian,,,bs

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bn_in.po,42,115,170,0,0,0,0,42,115,bn_in.po,,bn,in,bangla,,india,bn_in

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/bg.po,44,144,172,0,0,0,0,44,144,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/be@latin.po,41,114,109,0,0,0,0,41,114,be@latin.po,latin,be,,belarusian,,,be@latin

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/as.po,42,115,144,0,0,0,0,42,115,as.po,,as,,assamese,,,as

+ networkmanager-pptp-1.2.8-1.fc30.1.src.rpm.stats.csv,po/ar.po,7,11,13,16,55,18,46,41,112,ar.po,,ar,,arabic,,,ar

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_tw.po,15,35,20,9,23,45,228,69,286,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_hk.po,15,35,20,9,23,45,228,69,286,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/zh_cn.po,17,39,24,14,43,38,204,69,286,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/vi.po,4,18,24,14,29,51,239,69,286,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/uk.po,17,39,36,14,43,38,204,69,286,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ug.po,7,24,23,6,10,56,252,69,286,ug.po,,ug,,uyghur,,,ug

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/th.po,4,16,9,13,36,52,234,69,286,th.po,,th,,thai,,,th

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/te.po,16,37,35,13,36,40,213,69,286,te.po,,te,,telugu,,,te

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ta.po,16,37,36,13,36,40,213,69,286,ta.po,,ta,,tamil,,,ta

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sv.po,29,115,99,22,87,18,84,69,286,sv.po,,sv,,swedish,,,sv

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sl.po,32,120,118,21,85,16,81,69,286,sl.po,,sl,,slovenian,,,sl

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/sk.po,1,2,2,11,21,57,263,69,286,sk.po,,sk,,slovak,,,sk

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ru.po,29,115,110,22,87,18,84,69,286,ru.po,,ru,,russian,,,ru

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ro.po,17,39,40,14,43,38,204,69,286,ro.po,,ro,,romanian,,,ro

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pt_br.po,32,120,133,21,85,16,81,69,286,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pt.po,17,39,41,15,55,37,192,69,286,pt.po,,pt,,portuguese,,,pt

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ps.po,11,26,33,12,27,46,233,69,286,ps.po,,ps,,pashto,,,ps

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pl.po,32,120,123,21,85,16,81,69,286,pl.po,,pl,,polish,,,pl

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/pa.po,17,39,41,15,55,37,192,69,286,pa.po,,pa,,punjabi,,,pa

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/nl.po,13,32,32,15,38,41,216,69,286,nl.po,,nl,,dutch,,,nl

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/nb.po,24,61,58,13,39,32,186,69,286,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/mr.po,16,37,43,13,36,40,213,69,286,mr.po,,mr,,marathi,,,mr

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/mk.po,4,18,25,14,29,51,239,69,286,mk.po,,mk,,macedonian,,,mk

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/lv.po,29,115,107,22,87,18,84,69,286,lv.po,,lv,,latvian,,,lv

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/lt.po,32,120,113,21,85,16,81,69,286,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ko.po,8,27,21,14,39,47,220,69,286,ko.po,,ko,,korean,,,ko

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/kn.po,16,37,33,13,36,40,213,69,286,kn.po,,kn,,kannada,,,kn

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ka.po,4,16,8,14,37,51,233,69,286,ka.po,,ka,,georgian,,,ka

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ja.po,5,19,9,15,41,49,226,69,286,ja.po,,ja,,japanese,,,ja

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/it.po,17,39,39,14,43,38,204,69,286,it.po,,it,,italian,,,it

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/id.po,32,120,124,21,85,16,81,69,286,id.po,,id,,indonesian,,,id

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/hu.po,29,115,106,22,87,18,84,69,286,hu.po,,hu,,hungarian,,,hu

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/he.po,22,64,55,2,3,45,219,69,286,he.po,,he,,hebrew,,,he

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/gu.po,7,24,25,6,10,56,252,69,286,gu.po,,gu,,gujarati,,,gu

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/gl.po,29,115,144,22,87,18,84,69,286,gl.po,,gl,,galician,,,gl

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fr.po,29,115,143,22,87,18,84,69,286,fr.po,,fr,,french,,,fr

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fi.po,15,34,24,15,51,39,201,69,286,fi.po,,fi,,finnish,,,fi

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/fa.po,17,39,41,14,43,38,204,69,286,fa.po,,fa,,persian,,,fa

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/eu.po,17,39,37,14,43,38,204,69,286,eu.po,,eu,,basque,,,eu

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/et.po,17,39,30,14,43,38,204,69,286,et.po,,et,,estonian,,,et

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/es.po,32,120,144,21,85,16,81,69,286,es.po,,es,,spanish,,,es

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/en_gb.po,8,27,27,14,39,47,220,69,286,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/el.po,17,39,40,14,43,38,204,69,286,el.po,,el,,greek,,,el

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/dz.po,5,19,7,14,37,50,230,69,286,dz.po,,dz,,dzongkha,,,dz

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/de.po,32,120,112,21,85,16,81,69,286,de.po,,de,,german,,,de

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/da.po,15,34,32,14,39,40,213,69,286,da.po,,da,,danish,,,da

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/cs.po,73,297,282,0,0,0,0,73,297,cs.po,,cs,,czech,,,cs

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,16,37,40,14,48,39,201,69,286,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ca.po,17,39,42,15,55,37,192,69,286,ca.po,,ca,,catalan,,,ca

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/bg.po,17,39,38,14,43,38,204,69,286,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/as.po,16,37,38,13,36,40,213,69,286,as.po,,as,,assamese,,,as

+ networkmanager-ssh-1.2.9-1.fc30.src.rpm.stats.csv,po/ar.po,5,19,19,16,41,48,226,69,286,ar.po,,ar,,arabic,,,ar

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sv.po,101,606,536,0,0,0,0,101,606,sv.po,,sv,,swedish,,,sv

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/id.po,101,606,610,0,0,0,0,101,606,id.po,,id,,indonesian,,,id

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/kn.po,36,139,124,0,0,0,0,36,139,kn.po,,kn,,kannada,,,kn

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ja.po,83,439,256,0,0,0,0,83,439,ja.po,,ja,,japanese,,,ja

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ug.po,38,114,118,0,0,3,42,41,156,ug.po,,ug,,uyghur,,,ug

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pt.po,86,479,517,0,0,0,0,86,479,pt.po,,pt,,portuguese,,,pt

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/lt.po,101,606,548,0,0,0,0,101,606,lt.po,,lt,,lithuanian,,,lt

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/eo.po,19,38,30,0,0,40,231,59,269,eo.po,,eo,,esperanto,,,eo

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/gu.po,41,156,183,0,0,0,0,41,156,gu.po,,gu,,gujarati,,,gu

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/cs.po,101,606,571,0,0,0,0,101,606,cs.po,,cs,,czech,,,cs

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ta.po,36,139,142,0,0,0,0,36,139,ta.po,,ta,,tamil,,,ta

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ru.po,87,464,444,0,0,14,142,101,606,ru.po,,ru,,russian,,,ru

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bs.po,91,494,482,0,0,0,0,91,494,bs.po,,bs,,bosnian,,,bs

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/mr.po,36,139,163,0,0,0,0,36,139,mr.po,,mr,,marathi,,,mr

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/et.po,41,156,140,0,0,0,0,41,156,et.po,,et,,estonian,,,et

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sr@latin.po,101,606,616,0,0,0,0,101,606,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_cn.po,41,156,85,0,0,0,0,41,156,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bg.po,41,156,183,0,0,0,0,41,156,bg.po,,bg,,bulgarian,,,bg

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_tw.po,41,156,80,0,0,0,0,41,156,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sk.po,37,143,154,1,4,3,9,41,156,sk.po,,sk,,slovak,,,sk

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/vi.po,54,303,413,0,0,0,0,54,303,vi.po,,vi,,vietnamese,,,vi

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/nl.po,101,606,545,0,0,0,0,101,606,nl.po,,nl,,dutch,,,nl

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,34,135,167,1,2,2,6,37,143,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fi.po,54,168,144,3,64,44,374,101,606,fi.po,,fi,,finnish,,,fi

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sl.po,84,442,449,0,0,0,0,84,442,sl.po,,sl,,slovenian,,,sl

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/el.po,86,479,532,0,0,0,0,86,479,el.po,,el,,greek,,,el

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/eu.po,84,442,424,0,0,0,0,84,442,eu.po,,eu,,basque,,,eu

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/tr.po,91,494,456,0,0,0,0,91,494,tr.po,,tr,,turkish,,,tr

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ko.po,41,156,136,0,0,0,0,41,156,ko.po,,ko,,korean,,,ko

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fr.po,86,444,554,0,0,0,0,86,444,fr.po,,fr,,french,,,fr

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pl.po,101,606,592,0,0,0,0,101,606,pl.po,,pl,,polish,,,pl

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/sr.po,101,606,616,0,0,0,0,101,606,sr.po,,sr,,serbian,,,sr

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fur.po,101,606,688,0,0,0,0,101,606,fur.po,,fur,,friulian,,,fur

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pa.po,64,246,273,1,12,19,167,84,425,pa.po,,pa,,punjabi,,,pa

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/lv.po,101,606,544,0,0,0,0,101,606,lv.po,,lv,,latvian,,,lv

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ro.po,41,156,171,0,0,0,0,41,156,ro.po,,ro,,romanian,,,ro

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/gl.po,86,444,537,0,0,0,0,86,444,gl.po,,gl,,galician,,,gl

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ca.po,101,606,745,0,0,0,0,101,606,ca.po,,ca,,catalan,,,ca

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/pt_br.po,101,606,709,0,0,0,0,101,606,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/it.po,101,606,652,0,0,0,0,101,606,it.po,,it,,italian,,,it

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/he.po,41,156,162,0,0,0,0,41,156,he.po,,he,,hebrew,,,he

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/de.po,101,606,565,0,0,0,0,101,606,de.po,,de,,german,,,de

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/or.po,41,156,176,0,0,0,0,41,156,or.po,,or,,odia,,,or

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/te.po,36,139,129,0,0,0,0,36,139,te.po,,te,,telugu,,,te

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/fa.po,37,143,160,1,4,16,97,54,244,fa.po,,fa,,persian,,,fa

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/bn_in.po,36,139,168,0,0,0,0,36,139,bn_in.po,,bn,in,bangla,,india,bn_in

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/nb.po,69,285,266,0,0,17,159,86,444,nb.po,,nb,,norwegian bokmål,,,nb

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ar.po,16,89,92,6,12,11,32,33,133,ar.po,,ar,,arabic,,,ar

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/uk.po,41,156,149,0,0,0,0,41,156,uk.po,,uk,,ukrainian,,,uk

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/zh_hk.po,41,156,80,0,0,0,0,41,156,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/hu.po,101,606,553,0,0,0,0,101,606,hu.po,,hu,,hungarian,,,hu

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/es.po,101,606,745,0,0,0,0,101,606,es.po,,es,,spanish,,,es

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/mk.po,31,128,145,0,0,1,4,32,132,mk.po,,mk,,macedonian,,,mk

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/th.po,52,328,146,0,0,0,0,52,328,th.po,,th,,thai,,,th

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/da.po,101,606,554,0,0,0,0,101,606,da.po,,da,,danish,,,da

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/en_gb.po,86,444,444,0,0,0,0,86,444,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/as.po,36,139,153,0,0,0,0,36,139,as.po,,as,,assamese,,,as

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/dz.po,52,328,121,0,0,0,0,52,328,dz.po,,dz,,dzongkha,,,dz

+ networkmanager-vpnc-1.2.6-2.fc30.src.rpm.stats.csv,po/ka.po,52,328,216,0,0,0,0,52,328,ka.po,,ka,,georgian,,,ka

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/es.po,481,3518,3880,0,0,0,0,481,3518,es.po,,es,,spanish,,,es

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pl.po,480,3521,3249,0,0,1,1,481,3522,pl.po,,pl,,polish,,,pl

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/zh.po,481,3523,642,0,0,0,0,481,3523,zh.po,,zh,,chinese,,,zh

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br.po,85,165,194,0,0,396,3353,481,3518,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ja.po,474,3393,1203,0,0,7,125,481,3518,ja.po,,ja,,japanese,,,ja

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hi.po,481,3518,3386,0,0,0,0,481,3518,hi.po,,hi,,hindi,,,hi

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/hr.po,269,1053,1006,0,0,212,2465,481,3518,hr.po,,hr,,croatian,,,hr

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/ru.po,365,1860,1602,0,0,116,1658,481,3518,ru.po,,ru,,russian,,,ru

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/it.po,481,3518,3743,0,0,0,0,481,3518,it.po,,it,,italian,,,it

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/fr.po,481,3518,4002,0,0,0,0,481,3518,fr.po,,fr,,french,,,fr

+ nmap-7.70-6.fc30.src.rpm.stats.csv,zenmap/share/zenmap/locale/de.po,481,3518,3425,0,0,0,0,481,3518,de.po,,de,,german,,,de

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/fi.po,94,321,281,0,0,935,5609,1029,5930,fi.po,,fi,,finnish,,,fi

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pa.po,77,268,313,0,0,952,5662,1029,5930,pa.po,,pa,,punjabi,,,pa

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/en_us.po,265,1463,1463,0,0,764,4467,1029,5930,en_us.po,,en,us,english,,united states,en_us

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sk.po,4,19,19,0,0,1025,5911,1029,5930,sk.po,,sk,,slovak,,,sk

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/tg.po,6,10,10,0,0,1023,5920,1029,5930,tg.po,,tg,,tajik,,,tg

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ug.po,400,2198,2053,0,0,629,3732,1029,5930,ug.po,,ug,,uyghur,,,ug

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/eu.po,495,2734,2857,0,0,534,3196,1029,5930,eu.po,,eu,,basque,,,eu

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/tr.po,659,3760,3594,0,0,370,2170,1029,5930,tr.po,,tr,,turkish,,,tr

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sr@latin.po,888,5156,5697,0,0,141,774,1029,5930,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/hu.po,895,5200,5582,0,0,134,730,1029,5930,hu.po,,hu,,hungarian,,,hu

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/da.po,1018,5866,5553,0,0,11,64,1029,5930,da.po,,da,,danish,,,da

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sv.po,888,5156,4903,0,0,141,774,1029,5930,sv.po,,sv,,swedish,,,sv

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/gl.po,91,479,650,0,0,938,5451,1029,5930,gl.po,,gl,,galician,,,gl

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/bs.po,787,4508,4544,0,0,242,1422,1029,5930,bs.po,,bs,,bosnian,,,bs

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pt.po,812,4671,5363,0,0,217,1259,1029,5930,pt.po,,pt,,portuguese,,,pt

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/en_gb.po,417,2300,2300,0,0,612,3630,1029,5930,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/fr.po,22,63,72,0,0,1007,5867,1029,5930,fr.po,,fr,,french,,,fr

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pl.po,1029,5930,6536,0,0,0,0,1029,5930,pl.po,,pl,,polish,,,pl

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/lt.po,1018,5866,5491,0,0,11,64,1029,5930,lt.po,,lt,,lithuanian,,,lt

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/de.po,962,5573,5551,0,0,67,357,1029,5930,de.po,,de,,german,,,de

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/el.po,483,2667,2906,0,0,546,3263,1029,5930,el.po,,el,,greek,,,el

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sr.po,888,5156,5697,0,0,141,774,1029,5930,sr.po,,sr,,serbian,,,sr

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/es.po,1003,5780,7324,0,0,26,150,1029,5930,es.po,,es,,spanish,,,es

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/it.po,47,171,208,0,0,982,5759,1029,5930,it.po,,it,,italian,,,it

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ar.po,10,48,51,0,0,1019,5882,1029,5930,ar.po,,ar,,arabic,,,ar

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/cs.po,997,5778,5973,0,0,32,152,1029,5930,cs.po,,cs,,czech,,,cs

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/nl.po,427,2326,2404,0,0,602,3604,1029,5930,nl.po,,nl,,dutch,,,nl

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/sl.po,454,2505,2850,0,0,575,3425,1029,5930,sl.po,,sl,,slovenian,,,sl

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/pt_br.po,1018,5866,6848,0,0,11,64,1029,5930,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/uk.po,61,233,263,0,0,968,5697,1029,5930,uk.po,,uk,,ukrainian,,,uk

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/zh_tw.po,7,32,10,0,0,1022,5898,1029,5930,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/zh_cn.po,76,314,170,0,0,953,5616,1029,5930,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/ca.po,962,5573,7268,0,0,67,357,1029,5930,ca.po,,ca,,catalan,,,ca

+ openconnect-8.02-3.fc30.src.rpm.stats.csv,po/id.po,895,5200,5258,0,0,134,730,1029,5930,id.po,,id,,indonesian,,,id

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,1028,13554,14971,0,0,0,0,1028,13554,es.po,,es,,spanish,,,es

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,1033,13658,12824,0,0,0,0,1033,13658,sv.po,,sv,,swedish,,,sv

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,1033,13658,12393,0,0,0,0,1033,13658,de.po,,de,,german,,,de

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,1028,13554,15596,0,0,0,0,1028,13554,fr.po,,fr,,french,,,fr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,1002,13021,13505,0,0,0,0,1002,13021,bg.po,,bg,,bulgarian,,,bg

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,1033,13658,12911,0,0,0,0,1033,13658,cs.po,,cs,,czech,,,cs

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,984,12505,12718,0,0,0,0,984,12505,el.po,,el,,greek,,,el

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,313,1704,1907,4,31,667,10696,984,12431,gl.po,,gl,,galician,,,gl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,956,11916,13573,0,0,0,0,956,11916,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,1033,13658,13383,0,0,0,0,1033,13658,hu.po,,hu,,hungarian,,,hu

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,955,11824,10493,8,134,9,300,972,12258,sl.po,,sl,,slovenian,,,sl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,599,1448,1626,0,0,664,2233,1263,3681,mai.po,,mai,,maithili,,,mai

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,445,1066,1175,339,874,516,1853,1300,3793,gu.po,,gu,,gujarati,,,gu

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,187,516,565,2,2,1654,5050,1843,5568,fur.po,,fur,,friulian,,,fur

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,492,1239,1321,11,28,6,37,509,1304,cy.po,,cy,,welsh,,,cy

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,562,1404,1577,158,277,547,2023,1267,3704,or.po,,or,,odia,,,or

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,718,1941,1025,0,0,0,0,718,1941,dz.po,,dz,,dzongkha,,,dz

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,1867,5675,5484,0,0,0,0,1867,5675,lt.po,,lt,,lithuanian,,,lt

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,1867,5675,6640,0,0,0,0,1867,5675,es.po,,es,,spanish,,,es

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,379,541,548,62,440,71,342,512,1323,mr.po,,mr,,marathi,,,mr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,1843,5568,6996,0,0,0,0,1843,5568,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,177,277,302,3,6,329,1021,509,1304,bn_in.po,,bn,in,bangla,,india,bn_in

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1867,5675,6401,0,0,0,0,1867,5675,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,1774,5518,5543,0,0,83,92,1857,5610,sk.po,,sk,,slovak,,,sk

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,5,5,6,234,404,270,895,509,1304,rw.po,,rw,,kinyarwanda,,,rw

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,1867,5675,5504,0,0,0,0,1867,5675,hu.po,,hu,,hungarian,,,hu

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,1739,5344,5846,0,0,0,0,1739,5344,el.po,,el,,greek,,,el

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,218,485,571,487,1623,233,390,938,2498,sq.po,,sq,,albanian,,,sq

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,1626,5057,4828,0,0,0,0,1626,5057,bs.po,,bs,,bosnian,,,bs

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,1349,4140,1844,0,0,0,0,1349,4140,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,1021,3273,2415,98,492,49,311,1168,4076,ja.po,,ja,,japanese,,,ja

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,1847,5611,5471,0,0,20,64,1867,5675,lv.po,,lv,,latvian,,,lv

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,908,2817,2898,157,561,99,487,1164,3865,ar.po,,ar,,arabic,,,ar

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,1867,5675,5788,0,0,0,0,1867,5675,cs.po,,cs,,czech,,,cs

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,1343,4135,4262,1,2,9,18,1353,4155,ru.po,,ru,,russian,,,ru

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,1867,5675,5399,0,0,0,0,1867,5675,de.po,,de,,german,,,de

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,327,708,705,64,181,118,415,509,1304,en_ca.po,,en,ca,english,,canada,en_ca

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,1201,3897,3642,0,0,0,0,1201,3897,ta.po,,ta,,tamil,,,ta

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,1357,4096,4194,0,0,463,2037,1820,6133,hr.po,,hr,,croatian,,,hr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,1867,5675,5364,0,0,0,0,1867,5675,sv.po,,sv,,swedish,,,sv

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,1867,5675,5268,0,0,0,0,1867,5675,tr.po,,tr,,turkish,,,tr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,1315,4011,4162,0,0,0,0,1315,4011,bn.po,,bn,,bangla,,,bn

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,936,2466,2400,31,109,136,599,1103,3174,nn.po,,nn,,norwegian nynorsk,,,nn

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,1857,5610,6753,0,0,0,0,1857,5610,fr.po,,fr,,french,,,fr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,1356,4172,4835,0,0,0,0,1356,4172,an.po,,an,,aragonese,,,an

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,1170,4091,3674,0,0,0,0,1170,4091,te.po,,te,,telugu,,,te

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,92,101,107,0,0,1775,5574,1867,5675,kk.po,,kk,,kazakh,,,kk

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,1095,3269,2784,334,989,413,1298,1842,5556,fi.po,,fi,,finnish,,,fi

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,1196,3855,3992,0,0,0,0,1196,3855,be.po,,be,,belarusian,,,be

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,1657,4957,4757,67,172,119,439,1843,5568,nb.po,,nb,,norwegian bokmål,,,nb

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,1337,4309,4907,0,0,0,0,1337,4309,mk.po,,mk,,macedonian,,,mk

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,1739,5344,6270,0,0,0,0,1739,5344,oc.po,,oc,,occitan,,,oc

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,342,467,484,408,1727,339,902,1089,3096,kn.po,,kn,,kannada,,,kn

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,488,906,896,105,212,1247,4433,1840,5551,eo.po,,eo,,esperanto,,,eo

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,1867,5675,6673,0,0,0,0,1867,5675,gl.po,,gl,,galician,,,gl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,1725,5323,5828,0,0,0,0,1725,5323,bg.po,,bg,,bulgarian,,,bg

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,1739,5344,6073,0,0,0,0,1739,5344,pt.po,,pt,,portuguese,,,pt

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,1867,5675,5941,0,0,0,0,1867,5675,pl.po,,pl,,polish,,,pl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,940,2627,2442,421,1289,482,1652,1843,5568,ml.po,,ml,,malayalam,,,ml

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,812,1893,1992,0,0,388,1974,1200,3867,tg.po,,tg,,tajik,,,tg

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,139,209,217,273,355,1208,4476,1620,5040,is.po,,is,,icelandic,,,is

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,1440,4397,1953,298,896,41,174,1779,5467,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,1414,4456,6066,0,0,0,0,1414,4456,vi.po,,vi,,vietnamese,,,vi

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,1855,5603,7084,0,0,0,0,1855,5603,ca.po,,ca,,catalan,,,ca

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,579,1433,1386,351,999,340,1275,1270,3707,ko.po,,ko,,korean,,,ko

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,1337,4314,4887,0,0,0,0,1337,4314,ast.po,,ast,,asturian,,,ast

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,1867,5675,5684,0,0,0,0,1867,5675,id.po,,id,,indonesian,,,id

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,644,2053,2031,14,47,642,1693,1300,3793,he.po,,he,,hebrew,,,he

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,1867,5675,6426,0,0,0,0,1867,5675,ro.po,,ro,,romanian,,,ro

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,1260,3694,1794,0,0,7,10,1267,3704,th.po,,th,,thai,,,th

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,1201,3897,4548,0,0,0,0,1201,3897,hi.po,,hi,,hindi,,,hi

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,1867,5675,6523,0,0,0,0,1867,5675,it.po,,it,,italian,,,it

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,1356,4172,3944,0,0,0,0,1356,4172,eu.po,,eu,,basque,,,eu

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,1739,5344,5345,0,0,0,0,1739,5344,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,118,143,175,0,0,810,2357,928,2500,si.po,,si,,sinhala,,,si

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,1867,5675,6165,0,0,0,0,1867,5675,sl.po,,sl,,slovenian,,,sl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,1842,5556,5805,0,0,0,0,1842,5556,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,1201,3897,3448,0,0,0,0,1201,3897,ug.po,,ug,,uyghur,,,ug

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,1867,5675,5946,0,0,0,0,1867,5675,sr.po,,sr,,serbian,,,sr

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,47,103,116,0,0,1256,3706,1303,3809,ga.po,,ga,,irish,,,ga

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,1867,5675,5449,0,0,0,0,1867,5675,da.po,,da,,danish,,,da

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,1867,5675,5587,0,0,0,0,1867,5675,nl.po,,nl,,dutch,,,nl

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,456,940,924,0,0,860,3079,1316,4019,ms.po,,ms,,malay,,,ms

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,1290,3823,4071,14,94,33,397,1337,4314,pa.po,,pa,,punjabi,,,pa

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,1842,5556,2214,0,0,0,0,1842,5556,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,1843,5568,5540,0,0,0,0,1843,5568,uk.po,,uk,,ukrainian,,,uk

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,1513,4355,4233,292,1042,38,171,1843,5568,ne.po,,ne,,nepali,,,ne

+ orca-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,360,729,695,183,327,866,3344,1409,4400,et.po,,et,,estonian,,,et

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pl.po,41,209,227,0,0,0,0,41,209,pl.po,,pl,,polish,,,pl

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,41,209,41,209,bal.po,,bal,,baluchi,,,bal

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/de.po,11,54,51,0,0,30,155,41,209,de.po,,de,,german,,,de

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,41,209,41,209,ky.po,,ky,,kyrgyz,,,ky

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,41,209,41,209,ro.po,,ro,,romanian,,,ro

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,41,209,41,209,kn.po,,kn,,kannada,,,kn

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fr.po,11,54,71,0,0,30,155,41,209,fr.po,,fr,,french,,,fr

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,41,209,41,209,nso.po,,nso,,northern sotho,,,nso

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,41,209,41,209,kk.po,,kk,,kazakh,,,kk

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,41,209,41,209,gu.po,,gu,,gujarati,,,gu

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,41,209,41,209,el.po,,el,,greek,,,el

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,41,209,41,209,br.po,,br,,breton,,,br

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,41,209,41,209,hu.po,,hu,,hungarian,,,hu

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,41,209,41,209,gl.po,,gl,,galician,,,gl

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,41,209,41,209,is.po,,is,,icelandic,,,is

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,41,209,41,209,yo.po,,yo,,yoruba,,,yo

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,41,209,41,209,nn.po,,nn,,norwegian nynorsk,,,nn

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,41,209,41,209,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,41,209,41,209,pa.po,,pa,,punjabi,,,pa

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,41,209,41,209,et.po,,et,,estonian,,,et

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,41,209,41,209,hi.po,,hi,,hindi,,,hi

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,41,209,41,209,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,41,209,41,209,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,41,209,41,209,ar.po,,ar,,arabic,,,ar

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,41,209,41,209,ne.po,,ne,,nepali,,,ne

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sv.po,0,0,0,0,0,41,209,41,209,sv.po,,sv,,swedish,,,sv

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,41,209,41,209,it.po,,it,,italian,,,it

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,41,209,41,209,nb.po,,nb,,norwegian bokmål,,,nb

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/uk.po,41,209,231,0,0,0,0,41,209,uk.po,,uk,,ukrainian,,,uk

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,41,209,41,209,ko.po,,ko,,korean,,,ko

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,41,209,41,209,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,41,209,41,209,anp.po,,anp,,angika,,,anp

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,41,209,41,209,km.po,,km,,khmer,,,km

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,41,209,41,209,bn_in.po,,bn,in,bangla,,india,bn_in

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,41,209,41,209,or.po,,or,,odia,,,or

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,41,209,41,209,nl.po,,nl,,dutch,,,nl

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,41,209,41,209,as.po,,as,,assamese,,,as

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/id.po,11,54,55,0,0,30,155,41,209,id.po,,id,,indonesian,,,id

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,41,209,41,209,ru.po,,ru,,russian,,,ru

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ja.po,11,54,30,0,0,30,155,41,209,ja.po,,ja,,japanese,,,ja

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,41,209,41,209,eo.po,,eo,,esperanto,,,eo

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,41,209,41,209,te.po,,te,,telugu,,,te

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,41,209,41,209,mai.po,,mai,,maithili,,,mai

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,41,209,41,209,zu.po,,zu,,zulu,,,zu

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,41,209,41,209,ur.po,,ur,,urdu,,,ur

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,41,209,41,209,bs.po,,bs,,bosnian,,,bs

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,41,209,41,209,ast.po,,ast,,asturian,,,ast

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,41,209,41,209,de_ch.po,,de,ch,german,,switzerland,de_ch

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,41,209,41,209,cy.po,,cy,,welsh,,,cy

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,41,209,41,209,am.po,,am,,amharic,,,am

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,41,209,41,209,bg.po,,bg,,bulgarian,,,bg

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,41,209,41,209,tr.po,,tr,,turkish,,,tr

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,41,209,41,209,he.po,,he,,hebrew,,,he

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,41,209,41,209,be.po,,be,,belarusian,,,be

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,41,209,41,209,kw.po,,kw,,cornish,,,kw

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,41,209,41,209,mn.po,,mn,,mongolian,,,mn

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/es.po,11,54,74,0,0,30,155,41,209,es.po,,es,,spanish,,,es

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,41,209,41,209,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,41,209,41,209,bn.po,,bn,,bangla,,,bn

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,41,209,41,209,mk.po,,mk,,macedonian,,,mk

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,41,209,41,209,hr.po,,hr,,croatian,,,hr

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,41,209,41,209,ka.po,,ka,,georgian,,,ka

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,1,2,2,0,0,40,207,41,209,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,41,209,41,209,sq.po,,sq,,albanian,,,sq

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,41,209,41,209,fi.po,,fi,,finnish,,,fi

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,41,209,41,209,tg.po,,tg,,tajik,,,tg

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,41,209,41,209,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,41,209,41,209,af.po,,af,,afrikaans,,,af

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,41,209,41,209,eu.po,,eu,,basque,,,eu

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,41,209,41,209,ilo.po,,ilo,,iloko,,,ilo

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,41,209,41,209,nds.po,,nds,,low german,,,nds

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ca.po,11,54,77,0,0,30,155,41,209,ca.po,,ca,,catalan,,,ca

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,41,209,41,209,bo.po,,bo,,tibetan,,,bo

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,41,209,41,209,pt.po,,pt,,portuguese,,,pt

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,41,209,41,209,ta.po,,ta,,tamil,,,ta

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,41,209,41,209,fa.po,,fa,,persian,,,fa

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,0,0,0,0,0,41,209,41,209,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,41,209,41,209,sr.po,,sr,,serbian,,,sr

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,41,209,41,209,ia.po,,ia,,interlingua,,,ia

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,41,209,41,209,lv.po,,lv,,latvian,,,lv

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,41,209,41,209,sk.po,,sk,,slovak,,,sk

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,41,209,41,209,si.po,,si,,sinhala,,,si

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,41,209,41,209,mr.po,,mr,,marathi,,,mr

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/da.po,0,0,0,0,0,41,209,41,209,da.po,,da,,danish,,,da

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,41,209,41,209,vi.po,,vi,,vietnamese,,,vi

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,41,209,41,209,sl.po,,sl,,slovenian,,,sl

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,41,209,41,209,ml.po,,ml,,malayalam,,,ml

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,41,209,41,209,lt.po,,lt,,lithuanian,,,lt

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,41,209,41,209,ms.po,,ms,,malay,,,ms

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,41,209,41,209,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,41,209,41,209,tw.po,,tw,,twi,,,tw

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,41,209,41,209,brx.po,,brx,,bodo,,,brx

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,41,209,41,209,th.po,,th,,thai,,,th

+ osinfo-db-tools-1.4.0-1.fc30.src.rpm.stats.csv,po/cs.po,38,178,171,0,0,3,31,41,209,cs.po,,cs,,czech,,,cs

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,81,476,81,476,lt.po,,lt,,lithuanian,,,lt

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ca.po,81,476,570,0,0,0,0,81,476,ca.po,,ca,,catalan,,,ca

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pl.po,81,476,415,0,0,0,0,81,476,pl.po,,pl,,polish,,,pl

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,81,476,81,476,kn.po,,kn,,kannada,,,kn

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,81,476,81,476,ast.po,,ast,,asturian,,,ast

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/cs.po,81,476,387,0,0,0,0,81,476,cs.po,,cs,,czech,,,cs

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,81,476,81,476,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/de.po,81,476,519,0,0,0,0,81,476,de.po,,de,,german,,,de

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/lv.po,80,469,373,0,0,1,7,81,476,lv.po,,lv,,latvian,,,lv

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,81,476,81,476,sq.po,,sq,,albanian,,,sq

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,81,476,81,476,te.po,,te,,telugu,,,te

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/da.po,81,476,433,0,0,0,0,81,476,da.po,,da,,danish,,,da

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/oc.po,81,476,503,0,0,0,0,81,476,oc.po,,oc,,occitan,,,oc

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sl.po,81,476,404,0,0,0,0,81,476,sl.po,,sl,,slovenian,,,sl

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/id.po,81,476,392,0,0,0,0,81,476,id.po,,id,,indonesian,,,id

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/gl.po,81,476,549,0,0,0,0,81,476,gl.po,,gl,,galician,,,gl

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ru.po,81,476,378,0,0,0,0,81,476,ru.po,,ru,,russian,,,ru

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sk.po,81,476,409,0,0,0,0,81,476,sk.po,,sk,,slovak,,,sk

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/uk.po,81,476,434,0,0,0,0,81,476,uk.po,,uk,,ukrainian,,,uk

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hr.po,81,476,385,0,0,0,0,81,476,hr.po,,hr,,croatian,,,hr

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_tw.po,1,2,1,0,0,80,474,81,476,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pt_br.po,81,476,501,0,0,0,0,81,476,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,81,476,81,476,bg.po,,bg,,bulgarian,,,bg

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,81,476,81,476,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,81,476,81,476,he.po,,he,,hebrew,,,he

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/tr.po,81,476,324,0,0,0,0,81,476,tr.po,,tr,,turkish,,,tr

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,81,476,81,476,ga.po,,ga,,irish,,,ga

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,81,476,81,476,bn_in.po,,bn,in,bangla,,india,bn_in

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,81,476,81,476,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,81,476,81,476,mr.po,,mr,,marathi,,,mr

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,81,476,81,476,ta.po,,ta,,tamil,,,ta

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,81,476,81,476,cy.po,,cy,,welsh,,,cy

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,81,476,81,476,or.po,,or,,odia,,,or

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,81,476,81,476,nb.po,,nb,,norwegian bokmål,,,nb

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/it.po,81,476,513,0,0,0,0,81,476,it.po,,it,,italian,,,it

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,81,476,81,476,ar.po,,ar,,arabic,,,ar

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,81,476,81,476,az.po,,az,,azerbaijani,,,az

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fr.po,81,476,504,0,0,0,0,81,476,fr.po,,fr,,french,,,fr

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,81,476,81,476,ml.po,,ml,,malayalam,,,ml

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fi.po,81,476,402,0,0,0,0,81,476,fi.po,,fi,,finnish,,,fi

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,81,476,81,476,fo.po,,fo,,faroese,,,fo

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pa.po,74,425,444,0,0,7,51,81,476,pa.po,,pa,,punjabi,,,pa

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/pt.po,81,476,466,0,0,0,0,81,476,pt.po,,pt,,portuguese,,,pt

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nl.po,80,469,498,0,0,1,7,81,476,nl.po,,nl,,dutch,,,nl

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,81,476,81,476,hi.po,,hi,,hindi,,,hi

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/hu.po,81,476,396,0,0,0,0,81,476,hu.po,,hu,,hungarian,,,hu

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fur.po,81,476,579,0,0,0,0,81,476,fur.po,,fur,,friulian,,,fur

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en_gb.po,81,476,476,0,0,0,0,81,476,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/es.po,81,476,563,0,0,0,0,81,476,es.po,,es,,spanish,,,es

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/zh_cn.po,81,476,95,0,0,0,0,81,476,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,81,476,81,476,th.po,,th,,thai,,,th

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,81,476,81,476,ia.po,,ia,,interlingua,,,ia

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,81,476,81,476,vi.po,,vi,,vietnamese,,,vi

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,81,476,81,476,wa.po,,wa,,walloon,,,wa

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ja.po,81,476,95,0,0,0,0,81,476,ja.po,,ja,,japanese,,,ja

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,81,476,81,476,ro.po,,ro,,romanian,,,ro

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,81,476,81,476,nn.po,,nn,,norwegian nynorsk,,,nn

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/eo.po,14,58,55,0,0,67,418,81,476,eo.po,,eo,,esperanto,,,eo

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/kk.po,4,12,11,0,0,77,464,81,476,kk.po,,kk,,kazakh,,,kk

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ko.po,81,476,327,0,0,0,0,81,476,ko.po,,ko,,korean,,,ko

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,81,476,81,476,as.po,,as,,assamese,,,as

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,81,476,81,476,et.po,,et,,estonian,,,et

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,81,476,81,476,fa.po,,fa,,persian,,,fa

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ka.po,31,156,107,0,0,50,320,81,476,ka.po,,ka,,georgian,,,ka

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,81,476,81,476,gu.po,,gu,,gujarati,,,gu

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/el.po,81,476,532,0,0,0,0,81,476,el.po,,el,,greek,,,el

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,81,476,81,476,eu.po,,eu,,basque,,,eu

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en@quot.po,81,476,476,0,0,0,0,81,476,en@quot.po,quot,en,,english,,,en@quot

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,81,476,81,476,ms.po,,ms,,malay,,,ms

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sv.po,81,476,406,0,0,0,0,81,476,sv.po,,sv,,swedish,,,sv

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/en@boldquot.po,81,476,476,0,0,0,0,81,476,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ p11-kit-0.23.15-3.fc30.src.rpm.stats.csv,po/sr.po,81,476,417,0,0,0,0,81,476,sr.po,,sr,,serbian,,,sr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/eo.po,85,180,166,0,0,236,1102,321,1282,eo.po,,eo,,esperanto,,,eo

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sr.po,310,1239,1178,0,0,11,43,321,1282,sr.po,,sr,,serbian,,,sr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nl.po,310,1239,1244,0,0,11,43,321,1282,nl.po,,nl,,dutch,,,nl

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/cs.po,321,1282,1318,0,0,0,0,321,1282,cs.po,,cs,,czech,,,cs

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/tr.po,310,1239,1096,0,0,11,43,321,1282,tr.po,,tr,,turkish,,,tr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/mr.po,239,877,920,0,0,82,405,321,1282,mr.po,,mr,,marathi,,,mr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/he.po,242,893,846,0,0,79,389,321,1282,he.po,,he,,hebrew,,,he

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/bn_in.po,239,877,1077,0,0,82,405,321,1282,bn_in.po,,bn,in,bangla,,india,bn_in

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,326,1328,326,1328,ar.po,,ar,,arabic,,,ar

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pl.po,321,1282,1237,0,0,0,0,321,1282,pl.po,,pl,,polish,,,pl

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/uk.po,321,1282,1276,0,0,0,0,321,1282,uk.po,,uk,,ukrainian,,,uk

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,326,1328,326,1328,cy.po,,cy,,welsh,,,cy

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,326,1328,326,1328,nn.po,,nn,,norwegian nynorsk,,,nn

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hr.po,318,1275,1177,0,0,3,7,321,1282,hr.po,,hr,,croatian,,,hr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ast.po,27,38,41,0,0,294,1244,321,1282,ast.po,,ast,,asturian,,,ast

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sr@latin.po,242,903,856,0,0,79,379,321,1282,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,326,1328,326,1328,sq.po,,sq,,albanian,,,sq

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ca.po,321,1282,1615,0,0,0,0,321,1282,ca.po,,ca,,catalan,,,ca

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/br.po,126,370,490,2,6,198,952,326,1328,br.po,,br,,breton,,,br

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fr.po,310,1239,1639,0,0,11,43,321,1282,fr.po,,fr,,french,,,fr

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_cn.po,319,1277,338,0,0,2,5,321,1282,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,326,1328,326,1328,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sv.po,319,1277,1201,0,0,2,5,321,1282,sv.po,,sv,,swedish,,,sv

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/nb.po,20,73,71,0,0,301,1209,321,1282,nb.po,,nb,,norwegian bokmål,,,nb

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,326,1328,326,1328,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/bg.po,247,931,1041,0,0,74,351,321,1282,bg.po,,bg,,bulgarian,,,bg

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/en_gb.po,321,1282,1282,0,0,0,0,321,1282,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/it.po,321,1282,1457,0,0,0,0,321,1282,it.po,,it,,italian,,,it

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/oc.po,138,339,427,0,0,183,943,321,1282,oc.po,,oc,,occitan,,,oc

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/es.po,302,1195,1391,0,0,19,87,321,1282,es.po,,es,,spanish,,,es

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ml.po,239,877,740,0,0,82,405,321,1282,ml.po,,ml,,malayalam,,,ml

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/kk.po,117,326,296,0,0,204,956,321,1282,kk.po,,kk,,kazakh,,,kk

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/de.po,321,1282,1320,0,0,0,0,321,1282,de.po,,de,,german,,,de

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/lt.po,263,1013,873,0,0,58,269,321,1282,lt.po,,lt,,lithuanian,,,lt

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ja.po,285,1108,330,0,0,36,174,321,1282,ja.po,,ja,,japanese,,,ja

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/zh_tw.po,321,1282,354,0,0,0,0,321,1282,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/te.po,239,877,703,0,0,82,405,321,1282,te.po,,te,,telugu,,,te

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hi.po,239,877,1118,0,0,82,405,321,1282,hi.po,,hi,,hindi,,,hi

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/as.po,239,877,1004,0,0,82,405,321,1282,as.po,,as,,assamese,,,as

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/id.po,321,1282,1259,0,0,0,0,321,1282,id.po,,id,,indonesian,,,id

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pa.po,310,1239,1633,0,0,11,43,321,1282,pa.po,,pa,,punjabi,,,pa

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pt_br.po,321,1282,1477,0,0,0,0,321,1282,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,326,1328,326,1328,fo.po,,fo,,faroese,,,fo

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,326,1328,326,1328,wa.po,,wa,,walloon,,,wa

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/gu.po,239,877,1112,0,0,82,405,321,1282,gu.po,,gu,,gujarati,,,gu

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,326,1328,326,1328,az.po,,az,,azerbaijani,,,az

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/el.po,305,1211,1330,0,0,16,71,321,1282,el.po,,el,,greek,,,el

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,326,1328,326,1328,ga.po,,ga,,irish,,,ga

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/kn.po,239,877,772,0,0,82,405,321,1282,kn.po,,kn,,kannada,,,kn

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fi.po,290,1142,902,0,0,31,140,321,1282,fi.po,,fi,,finnish,,,fi

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ro.po,247,931,1057,0,0,74,351,321,1282,ro.po,,ro,,romanian,,,ro

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ms.po,2,6,6,0,0,324,1322,326,1328,ms.po,,ms,,malay,,,ms

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ru.po,321,1282,1130,0,0,0,0,321,1282,ru.po,,ru,,russian,,,ru

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ia.po,81,318,381,0,0,240,964,321,1282,ia.po,,ia,,interlingua,,,ia

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/da.po,310,1239,1176,0,0,11,43,321,1282,da.po,,da,,danish,,,da

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/eu.po,310,1239,1114,0,0,11,43,321,1282,eu.po,,eu,,basque,,,eu

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,326,1328,326,1328,vi.po,,vi,,vietnamese,,,vi

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/gl.po,305,1211,1415,0,0,16,71,321,1282,gl.po,,gl,,galician,,,gl

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ka.po,54,118,104,0,0,267,1164,321,1282,ka.po,,ka,,georgian,,,ka

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/lv.po,261,1007,851,0,0,60,275,321,1282,lv.po,,lv,,latvian,,,lv

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/or.po,239,877,941,0,0,82,405,321,1282,or.po,,or,,odia,,,or

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/th.po,21,77,33,0,0,300,1205,321,1282,th.po,,th,,thai,,,th

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sl.po,305,1211,1195,0,0,16,71,321,1282,sl.po,,sl,,slovenian,,,sl

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,326,1328,326,1328,fa.po,,fa,,persian,,,fa

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/hu.po,319,1277,1100,0,0,2,5,321,1282,hu.po,,hu,,hungarian,,,hu

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ta.po,239,877,703,0,0,82,405,321,1282,ta.po,,ta,,tamil,,,ta

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/sk.po,321,1282,1283,0,0,0,0,321,1282,sk.po,,sk,,slovak,,,sk

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/pt.po,307,1221,1445,0,0,14,61,321,1282,pt.po,,pt,,portuguese,,,pt

+ packagekit-1.1.12-5.fc30.src.rpm.stats.csv,po/ko.po,319,1277,1103,0,0,2,5,321,1282,ko.po,,ko,,korean,,,ko

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zu.po,85,371,317,4,27,31,199,120,597,zu.po,,zu,,zulu,,,zu

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_tw.po,117,575,215,3,22,0,0,120,597,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,120,597,120,597,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/zh_cn.po,117,575,217,3,22,0,0,120,597,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,120,597,120,597,yo.po,,yo,,yoruba,,,yo

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/vi.po,115,562,794,5,35,0,0,120,597,vi.po,,vi,,vietnamese,,,vi

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,120,597,120,597,ur.po,,ur,,urdu,,,ur

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/uk.po,119,595,597,1,2,0,0,120,597,uk.po,,uk,,ukrainian,,,uk

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,120,597,120,597,tw.po,,tw,,twi,,,tw

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tr.po,117,575,506,3,22,0,0,120,597,tr.po,,tr,,turkish,,,tr

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,120,597,120,597,th.po,,th,,thai,,,th

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,120,597,120,597,tg.po,,tg,,tajik,,,tg

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/te.po,117,575,470,3,22,0,0,120,597,te.po,,te,,telugu,,,te

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ta.po,117,575,483,3,22,0,0,120,597,ta.po,,ta,,tamil,,,ta

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sv.po,117,575,541,3,22,0,0,120,597,sv.po,,sv,,swedish,,,sv

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sr.po,117,575,587,3,22,0,0,120,597,sr.po,,sr,,serbian,,,sr

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sr@latin.po,114,559,572,5,35,1,3,120,597,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,120,597,120,597,sq.po,,sq,,albanian,,,sq

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,120,597,120,597,sl.po,,sl,,slovenian,,,sl

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/sk.po,117,575,566,3,22,0,0,120,597,sk.po,,sk,,slovak,,,sk

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/si.po,90,410,450,4,27,26,160,120,597,si.po,,si,,sinhala,,,si

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ru.po,117,575,598,3,22,0,0,120,597,ru.po,,ru,,russian,,,ru

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,120,597,120,597,ro.po,,ro,,romanian,,,ro

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pt.po,117,575,699,3,22,0,0,120,597,pt.po,,pt,,portuguese,,,pt

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pt_br.po,117,575,627,3,22,0,0,120,597,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pl.po,119,595,591,1,2,0,0,120,597,pl.po,,pl,,polish,,,pl

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/pa.po,117,575,677,3,22,0,0,120,597,pa.po,,pa,,punjabi,,,pa

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/or.po,117,575,655,3,22,0,0,120,597,or.po,,or,,odia,,,or

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,120,597,120,597,nso.po,,nso,,northern sotho,,,nso

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,120,597,120,597,nn.po,,nn,,norwegian nynorsk,,,nn

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nl.po,117,575,572,3,22,0,0,120,597,nl.po,,nl,,dutch,,,nl

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,120,597,120,597,ne.po,,ne,,nepali,,,ne

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,120,597,120,597,nds.po,,nds,,low german,,,nds

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/nb.po,117,575,543,3,22,0,0,120,597,nb.po,,nb,,norwegian bokmål,,,nb

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,120,597,120,597,my.po,,my,,burmese,,,my

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ms.po,1,4,4,1,2,118,591,120,597,ms.po,,ms,,malay,,,ms

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mr.po,117,575,598,3,22,0,0,120,597,mr.po,,mr,,marathi,,,mr

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,120,597,120,597,mn.po,,mn,,mongolian,,,mn

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ml.po,117,575,504,3,22,0,0,120,597,ml.po,,ml,,malayalam,,,ml

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,120,597,120,597,mk.po,,mk,,macedonian,,,mk

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,120,597,120,597,mai.po,,mai,,maithili,,,mai

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,120,597,120,597,lv.po,,lv,,latvian,,,lv

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,120,597,120,597,lt.po,,lt,,lithuanian,,,lt

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,120,597,120,597,ky.po,,ky,,kyrgyz,,,ky

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,120,597,120,597,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,120,597,120,597,kw.po,,kw,,cornish,,,kw

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,120,597,120,597,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,120,597,120,597,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ko.po,117,575,508,3,22,0,0,120,597,ko.po,,ko,,korean,,,ko

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kn.po,117,575,512,3,22,0,0,120,597,kn.po,,kn,,kannada,,,kn

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/km.po,81,344,168,4,27,35,226,120,597,km.po,,km,,khmer,,,km

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/kk.po,117,575,553,3,22,0,0,120,597,kk.po,,kk,,kazakh,,,kk

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ka.po,31,87,77,1,2,88,508,120,597,ka.po,,ka,,georgian,,,ka

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ja.po,117,575,192,3,22,0,0,120,597,ja.po,,ja,,japanese,,,ja

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/it.po,117,575,614,3,22,0,0,120,597,it.po,,it,,italian,,,it

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,120,597,120,597,is.po,,is,,icelandic,,,is

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,120,597,120,597,ilo.po,,ilo,,iloko,,,ilo

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/id.po,47,215,203,0,0,73,382,120,597,id.po,,id,,indonesian,,,id

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ia.po,117,575,695,3,22,0,0,120,597,ia.po,,ia,,interlingua,,,ia

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hu.po,117,575,544,3,22,0,0,120,597,hu.po,,hu,,hungarian,,,hu

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,120,597,120,597,hr.po,,hr,,croatian,,,hr

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/hi.po,117,575,665,3,22,0,0,120,597,hi.po,,hi,,hindi,,,hi

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/he.po,44,198,180,4,27,72,372,120,597,he.po,,he,,hebrew,,,he

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/gu.po,117,575,639,3,22,0,0,120,597,gu.po,,gu,,gujarati,,,gu

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,120,597,120,597,gl.po,,gl,,galician,,,gl

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ga.po,117,575,779,3,22,0,0,120,597,ga.po,,ga,,irish,,,ga

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fr.po,117,575,698,3,22,0,0,120,597,fr.po,,fr,,french,,,fr

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fi.po,117,575,471,3,22,0,0,120,597,fi.po,,fi,,finnish,,,fi

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,120,597,120,597,fa.po,,fa,,persian,,,fa

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/eu.po,7,13,15,1,2,112,582,120,597,eu.po,,eu,,basque,,,eu

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/et.po,38,158,137,2,7,80,432,120,597,et.po,,et,,estonian,,,et

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/es.po,119,595,725,1,2,0,0,120,597,es.po,,es,,spanish,,,es

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,120,597,120,597,eo.po,,eo,,esperanto,,,eo

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,120,597,120,597,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,120,597,120,597,el.po,,el,,greek,,,el

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/de.po,117,575,579,3,22,0,0,120,597,de.po,,de,,german,,,de

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,120,597,120,597,de_ch.po,,de,ch,german,,switzerland,de_ch

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/da.po,117,575,569,3,22,0,0,120,597,da.po,,da,,danish,,,da

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,120,597,120,597,cy.po,,cy,,welsh,,,cy

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/cs.po,119,595,563,1,2,0,0,120,597,cs.po,,cs,,czech,,,cs

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ca.po,117,575,719,3,22,0,0,120,597,ca.po,,ca,,catalan,,,ca

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,120,597,120,597,bs.po,,bs,,bosnian,,,bs

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,120,597,120,597,brx.po,,brx,,bodo,,,brx

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,120,597,120,597,br.po,,br,,breton,,,br

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,120,597,120,597,bo.po,,bo,,tibetan,,,bo

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bn.po,115,562,618,5,35,0,0,120,597,bn.po,,bn,,bangla,,,bn

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bn_in.po,115,562,618,5,35,0,0,120,597,bn_in.po,,bn,in,bangla,,india,bn_in

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bg.po,117,575,628,3,22,0,0,120,597,bg.po,,bg,,bulgarian,,,bg

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,120,597,120,597,be.po,,be,,belarusian,,,be

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,120,597,120,597,bal.po,,bal,,baluchi,,,bal

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,120,597,120,597,ast.po,,ast,,asturian,,,ast

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/as.po,117,575,617,3,22,0,0,120,597,as.po,,as,,assamese,,,as

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/ar.po,84,367,420,4,27,32,203,120,597,ar.po,,ar,,arabic,,,ar

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,120,597,120,597,anp.po,,anp,,angika,,,anp

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,120,597,120,597,am.po,,am,,amharic,,,am

+ pam-1.3.1-17.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,120,597,120,597,af.po,,af,,afrikaans,,,af

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/as.po,4,7,8,0,0,0,0,4,7,as.po,,as,,assamese,,,as

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bg.po,4,7,7,0,0,0,0,4,7,bg.po,,bg,,bulgarian,,,bg

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bn_in.po,4,7,8,0,0,0,0,4,7,bn_in.po,,bn,in,bangla,,india,bn_in

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/bn.po,4,7,8,0,0,0,0,4,7,bn.po,,bn,,bangla,,,bn

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ca.po,4,7,11,0,0,0,0,4,7,ca.po,,ca,,catalan,,,ca

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/cs.po,4,7,7,0,0,0,0,4,7,cs.po,,cs,,czech,,,cs

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/da.po,4,7,7,0,0,0,0,4,7,da.po,,da,,danish,,,da

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/de.po,4,7,7,0,0,0,0,4,7,de.po,,de,,german,,,de

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/el.po,4,7,7,0,0,0,0,4,7,el.po,,el,,greek,,,el

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/es.po,4,7,8,0,0,0,0,4,7,es.po,,es,,spanish,,,es

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/et.po,4,7,7,0,0,0,0,4,7,et.po,,et,,estonian,,,et

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/eu.po,4,7,7,0,0,0,0,4,7,eu.po,,eu,,basque,,,eu

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/fa.po,4,7,11,0,0,0,0,4,7,fa.po,,fa,,persian,,,fa

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/fr.po,4,7,19,0,0,0,0,4,7,fr.po,,fr,,french,,,fr

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/gu.po,4,7,8,0,0,0,0,4,7,gu.po,,gu,,gujarati,,,gu

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/hi.po,4,7,6,0,0,0,0,4,7,hi.po,,hi,,hindi,,,hi

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/hu.po,4,7,9,0,0,0,0,4,7,hu.po,,hu,,hungarian,,,hu

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ia.po,4,7,7,0,0,0,0,4,7,ia.po,,ia,,interlingua,,,ia

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/it.po,4,7,8,0,0,0,0,4,7,it.po,,it,,italian,,,it

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ja.po,4,7,6,0,0,0,0,4,7,ja.po,,ja,,japanese,,,ja

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/kn.po,4,7,7,0,0,0,0,4,7,kn.po,,kn,,kannada,,,kn

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ko.po,4,7,8,0,0,0,0,4,7,ko.po,,ko,,korean,,,ko

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/lv.po,4,7,7,0,0,0,0,4,7,lv.po,,lv,,latvian,,,lv

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ml.po,4,7,7,0,0,0,0,4,7,ml.po,,ml,,malayalam,,,ml

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/mr.po,4,7,8,0,0,0,0,4,7,mr.po,,mr,,marathi,,,mr

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ms.po,4,7,10,0,0,0,0,4,7,ms.po,,ms,,malay,,,ms

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/nl.po,4,7,7,0,0,0,0,4,7,nl.po,,nl,,dutch,,,nl

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/or.po,4,7,12,0,0,0,0,4,7,or.po,,or,,odia,,,or

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pa.po,4,7,7,0,0,0,0,4,7,pa.po,,pa,,punjabi,,,pa

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pl.po,4,7,8,0,0,0,0,4,7,pl.po,,pl,,polish,,,pl

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pt_br.po,4,7,8,0,0,0,0,4,7,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/pt.po,4,7,8,0,0,0,0,4,7,pt.po,,pt,,portuguese,,,pt

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ro.po,4,7,7,0,0,0,0,4,7,ro.po,,ro,,romanian,,,ro

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ru.po,4,7,7,0,0,0,0,4,7,ru.po,,ru,,russian,,,ru

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sk.po,4,7,7,0,0,0,0,4,7,sk.po,,sk,,slovak,,,sk

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sr@latin.po,4,7,7,0,0,0,0,4,7,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sr.po,4,7,7,0,0,0,0,4,7,sr.po,,sr,,serbian,,,sr

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/sv.po,4,7,7,0,0,0,0,4,7,sv.po,,sv,,swedish,,,sv

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/ta.po,4,7,7,0,0,0,0,4,7,ta.po,,ta,,tamil,,,ta

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/te.po,4,7,9,0,0,0,0,4,7,te.po,,te,,telugu,,,te

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/tr.po,4,7,7,0,0,0,0,4,7,tr.po,,tr,,turkish,,,tr

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/uk.po,4,7,10,0,0,0,0,4,7,uk.po,,uk,,ukrainian,,,uk

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/zh_cn.po,4,7,6,0,0,0,0,4,7,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ pam_krb5-2.4.13-13.fc30.src.rpm.stats.csv,po/zh_tw.po,4,7,7,0,0,0,0,4,7,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/nl.po,550,4416,4407,0,0,0,0,550,4416,nl.po,,nl,,dutch,,,nl

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/vi.po,550,4416,5897,0,0,0,0,550,4416,vi.po,,vi,,vietnamese,,,vi

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/ca.po,154,1027,1173,113,1142,283,2247,550,4416,ca.po,,ca,,catalan,,,ca

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/ja.po,550,4416,1666,0,0,0,0,550,4416,ja.po,,ja,,japanese,,,ja

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/gl.po,340,2436,2865,12,85,198,1895,550,4416,gl.po,,gl,,galician,,,gl

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/id.po,494,3917,3864,41,368,15,131,550,4416,id.po,,id,,indonesian,,,id

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/it.po,550,4416,4678,0,0,0,0,550,4416,it.po,,it,,italian,,,it

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/cs.po,456,3683,3248,56,494,38,239,550,4416,cs.po,,cs,,czech,,,cs

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/ro.po,110,663,741,41,406,399,3347,550,4416,ro.po,,ro,,romanian,,,ro

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/de.po,550,4416,4379,0,0,0,0,550,4416,de.po,,de,,german,,,de

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/fr.po,518,4158,4933,25,195,7,63,550,4416,fr.po,,fr,,french,,,fr

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/sk.po,536,4291,3966,10,93,4,32,550,4416,sk.po,,sk,,slovak,,,sk

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/uk.po,550,4416,4105,0,0,0,0,550,4416,uk.po,,uk,,ukrainian,,,uk

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/zh_cn.po,155,1007,363,111,1183,284,2226,550,4416,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/sv.po,424,3121,3008,44,397,82,898,550,4416,sv.po,,sv,,swedish,,,sv

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/pt_br.po,550,4416,4968,0,0,0,0,550,4416,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/nn.po,157,1052,974,113,1191,280,2173,550,4416,nn.po,,nn,,norwegian nynorsk,,,nn

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/ru.po,550,4416,3987,0,0,0,0,550,4416,ru.po,,ru,,russian,,,ru

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/tr.po,536,4291,3605,10,93,4,32,550,4416,tr.po,,tr,,turkish,,,tr

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/pt.po,112,786,860,120,1017,318,2613,550,4416,pt.po,,pt,,portuguese,,,pt

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/sl.po,513,4060,3820,29,292,8,64,550,4416,sl.po,,sl,,slovenian,,,sl

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/sr.po,535,4290,4198,8,86,7,40,550,4416,sr.po,,sr,,serbian,,,sr

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/rw.po,16,16,17,227,2179,307,2221,550,4416,rw.po,,rw,,kinyarwanda,,,rw

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/es.po,217,1706,1989,79,702,254,2008,550,4416,es.po,,es,,spanish,,,es

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/da.po,433,3165,3069,26,211,91,1040,550,4416,da.po,,da,,danish,,,da

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/pl.po,550,4416,4257,0,0,0,0,550,4416,pl.po,,pl,,polish,,,pl

+ parted-3.2-40.fc30.src.rpm.stats.csv,po/zh_tw.po,535,4290,1578,8,86,7,40,550,4416,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/zh_tw.po,56,329,125,0,0,1,7,57,336,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,57,336,57,336,gl.po,,gl,,galician,,,gl

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/bs.po,49,267,299,0,0,8,69,57,336,bs.po,,bs,,bosnian,,,bs

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ast.po,49,267,318,0,0,8,69,57,336,ast.po,,ast,,asturian,,,ast

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/fi.po,56,329,282,0,0,1,7,57,336,fi.po,,fi,,finnish,,,fi

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/eu.po,21,88,81,0,0,36,248,57,336,eu.po,,eu,,basque,,,eu

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,57,336,57,336,ur.po,,ur,,urdu,,,ur

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/nl.po,56,329,357,0,0,1,7,57,336,nl.po,,nl,,dutch,,,nl

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ko.po,56,329,333,0,0,1,7,57,336,ko.po,,ko,,korean,,,ko

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,57,336,57,336,my.po,,my,,burmese,,,my

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/cs.po,56,329,306,0,0,1,7,57,336,cs.po,,cs,,czech,,,cs

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ml.po,56,329,329,0,0,1,7,57,336,ml.po,,ml,,malayalam,,,ml

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/as.po,54,306,380,0,0,3,30,57,336,as.po,,as,,assamese,,,as

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/tr.po,56,329,315,0,0,1,7,57,336,tr.po,,tr,,turkish,,,tr

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/nds.po,17,51,52,0,0,40,285,57,336,nds.po,,nds,,low german,,,nds

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sk.po,56,329,314,0,0,1,7,57,336,sk.po,,sk,,slovak,,,sk

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/te.po,54,306,297,0,0,3,30,57,336,te.po,,te,,telugu,,,te

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sr@latin.po,49,267,288,0,0,8,69,57,336,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ja.po,54,306,137,0,0,3,30,57,336,ja.po,,ja,,japanese,,,ja

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/bn.po,54,306,348,0,0,3,30,57,336,bn.po,,bn,,bangla,,,bn

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sl.po,54,306,319,0,0,3,30,57,336,sl.po,,sl,,slovenian,,,sl

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/da.po,56,329,310,0,0,1,7,57,336,da.po,,da,,danish,,,da

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,57,336,57,336,cy.po,,cy,,welsh,,,cy

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/bg.po,54,306,338,0,0,3,30,57,336,bg.po,,bg,,bulgarian,,,bg

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/fa.po,20,97,118,0,0,37,239,57,336,fa.po,,fa,,persian,,,fa

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/fr.po,56,329,425,0,0,1,7,57,336,fr.po,,fr,,french,,,fr

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/or.po,49,267,328,0,0,8,69,57,336,or.po,,or,,odia,,,or

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,57,336,57,336,hy.po,,hy,,armenian,,,hy

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/is.po,17,56,50,0,0,40,280,57,336,is.po,,is,,icelandic,,,is

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/pa.po,49,267,305,0,0,8,69,57,336,pa.po,,pa,,punjabi,,,pa

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/es.po,56,329,397,0,0,1,7,57,336,es.po,,es,,spanish,,,es

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ms.po,41,225,226,0,0,16,111,57,336,ms.po,,ms,,malay,,,ms

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/id.po,56,329,351,0,0,1,7,57,336,id.po,,id,,indonesian,,,id

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/en_gb.po,49,267,267,0,0,8,69,57,336,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/pt_br.po,56,329,401,0,0,1,7,57,336,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ka.po,42,212,200,0,0,15,124,57,336,ka.po,,ka,,georgian,,,ka

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/pl.po,56,329,321,0,0,1,7,57,336,pl.po,,pl,,polish,,,pl

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,57,336,57,336,lo.po,,lo,,lao,,,lo

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sv.po,56,329,311,0,0,1,7,57,336,sv.po,,sv,,swedish,,,sv

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,57,336,57,336,wa.po,,wa,,walloon,,,wa

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sr.po,56,329,342,0,0,1,7,57,336,sr.po,,sr,,serbian,,,sr

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/el.po,54,306,347,0,0,3,30,57,336,el.po,,el,,greek,,,el

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/nb.po,54,306,292,0,0,3,30,57,336,nb.po,,nb,,norwegian bokmål,,,nb

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/it.po,56,329,352,0,0,1,7,57,336,it.po,,it,,italian,,,it

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ar.po,49,267,291,0,0,8,69,57,336,ar.po,,ar,,arabic,,,ar

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,57,336,57,336,ku.po,,ku,,kurdish,,,ku

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ro.po,54,306,335,0,0,3,30,57,336,ro.po,,ro,,romanian,,,ro

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,57,336,57,336,vi.po,,vi,,vietnamese,,,vi

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/hr.po,47,259,289,0,0,10,77,57,336,hr.po,,hr,,croatian,,,hr

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/hu.po,56,329,321,0,0,1,7,57,336,hu.po,,hu,,hungarian,,,hu

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/mr.po,49,267,284,0,0,8,69,57,336,mr.po,,mr,,marathi,,,mr

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,57,336,57,336,he.po,,he,,hebrew,,,he

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/kn.po,54,306,303,0,0,3,30,57,336,kn.po,,kn,,kannada,,,kn

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,57,336,57,336,et.po,,et,,estonian,,,et

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/de.po,56,329,343,0,0,1,7,57,336,de.po,,de,,german,,,de

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ru.po,56,329,302,0,0,1,7,57,336,ru.po,,ru,,russian,,,ru

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/hi.po,49,267,327,0,0,8,69,57,336,hi.po,,hi,,hindi,,,hi

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/bn_in.po,54,306,348,0,0,3,30,57,336,bn_in.po,,bn,in,bangla,,india,bn_in

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/zh_cn.po,56,329,118,0,0,1,7,57,336,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ta.po,49,267,246,0,0,8,69,57,336,ta.po,,ta,,tamil,,,ta

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/ca.po,56,329,443,0,0,1,7,57,336,ca.po,,ca,,catalan,,,ca

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/sq.po,56,329,400,0,0,1,7,57,336,sq.po,,sq,,albanian,,,sq

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/gu.po,49,267,300,0,0,8,69,57,336,gu.po,,gu,,gujarati,,,gu

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/pt.po,56,329,398,0,0,1,7,57,336,pt.po,,pt,,portuguese,,,pt

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/mk.po,47,259,305,0,0,10,77,57,336,mk.po,,mk,,macedonian,,,mk

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,57,336,57,336,si.po,,si,,sinhala,,,si

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,57,336,57,336,nn.po,,nn,,norwegian nynorsk,,,nn

+ passwd-0.80-5.fc30.src.rpm.stats.csv,po/uk.po,56,329,351,0,0,1,7,57,336,uk.po,,uk,,ukrainian,,,uk

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/hu.po,12,40,37,0,0,0,0,12,40,hu.po,,hu,,hungarian,,,hu

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/de.po,12,40,39,0,0,0,0,12,40,de.po,,de,,german,,,de

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/id.po,10,35,34,0,0,0,0,10,35,id.po,,id,,indonesian,,,id

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/sr@latin.po,12,40,46,0,0,0,0,12,40,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/cs.po,12,40,44,0,0,0,0,12,40,cs.po,,cs,,czech,,,cs

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/sl.po,12,40,49,0,0,0,0,12,40,sl.po,,sl,,slovenian,,,sl

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/pt.po,12,40,45,0,0,0,0,12,40,pt.po,,pt,,portuguese,,,pt

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/tr.po,12,40,40,0,0,0,0,12,40,tr.po,,tr,,turkish,,,tr

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/bs.po,12,40,43,0,0,0,0,12,40,bs.po,,bs,,bosnian,,,bs

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/el.po,12,40,41,0,0,0,0,12,40,el.po,,el,,greek,,,el

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/pt_br.po,12,40,44,0,0,0,0,12,40,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/sr.po,12,40,46,0,0,0,0,12,40,sr.po,,sr,,serbian,,,sr

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/da.po,12,40,40,0,0,0,0,12,40,da.po,,da,,danish,,,da

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/es.po,12,40,48,0,0,0,0,12,40,es.po,,es,,spanish,,,es

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/pl.po,12,40,55,0,0,0,0,12,40,pl.po,,pl,,polish,,,pl

+ phodav-2.2-4.fc30.src.rpm.stats.csv,po/sv.po,12,40,43,0,0,0,0,12,40,sv.po,,sv,,swedish,,,sv

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ru.po,53,315,297,1,6,0,0,54,321,ru.po,,ru,,russian,,,ru

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/pl.po,51,307,319,3,14,0,0,54,321,pl.po,,pl,,polish,,,pl

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/cs.po,53,315,304,1,6,0,0,54,321,cs.po,,cs,,czech,,,cs

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/vi.po,53,315,437,1,6,0,0,54,321,vi.po,,vi,,vietnamese,,,vi

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/de.po,49,203,205,4,111,1,7,54,321,de.po,,de,,german,,,de

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/pt_br.po,53,315,362,1,6,0,0,54,321,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/eu.po,52,311,306,2,10,0,0,54,321,eu.po,,eu,,basque,,,eu

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ro.po,53,315,363,1,6,0,0,54,321,ro.po,,ro,,romanian,,,ro

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/sv.po,22,83,84,8,40,24,198,54,321,sv.po,,sv,,swedish,,,sv

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/nl.po,53,315,336,1,6,0,0,54,321,nl.po,,nl,,dutch,,,nl

+ pinfo-0.6.10-20.fc29.src.rpm.stats.csv,po/ja.po,40,169,58,7,124,7,28,54,321,ja.po,,ja,,japanese,,,ja

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/es.po,27,229,236,0,0,1,7,28,236,es.po,,es,,spanish,,,es

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/cs.po,1,1,1,0,0,27,235,28,236,cs.po,,cs,,czech,,,cs

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ja.po,28,236,117,0,0,0,0,28,236,ja.po,,ja,,japanese,,,ja

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nl.po,28,236,240,0,0,0,0,28,236,nl.po,,nl,,dutch,,,nl

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_tw.po,5,30,7,0,0,23,206,28,236,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sv.po,28,236,211,0,0,0,0,28,236,sv.po,,sv,,swedish,,,sv

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/uk.po,28,236,227,0,0,0,0,28,236,uk.po,,uk,,ukrainian,,,uk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn_in.po,564,3618,3652,0,0,134,879,698,4497,bn_in.po,,bn,in,bangla,,india,bn_in

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zu.po,10,10,11,0,0,688,4487,698,4497,zu.po,,zu,,zulu,,,zu

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/as.po,564,3618,3545,0,0,134,879,698,4497,as.po,,as,,assamese,,,as

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ko.po,556,3554,2985,0,0,142,943,698,4497,ko.po,,ko,,korean,,,ko

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/da.po,268,1289,1154,0,0,430,3208,698,4497,da.po,,da,,danish,,,da

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/kn.po,565,3619,2964,0,0,133,878,698,4497,kn.po,,kn,,kannada,,,kn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ia.po,18,19,20,0,0,680,4478,698,4497,ia.po,,ia,,interlingua,,,ia

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4491,698,4497,fil.po,,fil,,filipino,,,fil

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_hk.po,4,4,4,0,0,694,4493,698,4497,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fi.po,271,1282,1095,0,0,427,3215,698,4497,fi.po,,fi,,finnish,,,fi

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bal.po,7,7,7,0,0,691,4490,698,4497,bal.po,,bal,,baluchi,,,bal

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ar.po,219,1149,1144,0,0,479,3348,698,4497,ar.po,,ar,,arabic,,,ar

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sr.po,224,1155,1250,0,0,474,3342,698,4497,sr.po,,sr,,serbian,,,sr

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sk.po,157,775,702,0,0,541,3722,698,4497,sk.po,,sk,,slovak,,,sk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mai.po,184,932,1042,0,0,514,3565,698,4497,mai.po,,mai,,maithili,,,mai

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/is.po,25,25,27,0,0,673,4472,698,4497,is.po,,is,,icelandic,,,is

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/el.po,55,109,111,0,0,643,4388,698,4497,el.po,,el,,greek,,,el

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hr.po,171,813,814,0,0,527,3684,698,4497,hr.po,,hr,,croatian,,,hr

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bg.po,244,1250,1448,0,0,454,3247,698,4497,bg.po,,bg,,bulgarian,,,bg

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/eo.po,4,4,4,0,0,694,4493,698,4497,eo.po,,eo,,esperanto,,,eo

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hu.po,405,2084,1961,0,0,293,2413,698,4497,hu.po,,hu,,hungarian,,,hu

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/zh_cn.po,579,3713,1314,0,0,119,784,698,4497,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tg.po,20,20,24,0,0,678,4477,698,4497,tg.po,,tg,,tajik,,,tg

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pt_br.po,579,3713,4471,0,0,119,784,698,4497,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mn.po,8,8,8,0,0,690,4489,698,4497,mn.po,,mn,,mongolian,,,mn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ga.po,8,8,9,0,0,690,4489,698,4497,ga.po,,ga,,irish,,,ga

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/or.po,564,3618,3813,0,0,134,879,698,4497,or.po,,or,,odia,,,or

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/de_ch.po,7,7,7,0,0,691,4490,698,4497,de_ch.po,,de,ch,german,,switzerland,de_ch

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/vi.po,20,21,35,0,0,678,4476,698,4497,vi.po,,vi,,vietnamese,,,vi

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/be.po,19,19,19,0,0,679,4478,698,4497,be.po,,be,,belarusian,,,be

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sl.po,18,18,18,0,0,680,4479,698,4497,sl.po,,sl,,slovenian,,,sl

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/my.po,7,7,7,0,0,691,4490,698,4497,my.po,,my,,burmese,,,my

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lt.po,22,22,24,0,0,676,4475,698,4497,lt.po,,lt,,lithuanian,,,lt

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/af.po,10,10,11,0,0,688,4487,698,4497,af.po,,af,,afrikaans,,,af

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/en_gb.po,225,1158,1158,0,0,473,3339,698,4497,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sr@latin.po,220,1151,1245,0,0,478,3346,698,4497,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/brx.po,1,1,2,0,0,697,4496,698,4497,brx.po,,brx,,bodo,,,brx

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ta.po,564,3618,2946,0,0,134,879,698,4497,ta.po,,ta,,tamil,,,ta

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ilo.po,8,8,10,0,0,690,4489,698,4497,ilo.po,,ilo,,iloko,,,ilo

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ms.po,80,432,420,0,0,618,4065,698,4497,ms.po,,ms,,malay,,,ms

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lv.po,21,21,22,0,0,677,4476,698,4497,lv.po,,lv,,latvian,,,lv

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pa.po,564,3618,4051,0,0,134,879,698,4497,pa.po,,pa,,punjabi,,,pa

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/gl.po,23,24,26,0,0,675,4473,698,4497,gl.po,,gl,,galician,,,gl

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ru.po,578,3706,3104,0,0,120,791,698,4497,ru.po,,ru,,russian,,,ru

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/gu.po,564,3618,3833,0,0,134,879,698,4497,gu.po,,gu,,gujarati,,,gu

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bs.po,138,754,757,0,0,560,3743,698,4497,bs.po,,bs,,bosnian,,,bs

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/kk.po,20,20,22,0,0,678,4477,698,4497,kk.po,,kk,,kazakh,,,kk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn.po,29,29,33,0,0,669,4468,698,4497,bn.po,,bn,,bangla,,,bn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pl.po,627,4005,3706,0,0,71,492,698,4497,pl.po,,pl,,polish,,,pl

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tr.po,41,52,55,0,0,657,4445,698,4497,tr.po,,tr,,turkish,,,tr

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fa.po,23,23,28,0,0,675,4474,698,4497,fa.po,,fa,,persian,,,fa

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ca.po,576,3679,4536,0,0,122,818,698,4497,ca.po,,ca,,catalan,,,ca

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/id.po,32,33,34,0,0,666,4464,698,4497,id.po,,id,,indonesian,,,id

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/sq.po,30,30,35,0,0,668,4467,698,4497,sq.po,,sq,,albanian,,,sq

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/he.po,28,28,30,0,0,670,4469,698,4497,he.po,,he,,hebrew,,,he

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ur.po,12,12,16,0,0,686,4485,698,4497,ur.po,,ur,,urdu,,,ur

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ne.po,8,8,11,0,0,690,4489,698,4497,ne.po,,ne,,nepali,,,ne

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ast.po,9,9,9,0,0,689,4488,698,4497,ast.po,,ast,,asturian,,,ast

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/th.po,21,21,21,0,0,677,4476,698,4497,th.po,,th,,thai,,,th

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/am.po,9,9,11,0,0,689,4488,698,4497,am.po,,am,,amharic,,,am

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hi.po,564,3618,4038,0,0,134,879,698,4497,hi.po,,hi,,hindi,,,hi

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nds.po,28,29,28,0,0,670,4468,698,4497,nds.po,,nds,,low german,,,nds

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/eu.po,39,48,50,0,0,659,4449,698,4497,eu.po,,eu,,basque,,,eu

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fr.po,627,4005,4749,0,0,71,492,698,4497,fr.po,,fr,,french,,,fr

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/br.po,10,10,12,0,0,688,4487,698,4497,br.po,,br,,breton,,,br

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/et.po,31,31,32,0,0,667,4466,698,4497,et.po,,et,,estonian,,,et

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/si.po,19,19,24,0,0,679,4478,698,4497,si.po,,si,,sinhala,,,si

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ml.po,564,3618,2805,0,0,134,879,698,4497,ml.po,,ml,,malayalam,,,ml

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ky.po,1,1,1,0,0,697,4496,698,4497,ky.po,,ky,,kyrgyz,,,ky

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/te.po,564,3618,2852,0,0,134,879,698,4497,te.po,,te,,telugu,,,te

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ka.po,24,24,24,0,0,674,4473,698,4497,ka.po,,ka,,georgian,,,ka

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mr.po,564,3618,3319,0,0,134,879,698,4497,mr.po,,mr,,marathi,,,mr

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nb.po,44,69,73,0,0,654,4428,698,4497,nb.po,,nb,,norwegian bokmål,,,nb

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nn.po,23,23,26,0,0,675,4474,698,4497,nn.po,,nn,,norwegian nynorsk,,,nn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/km.po,9,9,9,0,0,689,4488,698,4497,km.po,,km,,khmer,,,km

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/pt.po,227,1159,1489,0,0,471,3338,698,4497,pt.po,,pt,,portuguese,,,pt

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/fur.po,18,18,20,0,0,680,4479,698,4497,fur.po,,fur,,friulian,,,fur

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ro.po,25,25,25,0,0,673,4472,698,4497,ro.po,,ro,,romanian,,,ro

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/de.po,579,3713,3407,0,0,119,784,698,4497,de.po,,de,,german,,,de

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/cy.po,14,14,15,0,0,684,4483,698,4497,cy.po,,cy,,welsh,,,cy

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/nso.po,9,9,10,0,0,689,4488,698,4497,nso.po,,nso,,northern sotho,,,nso

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mk.po,128,744,912,0,0,570,3753,698,4497,mk.po,,mk,,macedonian,,,mk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/it.po,577,3704,3949,0,0,121,793,698,4497,it.po,,it,,italian,,,it

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,1078,7678,1078,7678,xh.po,,xh,,xhosa,,,xh

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,1078,7678,1078,7678,wo.po,,wo,,wolof,,,wo

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/vi_vn.po,0,0,0,0,0,1078,7678,1078,7678,vi_vn.po,,vi,vn,vietnamese,,vietnam,vi_vn

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,1078,7678,1078,7678,tl.po,,tl,,tagalog,,,tl

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/si_lk.po,0,0,0,0,0,1078,7678,1078,7678,si_lk.po,,si,lk,sinhala,,sri lanka,si_lk

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,1078,7678,1078,7678,mg.po,,mg,,malagasy,,,mg

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lv_lv.po,0,0,0,0,0,1078,7678,1078,7678,lv_lv.po,,lv,lv,latvian,,latvia,lv_lv

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lt_lt.po,0,0,0,0,0,1078,7678,1078,7678,lt_lt.po,,lt,lt,lithuanian,,lithuania,lt_lt

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,1078,7678,1078,7678,lo.po,,lo,,lao,,,lo

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,1078,7678,1078,7678,la.po,,la,,latin,,,la

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,1078,7678,1078,7678,ku.po,,ku,,kurdish,,,ku

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,1078,7678,1078,7678,ks.po,,ks,,kashmiri,,,ks

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,1078,7678,1078,7678,hy.po,,hy,,armenian,,,hy

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/es_mx.po,0,0,0,0,0,1078,7678,1078,7678,es_mx.po,,es,mx,spanish,,mexico,es_mx

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,1078,7678,1078,7678,dz.po,,dz,,dzongkha,,,dz

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,1078,7678,1078,7678,bo.po,,bo,,tibetan,,,bo

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/bn_bd.po,0,0,0,0,0,1078,7678,1078,7678,bn_bd.po,,bn,bd,bangla,,bangladesh,bn_bd

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,1078,7678,1078,7678,az.po,,az,,azerbaijani,,,az

+ policycoreutils-2.9-1.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,1078,7678,1078,7678,aln.po,,aln,,gheg albanian,,,aln

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/id.po,26,228,214,0,0,0,0,26,228,id.po,,id,,indonesian,,,id

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/da.po,2,20,22,4,41,20,167,26,228,da.po,,da,,danish,,,da

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/uk.po,26,228,238,0,0,0,0,26,228,uk.po,,uk,,ukrainian,,,uk

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/sv.po,26,228,215,0,0,0,0,26,228,sv.po,,sv,,swedish,,,sv

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/pt_br.po,26,228,257,0,0,0,0,26,228,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/de.po,26,228,215,0,0,0,0,26,228,de.po,,de,,german,,,de

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/sk.po,26,228,245,0,0,0,0,26,228,sk.po,,sk,,slovak,,,sk

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/hr.po,26,228,210,0,0,0,0,26,228,hr.po,,hr,,croatian,,,hr

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/pl.po,26,228,228,0,0,0,0,26,228,pl.po,,pl,,polish,,,pl

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/cs.po,25,141,129,1,87,0,0,26,228,cs.po,,cs,,czech,,,cs

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/zh_cn.po,25,227,102,0,0,1,1,26,228,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/tr.po,26,228,222,0,0,0,0,26,228,tr.po,,tr,,turkish,,,tr

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/zh_tw.po,26,228,94,0,0,0,0,26,228,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ polkit-0.115-10.fc30.1.src.rpm.stats.csv,po/hu.po,26,228,213,0,0,0,0,26,228,hu.po,,hu,,hungarian,,,hu

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/pl.po,29,78,76,0,0,2,6,31,84,pl.po,,pl,,polish,,,pl

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/zh_cn.po,29,78,40,0,0,2,6,31,84,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/nb.po,24,61,58,2,8,5,15,31,84,nb.po,,nb,,norwegian bokmål,,,nb

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/ro.po,11,31,32,3,16,17,37,31,84,ro.po,,ro,,romanian,,,ro

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/fi.po,29,78,76,0,0,2,6,31,84,fi.po,,fi,,finnish,,,fi

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/ko.po,24,61,61,2,8,5,15,31,84,ko.po,,ko,,korean,,,ko

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/de.po,29,78,75,0,0,2,6,31,84,de.po,,de,,german,,,de

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/da.po,29,78,75,0,0,2,6,31,84,da.po,,da,,danish,,,da

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/wa.po,2,8,15,1,5,28,71,31,84,wa.po,,wa,,walloon,,,wa

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/ga.po,29,78,91,0,0,2,6,31,84,ga.po,,ga,,irish,,,ga

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/hu.po,26,68,69,3,10,2,6,31,84,hu.po,,hu,,hungarian,,,hu

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/sv.po,29,78,75,0,0,2,6,31,84,sv.po,,sv,,swedish,,,sv

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/ja.po,26,68,26,3,10,2,6,31,84,ja.po,,ja,,japanese,,,ja

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/sl.po,2,8,10,1,5,28,71,31,84,sl.po,,sl,,slovenian,,,sl

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/sk.po,2,8,8,1,5,28,71,31,84,sk.po,,sk,,slovak,,,sk

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/ru.po,29,78,80,0,0,2,6,31,84,ru.po,,ru,,russian,,,ru

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/lv.po,29,78,75,0,0,2,6,31,84,lv.po,,lv,,latvian,,,lv

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/es.po,21,48,54,2,8,8,28,31,84,es.po,,es,,spanish,,,es

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/fr.po,24,61,73,2,8,5,15,31,84,fr.po,,fr,,french,,,fr

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/th.po,29,78,38,0,0,2,6,31,84,th.po,,th,,thai,,,th

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/vi.po,29,78,140,0,0,2,6,31,84,vi.po,,vi,,vietnamese,,,vi

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/is.po,24,61,68,2,8,5,15,31,84,is.po,,is,,icelandic,,,is

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/nl.po,29,78,88,0,0,2,6,31,84,nl.po,,nl,,dutch,,,nl

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/it.po,29,78,90,0,0,2,6,31,84,it.po,,it,,italian,,,it

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/id.po,29,78,82,0,0,2,6,31,84,id.po,,id,,indonesian,,,id

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/cs.po,29,78,79,0,0,2,6,31,84,cs.po,,cs,,czech,,,cs

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/zh_tw.po,24,61,26,2,8,5,15,31,84,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/tr.po,21,48,52,3,13,7,23,31,84,tr.po,,tr,,turkish,,,tr

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/uk.po,2,8,8,1,5,28,71,31,84,uk.po,,uk,,ukrainian,,,uk

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/eo.po,29,78,89,0,0,2,6,31,84,eo.po,,eo,,esperanto,,,eo

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/gl.po,21,48,56,3,13,7,23,31,84,gl.po,,gl,,galician,,,gl

+ popt-1.16-17.fc30.src.rpm.stats.csv,po/pt.po,24,61,69,2,8,5,15,31,84,pt.po,,pt,,portuguese,,,pt

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/fr.po,593,5211,5721,0,0,0,0,593,5211,fr.po,,fr,,french,,,fr

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/zh_cn.po,34,41,37,0,0,559,5170,593,5211,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/de.po,583,4927,5018,1,60,9,224,593,5211,de.po,,de,,german,,,de

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/pl.po,593,5211,4699,0,0,0,0,593,5211,pl.po,,pl,,polish,,,pl

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/sv.po,593,5211,4807,0,0,0,0,593,5211,sv.po,,sv,,swedish,,,sv

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/uk.po,593,5211,5270,0,0,0,0,593,5211,uk.po,,uk,,ukrainian,,,uk

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,man-po/pt_br.po,593,5211,5656,0,0,0,0,593,5211,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/fr.po,795,4574,5399,3,19,0,0,798,4593,fr.po,,fr,,french,,,fr

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/zh_cn.po,63,158,105,347,1194,388,3241,798,4593,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/de.po,690,3410,3371,9,61,99,1122,798,4593,de.po,,de,,german,,,de

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/pl.po,795,4574,4588,3,19,0,0,798,4593,pl.po,,pl,,polish,,,pl

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/sv.po,795,4574,4385,3,19,0,0,798,4593,sv.po,,sv,,swedish,,,sv

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/uk.po,795,4574,4883,3,19,0,0,798,4593,uk.po,,uk,,ukrainian,,,uk

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/vi.po,754,4366,6158,21,158,23,69,798,4593,vi.po,,vi,,vietnamese,,,vi

+ procps-ng-3.3.15-5.fc30.src.rpm.stats.csv,po/pt_br.po,795,4574,5145,3,19,0,0,798,4593,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/fr.po,80,646,747,5,346,0,0,85,992,fr.po,,fr,,french,,,fr

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/cs.po,75,497,498,10,495,0,0,85,992,cs.po,,cs,,czech,,,cs

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/eo.po,80,646,678,5,346,0,0,85,992,eo.po,,eo,,esperanto,,,eo

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ro.po,11,81,91,18,200,56,711,85,992,ro.po,,ro,,romanian,,,ro

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/fi.po,80,646,586,5,346,0,0,85,992,fi.po,,fi,,finnish,,,fi

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/zh_cn.po,75,497,271,10,495,0,0,85,992,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ru.po,80,646,664,5,346,0,0,85,992,ru.po,,ru,,russian,,,ru

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ca.po,11,81,92,23,517,51,394,85,992,ca.po,,ca,,catalan,,,ca

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/eu.po,68,452,457,16,533,1,7,85,992,eu.po,,eu,,basque,,,eu

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/it.po,75,497,544,10,495,0,0,85,992,it.po,,it,,italian,,,it

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/de.po,80,646,655,5,346,0,0,85,992,de.po,,de,,german,,,de

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pl.po,80,646,672,5,346,0,0,85,992,pl.po,,pl,,polish,,,pl

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pt.po,2,10,11,14,91,69,891,85,992,pt.po,,pt,,portuguese,,,pt

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/id.po,68,452,484,16,533,1,7,85,992,id.po,,id,,indonesian,,,id

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/sv.po,80,646,656,5,346,0,0,85,992,sv.po,,sv,,swedish,,,sv

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/zh_tw.po,75,497,243,10,495,0,0,85,992,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/ja.po,34,203,87,21,512,30,277,85,992,ja.po,,ja,,japanese,,,ja

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/hu.po,80,646,651,5,346,0,0,85,992,hu.po,,hu,,hungarian,,,hu

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/uk.po,80,646,716,5,346,0,0,85,992,uk.po,,uk,,ukrainian,,,uk

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/vi.po,80,646,975,5,346,0,0,85,992,vi.po,,vi,,vietnamese,,,vi

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/pt_br.po,80,646,738,5,346,0,0,85,992,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/bg.po,34,203,270,21,512,30,277,85,992,bg.po,,bg,,bulgarian,,,bg

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/nl.po,80,646,678,5,346,0,0,85,992,nl.po,,nl,,dutch,,,nl

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/nb.po,34,203,212,21,512,30,277,85,992,nb.po,,nb,,norwegian bokmål,,,nb

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/el.po,80,646,703,5,346,0,0,85,992,el.po,,el,,greek,,,el

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/sr.po,80,646,678,5,346,0,0,85,992,sr.po,,sr,,serbian,,,sr

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/da.po,80,646,648,5,346,0,0,85,992,da.po,,da,,danish,,,da

+ psmisc-23.1-5.1.fc30.src.rpm.stats.csv,po/hr.po,80,646,659,5,346,0,0,85,992,hr.po,,hr,,croatian,,,hr

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/fi.po,409,2013,1649,44,952,43,339,496,3304,fi.po,,fi,,finnish,,,fi

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/es.po,409,2013,2386,44,952,43,339,496,3304,es.po,,es,,spanish,,,es

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/id.po,522,3403,3284,14,181,0,0,536,3584,id.po,,id,,indonesian,,,id

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/el.po,551,3584,3652,0,0,0,0,551,3584,el.po,,el,,greek,,,el

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,529,3529,1460,0,0,0,0,529,3529,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/cs.po,464,2840,2701,6,148,26,316,496,3304,cs.po,,cs,,czech,,,cs

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hi.po,407,2011,2239,43,951,46,342,496,3304,hi.po,,hi,,hindi,,,hi

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/lt.po,538,3588,3303,0,0,0,0,538,3588,lt.po,,lt,,lithuanian,,,lt

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/uk.po,536,3584,3655,0,0,0,0,536,3584,uk.po,,uk,,ukrainian,,,uk

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/de_ch.po,369,1754,1566,57,906,70,644,496,3304,de_ch.po,,de,ch,german,,switzerland,de_ch

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ta.po,407,2011,1835,43,951,46,342,496,3304,ta.po,,ta,,tamil,,,ta

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/mr.po,407,2011,2002,43,951,46,342,496,3304,mr.po,,mr,,marathi,,,mr

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ja.po,496,3304,1617,0,0,0,0,496,3304,ja.po,,ja,,japanese,,,ja

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/nn.po,531,3552,3298,0,0,0,0,531,3552,nn.po,,nn,,norwegian nynorsk,,,nn

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sv.po,536,3579,3262,0,0,0,0,536,3579,sv.po,,sv,,swedish,,,sv

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,534,3573,1526,0,0,0,0,534,3573,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pl.po,536,3584,3501,0,0,0,0,536,3584,pl.po,,pl,,polish,,,pl

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/bn_in.po,407,2011,2154,43,951,46,342,496,3304,bn_in.po,,bn,in,bangla,,india,bn_in

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/fr.po,521,3450,4057,0,0,0,0,521,3450,fr.po,,fr,,french,,,fr

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/te.po,407,2011,1809,43,951,46,342,496,3304,te.po,,te,,telugu,,,te

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/de.po,526,3513,3264,0,0,4,11,530,3524,de.po,,de,,german,,,de

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sk.po,367,1253,1199,0,0,163,2286,530,3539,sk.po,,sk,,slovak,,,sk

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pt.po,374,1932,2171,55,981,67,391,496,3304,pt.po,,pt,,portuguese,,,pt

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hu.po,530,3524,3484,0,0,0,0,530,3524,hu.po,,hu,,hungarian,,,hu

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/be.po,529,3516,3289,1,8,0,0,530,3524,be.po,,be,,belarusian,,,be

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/gu.po,407,2011,2207,43,951,46,342,496,3304,gu.po,,gu,,gujarati,,,gu

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/oc.po,474,2206,2681,0,0,57,1337,531,3543,oc.po,,oc,,occitan,,,oc

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/gl.po,498,3326,4000,0,0,3,22,501,3348,gl.po,,gl,,galician,,,gl

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ru.po,551,3584,3652,0,0,0,0,551,3584,ru.po,,ru,,russian,,,ru

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pa.po,407,2011,2223,43,951,46,342,496,3304,pa.po,,pa,,punjabi,,,pa

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sr@latin.po,407,2011,1980,43,951,46,342,496,3304,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/or.po,407,2011,2102,43,951,46,342,496,3304,or.po,,or,,odia,,,or

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/kn.po,407,2011,1869,43,951,46,342,496,3304,kn.po,,kn,,kannada,,,kn

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ko.po,525,3475,3035,0,0,0,0,525,3475,ko.po,,ko,,korean,,,ko

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,530,3524,3989,0,0,0,0,530,3524,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/hr.po,530,3550,3249,0,0,0,0,530,3550,hr.po,,hr,,croatian,,,hr

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/it.po,531,3552,3918,0,0,0,0,531,3552,it.po,,it,,italian,,,it

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/he.po,84,190,195,15,48,397,3066,496,3304,he.po,,he,,hebrew,,,he

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/tr.po,531,3552,3252,0,0,0,0,531,3552,tr.po,,tr,,turkish,,,tr

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/nl.po,407,2011,1932,43,951,46,342,496,3304,nl.po,,nl,,dutch,,,nl

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/as.po,406,2010,2145,44,952,46,342,496,3304,as.po,,as,,assamese,,,as

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/ca.po,377,1937,2379,59,985,60,382,496,3304,ca.po,,ca,,catalan,,,ca

+ pulseaudio-12.2-3.fc30.src.rpm.stats.csv,po/sr.po,407,2011,1980,43,951,46,342,496,3304,sr.po,,sr,,serbian,,,sr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,179,1605,179,1605,zu.po,,zu,,zulu,,,zu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_tw.po,36,337,114,0,0,143,1268,179,1605,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_tw.mo,36,337,114,0,0,0,0,36,337,zh_tw.mo,,zh,tw,chinese,,taiwan,zh_tw

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,179,1605,179,1605,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_cn.po,179,1605,686,0,0,0,0,179,1605,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/zh_cn.mo,179,1605,686,0,0,0,0,179,1605,zh_cn.mo,,zh,cn,chinese,,china,zh_cn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,179,1605,179,1605,yo.po,,yo,,yoruba,,,yo

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,179,1605,179,1605,vi.po,,vi,,vietnamese,,,vi

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,179,1605,179,1605,ur.po,,ur,,urdu,,,ur

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/uk.po,179,1605,1457,0,0,0,0,179,1605,uk.po,,uk,,ukrainian,,,uk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/uk.mo,179,1605,1457,0,0,0,0,179,1605,uk.mo,,uk,,ukrainian,,,uk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,179,1605,179,1605,tw.po,,tw,,twi,,,tw

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tr.po,26,268,216,0,0,153,1337,179,1605,tr.po,,tr,,turkish,,,tr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tr.mo,26,268,216,0,0,0,0,26,268,tr.mo,,tr,,turkish,,,tr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/th.po,24,259,106,0,0,155,1346,179,1605,th.po,,th,,thai,,,th

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/th.mo,24,259,106,0,0,0,0,24,259,th.mo,,th,,thai,,,th

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,179,1605,179,1605,tg.po,,tg,,tajik,,,tg

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/te.po,23,250,201,0,0,156,1355,179,1605,te.po,,te,,telugu,,,te

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/te.mo,23,250,201,0,0,0,0,23,250,te.mo,,te,,telugu,,,te

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ta.po,14,171,120,0,0,165,1434,179,1605,ta.po,,ta,,tamil,,,ta

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ta.mo,14,171,120,0,0,0,0,14,171,ta.mo,,ta,,tamil,,,ta

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sv.po,179,1605,1432,0,0,0,0,179,1605,sv.po,,sv,,swedish,,,sv

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sv.mo,179,1605,1432,0,0,0,0,179,1605,sv.mo,,sv,,swedish,,,sv

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr@latin.po,14,171,151,0,0,165,1434,179,1605,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr@latin.mo,14,171,151,0,0,0,0,14,171,sr@latin.mo,latin,sr,,serbian,,,sr@latin

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr.po,116,1065,985,0,0,63,540,179,1605,sr.po,,sr,,serbian,,,sr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sr.mo,116,1065,985,0,0,0,0,116,1065,sr.mo,,sr,,serbian,,,sr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,179,1605,179,1605,sq.po,,sq,,albanian,,,sq

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sl.po,13,166,134,0,0,166,1439,179,1605,sl.po,,sl,,slovenian,,,sl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sl.mo,13,166,134,0,0,0,0,13,166,sl.mo,,sl,,slovenian,,,sl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sk.po,171,1527,1378,0,0,8,78,179,1605,sk.po,,sk,,slovak,,,sk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/sk.mo,171,1527,1378,0,0,0,0,171,1527,sk.mo,,sk,,slovak,,,sk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,179,1605,179,1605,si.po,,si,,sinhala,,,si

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ru.po,170,1521,1285,0,0,9,84,179,1605,ru.po,,ru,,russian,,,ru

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ru.mo,170,1521,1285,0,0,0,0,170,1521,ru.mo,,ru,,russian,,,ru

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,179,1605,179,1605,ro.po,,ro,,romanian,,,ro

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt_br.po,145,1303,1391,0,0,34,302,179,1605,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt_br.mo,145,1303,1391,0,0,0,0,145,1303,pt_br.mo,,pt,br,portuguese,,brazil,pt_br

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt.po,38,359,386,0,0,141,1246,179,1605,pt.po,,pt,,portuguese,,,pt

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pt.mo,38,359,386,0,0,0,0,38,359,pt.mo,,pt,,portuguese,,,pt

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pl.po,179,1605,1499,0,0,0,0,179,1605,pl.po,,pl,,polish,,,pl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pl.mo,179,1605,1499,0,0,0,0,179,1605,pl.mo,,pl,,polish,,,pl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pa.po,24,257,295,0,0,155,1348,179,1605,pa.po,,pa,,punjabi,,,pa

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/pa.mo,24,257,295,0,0,0,0,24,257,pa.mo,,pa,,punjabi,,,pa

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/or.po,24,257,236,0,0,155,1348,179,1605,or.po,,or,,odia,,,or

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/or.mo,24,257,236,0,0,0,0,24,257,or.mo,,or,,odia,,,or

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,179,1605,179,1605,nso.po,,nso,,northern sotho,,,nso

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,179,1605,179,1605,nn.po,,nn,,norwegian nynorsk,,,nn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nl.po,179,1605,1633,0,0,0,0,179,1605,nl.po,,nl,,dutch,,,nl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nl.mo,179,1605,1633,0,0,0,0,179,1605,nl.mo,,nl,,dutch,,,nl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,179,1605,179,1605,ne.po,,ne,,nepali,,,ne

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nds.po,4,34,33,0,0,175,1571,179,1605,nds.po,,nds,,low german,,,nds

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nds.mo,4,34,33,0,0,0,0,4,34,nds.mo,,nds,,low german,,,nds

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nb.po,14,171,155,0,0,165,1434,179,1605,nb.po,,nb,,norwegian bokmål,,,nb

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/nb.mo,14,171,155,0,0,0,0,14,171,nb.mo,,nb,,norwegian bokmål,,,nb

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ms.po,13,166,153,0,0,166,1439,179,1605,ms.po,,ms,,malay,,,ms

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ms.mo,13,166,153,0,0,0,0,13,166,ms.mo,,ms,,malay,,,ms

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mr.po,14,171,159,0,0,165,1434,179,1605,mr.po,,mr,,marathi,,,mr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mr.mo,14,171,159,0,0,0,0,14,171,mr.mo,,mr,,marathi,,,mr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,179,1605,179,1605,mn.po,,mn,,mongolian,,,mn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ml.po,14,171,126,0,0,165,1434,179,1605,ml.po,,ml,,malayalam,,,ml

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ml.mo,14,171,126,0,0,0,0,14,171,ml.mo,,ml,,malayalam,,,ml

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mk.po,13,166,170,0,0,166,1439,179,1605,mk.po,,mk,,macedonian,,,mk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mk.mo,13,166,170,0,0,0,0,13,166,mk.mo,,mk,,macedonian,,,mk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mai.po,13,166,165,0,0,166,1439,179,1605,mai.po,,mai,,maithili,,,mai

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/mai.mo,13,166,165,0,0,0,0,13,166,mai.mo,,mai,,maithili,,,mai

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,179,1605,179,1605,lv.po,,lv,,latvian,,,lv

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,179,1605,179,1605,ky.po,,ky,,kyrgyz,,,ky

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,179,1605,179,1605,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,179,1605,179,1605,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,179,1605,179,1605,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,179,1605,179,1605,kw.po,,kw,,cornish,,,kw

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ko.po,26,268,218,0,0,153,1337,179,1605,ko.po,,ko,,korean,,,ko

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ko.mo,26,268,218,0,0,0,0,26,268,ko.mo,,ko,,korean,,,ko

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kn.po,26,268,226,0,0,153,1337,179,1605,kn.po,,kn,,kannada,,,kn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kn.mo,26,268,226,0,0,0,0,26,268,kn.mo,,kn,,kannada,,,kn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,179,1605,179,1605,km.po,,km,,khmer,,,km

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,179,1605,179,1605,kk.po,,kk,,kazakh,,,kk

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,179,1605,179,1605,ka.po,,ka,,georgian,,,ka

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ja.po,179,1605,666,0,0,0,0,179,1605,ja.po,,ja,,japanese,,,ja

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ja.mo,179,1605,666,0,0,0,0,179,1605,ja.mo,,ja,,japanese,,,ja

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/it.po,41,352,387,0,0,138,1253,179,1605,it.po,,it,,italian,,,it

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/it.mo,41,352,387,0,0,0,0,41,352,it.mo,,it,,italian,,,it

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/is.po,14,171,164,0,0,165,1434,179,1605,is.po,,is,,icelandic,,,is

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/is.mo,14,171,164,0,0,0,0,14,171,is.mo,,is,,icelandic,,,is

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,179,1605,179,1605,ilo.po,,ilo,,iloko,,,ilo

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/id.po,15,177,168,0,0,164,1428,179,1605,id.po,,id,,indonesian,,,id

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/id.mo,15,177,168,0,0,0,0,15,177,id.mo,,id,,indonesian,,,id

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ia.po,26,268,292,0,0,153,1337,179,1605,ia.po,,ia,,interlingua,,,ia

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ia.mo,26,268,292,0,0,0,0,26,268,ia.mo,,ia,,interlingua,,,ia

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hu.po,30,308,274,0,0,149,1297,179,1605,hu.po,,hu,,hungarian,,,hu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hu.mo,30,308,274,0,0,0,0,30,308,hu.mo,,hu,,hungarian,,,hu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hr.po,14,171,157,0,0,165,1434,179,1605,hr.po,,hr,,croatian,,,hr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hr.mo,14,171,157,0,0,0,0,14,171,hr.mo,,hr,,croatian,,,hr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hi.po,26,268,293,0,0,153,1337,179,1605,hi.po,,hi,,hindi,,,hi

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/hi.mo,26,268,293,0,0,0,0,26,268,hi.mo,,hi,,hindi,,,hi

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/he.po,14,171,131,0,0,165,1434,179,1605,he.po,,he,,hebrew,,,he

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/he.mo,14,171,131,0,0,0,0,14,171,he.mo,,he,,hebrew,,,he

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gu.po,26,268,273,0,0,153,1337,179,1605,gu.po,,gu,,gujarati,,,gu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gu.mo,26,268,273,0,0,0,0,26,268,gu.mo,,gu,,gujarati,,,gu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gl.po,1,3,3,0,0,178,1602,179,1605,gl.po,,gl,,galician,,,gl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/gl.mo,1,3,3,0,0,0,0,1,3,gl.mo,,gl,,galician,,,gl

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fr.po,179,1605,1756,0,0,0,0,179,1605,fr.po,,fr,,french,,,fr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fr.mo,179,1605,1756,0,0,0,0,179,1605,fr.mo,,fr,,french,,,fr

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fi.po,26,268,192,0,0,153,1337,179,1605,fi.po,,fi,,finnish,,,fi

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fi.mo,26,268,192,0,0,0,0,26,268,fi.mo,,fi,,finnish,,,fi

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fa.po,24,257,264,0,0,155,1348,179,1605,fa.po,,fa,,persian,,,fa

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/fa.mo,24,257,264,0,0,0,0,24,257,fa.mo,,fa,,persian,,,fa

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eu.po,1,3,3,0,0,178,1602,179,1605,eu.po,,eu,,basque,,,eu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eu.mo,1,3,3,0,0,0,0,1,3,eu.mo,,eu,,basque,,,eu

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,179,1605,179,1605,et.po,,et,,estonian,,,et

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/es.po,179,1605,1747,0,0,0,0,179,1605,es.po,,es,,spanish,,,es

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/es.mo,179,1605,1747,0,0,0,0,179,1605,es.mo,,es,,spanish,,,es

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,179,1605,179,1605,eo.po,,eo,,esperanto,,,eo

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/en_gb.po,24,257,257,0,0,155,1348,179,1605,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/en_gb.mo,24,257,257,0,0,0,0,24,257,en_gb.mo,,en,gb,english,,united kingdom,en_gb

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/el.po,14,171,179,0,0,165,1434,179,1605,el.po,,el,,greek,,,el

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/el.mo,14,171,179,0,0,0,0,14,171,el.mo,,el,,greek,,,el

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de_ch.po,14,171,179,0,0,165,1434,179,1605,de_ch.po,,de,ch,german,,switzerland,de_ch

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de_ch.mo,14,171,179,0,0,0,0,14,171,de_ch.mo,,de,ch,german,,switzerland,de_ch

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de.po,145,1303,1259,0,0,34,302,179,1605,de.po,,de,,german,,,de

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/de.mo,145,1303,1259,0,0,0,0,145,1303,de.mo,,de,,german,,,de

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/da.po,30,308,278,0,0,149,1297,179,1605,da.po,,da,,danish,,,da

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/da.mo,30,308,278,0,0,0,0,30,308,da.mo,,da,,danish,,,da

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,179,1605,179,1605,cy.po,,cy,,welsh,,,cy

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cs.po,170,1521,1316,0,0,9,84,179,1605,cs.po,,cs,,czech,,,cs

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/cs.mo,170,1521,1316,0,0,0,0,170,1521,cs.mo,,cs,,czech,,,cs

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ca.po,173,1547,1762,0,0,6,58,179,1605,ca.po,,ca,,catalan,,,ca

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ca.mo,173,1547,1762,0,0,0,0,173,1547,ca.mo,,ca,,catalan,,,ca

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bs.po,17,212,192,0,0,162,1393,179,1605,bs.po,,bs,,bosnian,,,bs

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bs.mo,17,212,192,0,0,0,0,17,212,bs.mo,,bs,,bosnian,,,bs

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,179,1605,179,1605,brx.po,,brx,,bodo,,,brx

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,179,1605,179,1605,br.po,,br,,breton,,,br

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,179,1605,179,1605,bo.po,,bo,,tibetan,,,bo

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn_in.po,26,268,268,0,0,153,1337,179,1605,bn_in.po,,bn,in,bangla,,india,bn_in

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn_in.mo,26,268,268,0,0,0,0,26,268,bn_in.mo,,bn,in,bangla,,india,bn_in

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn.po,26,268,268,0,0,153,1337,179,1605,bn.po,,bn,,bangla,,,bn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bn.mo,26,268,268,0,0,0,0,26,268,bn.mo,,bn,,bangla,,,bn

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bg.po,29,297,284,0,0,150,1308,179,1605,bg.po,,bg,,bulgarian,,,bg

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bg.mo,29,297,284,0,0,0,0,29,297,bg.mo,,bg,,bulgarian,,,bg

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,179,1605,179,1605,be.po,,be,,belarusian,,,be

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,179,1605,179,1605,bal.po,,bal,,baluchi,,,bal

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ast.po,14,171,187,0,0,165,1434,179,1605,ast.po,,ast,,asturian,,,ast

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ast.mo,14,171,187,0,0,0,0,14,171,ast.mo,,ast,,asturian,,,ast

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/as.po,30,308,290,0,0,149,1297,179,1605,as.po,,as,,assamese,,,as

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/as.mo,30,308,290,0,0,0,0,30,308,as.mo,,as,,assamese,,,as

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ar.po,24,257,228,0,0,155,1348,179,1605,ar.po,,ar,,arabic,,,ar

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/ar.mo,24,257,228,0,0,0,0,24,257,ar.mo,,ar,,arabic,,,ar

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,179,1605,179,1605,anp.po,,anp,,angika,,,anp

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,179,1605,179,1605,am.po,,am,,amharic,,,am

+ pykickstart-3.20-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,179,1605,179,1605,af.po,,af,,afrikaans,,,af

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_tw.po,75,524,250,0,0,0,0,75,524,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_tw.mo,75,524,250,0,0,0,0,75,524,zh_tw.mo,,zh,tw,chinese,,taiwan,zh_tw

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_cn.po,75,524,260,0,0,0,0,75,524,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/zh_cn.mo,75,524,260,0,0,0,0,75,524,zh_cn.mo,,zh,cn,chinese,,china,zh_cn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ur.po,3,37,37,0,0,72,487,75,524,ur.po,,ur,,urdu,,,ur

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ur.mo,3,37,37,0,0,0,0,3,37,ur.mo,,ur,,urdu,,,ur

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/uk.po,75,524,524,0,0,0,0,75,524,uk.po,,uk,,ukrainian,,,uk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/uk.mo,75,524,524,0,0,0,0,75,524,uk.mo,,uk,,ukrainian,,,uk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tr.po,10,62,49,0,0,65,462,75,524,tr.po,,tr,,turkish,,,tr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tr.mo,10,62,49,0,0,0,0,10,62,tr.mo,,tr,,turkish,,,tr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/th.po,7,52,16,0,0,68,472,75,524,th.po,,th,,thai,,,th

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/th.mo,7,52,16,0,0,0,0,7,52,th.mo,,th,,thai,,,th

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tg.po,3,12,15,0,0,72,512,75,524,tg.po,,tg,,tajik,,,tg

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/tg.mo,3,12,15,0,0,0,0,3,12,tg.mo,,tg,,tajik,,,tg

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/te.po,56,326,290,0,0,19,198,75,524,te.po,,te,,telugu,,,te

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/te.mo,56,326,290,0,0,0,0,56,326,te.mo,,te,,telugu,,,te

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ta.po,43,290,254,0,0,32,234,75,524,ta.po,,ta,,tamil,,,ta

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ta.mo,43,290,254,0,0,0,0,43,290,ta.mo,,ta,,tamil,,,ta

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sv.po,75,524,525,0,0,0,0,75,524,sv.po,,sv,,swedish,,,sv

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sv.mo,75,524,525,0,0,0,0,75,524,sv.mo,,sv,,swedish,,,sv

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr@latin.po,21,188,187,0,0,54,336,75,524,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr@latin.mo,21,188,187,0,0,0,0,21,188,sr@latin.mo,latin,sr,,serbian,,,sr@latin

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr.po,67,456,461,0,0,8,68,75,524,sr.po,,sr,,serbian,,,sr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sr.mo,67,456,461,0,0,0,0,67,456,sr.mo,,sr,,serbian,,,sr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sq.po,5,43,37,0,0,70,481,75,524,sq.po,,sq,,albanian,,,sq

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sq.mo,5,43,37,0,0,0,0,5,43,sq.mo,,sq,,albanian,,,sq

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sl.po,3,37,29,0,0,72,487,75,524,sl.po,,sl,,slovenian,,,sl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sl.mo,3,37,29,0,0,0,0,3,37,sl.mo,,sl,,slovenian,,,sl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sk.po,72,518,519,0,0,3,6,75,524,sk.po,,sk,,slovak,,,sk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/sk.mo,72,518,519,0,0,0,0,72,518,sk.mo,,sk,,slovak,,,sk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/si.po,24,206,204,0,0,51,318,75,524,si.po,,si,,sinhala,,,si

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/si.mo,24,206,204,0,0,0,0,24,206,si.mo,,si,,sinhala,,,si

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ru.po,75,524,486,0,0,0,0,75,524,ru.po,,ru,,russian,,,ru

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ru.mo,75,524,486,0,0,0,0,75,524,ru.mo,,ru,,russian,,,ru

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ro.po,3,37,33,0,0,72,487,75,524,ro.po,,ro,,romanian,,,ro

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ro.mo,3,37,33,0,0,0,0,3,37,ro.mo,,ro,,romanian,,,ro

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt_br.po,75,524,589,0,0,0,0,75,524,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt_br.mo,75,524,589,0,0,0,0,75,524,pt_br.mo,,pt,br,portuguese,,brazil,pt_br

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt.po,24,206,232,0,0,51,318,75,524,pt.po,,pt,,portuguese,,,pt

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pt.mo,24,206,232,0,0,0,0,24,206,pt.mo,,pt,,portuguese,,,pt

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pl.po,75,524,530,0,0,0,0,75,524,pl.po,,pl,,polish,,,pl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pl.mo,75,524,530,0,0,0,0,75,524,pl.mo,,pl,,polish,,,pl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pa.po,43,290,355,0,0,32,234,75,524,pa.po,,pa,,punjabi,,,pa

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/pa.mo,43,290,355,0,0,0,0,43,290,pa.mo,,pa,,punjabi,,,pa

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/or.po,43,290,322,0,0,32,234,75,524,or.po,,or,,odia,,,or

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/or.mo,43,290,322,0,0,0,0,43,290,or.mo,,or,,odia,,,or

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nso.po,3,37,42,0,0,72,487,75,524,nso.po,,nso,,northern sotho,,,nso

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nso.mo,3,37,42,0,0,0,0,3,37,nso.mo,,nso,,northern sotho,,,nso

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nl.po,75,524,552,0,0,0,0,75,524,nl.po,,nl,,dutch,,,nl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nl.mo,75,524,552,0,0,0,0,75,524,nl.mo,,nl,,dutch,,,nl

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ne.po,3,37,31,0,0,72,487,75,524,ne.po,,ne,,nepali,,,ne

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ne.mo,3,37,31,0,0,0,0,3,37,ne.mo,,ne,,nepali,,,ne

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nb.po,13,85,78,0,0,62,439,75,524,nb.po,,nb,,norwegian bokmål,,,nb

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/nb.mo,13,85,78,0,0,0,0,13,85,nb.mo,,nb,,norwegian bokmål,,,nb

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ms.po,3,37,28,0,0,72,487,75,524,ms.po,,ms,,malay,,,ms

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ms.mo,3,37,28,0,0,0,0,3,37,ms.mo,,ms,,malay,,,ms

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mr.po,56,326,343,0,0,19,198,75,524,mr.po,,mr,,marathi,,,mr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mr.mo,56,326,343,0,0,0,0,56,326,mr.mo,,mr,,marathi,,,mr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ml.po,43,290,225,0,0,32,234,75,524,ml.po,,ml,,malayalam,,,ml

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ml.mo,43,290,225,0,0,0,0,43,290,ml.mo,,ml,,malayalam,,,ml

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mk.po,3,37,28,0,0,72,487,75,524,mk.po,,mk,,macedonian,,,mk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mk.mo,3,37,28,0,0,0,0,3,37,mk.mo,,mk,,macedonian,,,mk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mai.po,8,63,67,0,0,67,461,75,524,mai.po,,mai,,maithili,,,mai

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/mai.mo,8,63,67,0,0,0,0,8,63,mai.mo,,mai,,maithili,,,mai

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/lv.po,9,56,51,0,0,66,468,75,524,lv.po,,lv,,latvian,,,lv

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/lv.mo,9,56,51,0,0,0,0,9,56,lv.mo,,lv,,latvian,,,lv

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ko.po,75,524,454,0,0,0,0,75,524,ko.po,,ko,,korean,,,ko

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ko.mo,75,524,454,0,0,0,0,75,524,ko.mo,,ko,,korean,,,ko

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kn.po,56,326,297,0,0,19,198,75,524,kn.po,,kn,,kannada,,,kn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kn.mo,56,326,297,0,0,0,0,56,326,kn.mo,,kn,,kannada,,,kn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kk.po,43,290,269,0,0,32,234,75,524,kk.po,,kk,,kazakh,,,kk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/kk.mo,43,290,269,0,0,0,0,43,290,kk.mo,,kk,,kazakh,,,kk

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ka.po,11,24,24,0,0,64,500,75,524,ka.po,,ka,,georgian,,,ka

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ka.mo,11,24,24,0,0,0,0,11,24,ka.mo,,ka,,georgian,,,ka

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ja.po,75,524,258,0,0,0,0,75,524,ja.po,,ja,,japanese,,,ja

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ja.mo,75,524,258,0,0,0,0,75,524,ja.mo,,ja,,japanese,,,ja

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/it.po,75,524,545,0,0,0,0,75,524,it.po,,it,,italian,,,it

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/it.mo,75,524,545,0,0,0,0,75,524,it.mo,,it,,italian,,,it

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/is.po,5,43,36,0,0,70,481,75,524,is.po,,is,,icelandic,,,is

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/is.mo,5,43,36,0,0,0,0,5,43,is.mo,,is,,icelandic,,,is

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ilo.po,3,37,41,0,0,72,487,75,524,ilo.po,,ilo,,iloko,,,ilo

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ilo.mo,3,37,41,0,0,0,0,3,37,ilo.mo,,ilo,,iloko,,,ilo

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/id.po,24,206,196,0,0,51,318,75,524,id.po,,id,,indonesian,,,id

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/id.mo,24,206,196,0,0,0,0,24,206,id.mo,,id,,indonesian,,,id

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ia.po,36,277,310,0,0,39,247,75,524,ia.po,,ia,,interlingua,,,ia

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ia.mo,36,277,310,0,0,0,0,36,277,ia.mo,,ia,,interlingua,,,ia

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hu.po,75,524,531,0,0,0,0,75,524,hu.po,,hu,,hungarian,,,hu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hu.mo,75,524,531,0,0,0,0,75,524,hu.mo,,hu,,hungarian,,,hu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hr.po,3,37,22,0,0,72,487,75,524,hr.po,,hr,,croatian,,,hr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hr.mo,3,37,22,0,0,0,0,3,37,hr.mo,,hr,,croatian,,,hr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hi.po,24,206,239,0,0,51,318,75,524,hi.po,,hi,,hindi,,,hi

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/hi.mo,24,206,239,0,0,0,0,24,206,hi.mo,,hi,,hindi,,,hi

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/he.po,5,23,20,0,0,70,501,75,524,he.po,,he,,hebrew,,,he

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/he.mo,5,23,20,0,0,0,0,5,23,he.mo,,he,,hebrew,,,he

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/gu.po,56,326,358,0,0,19,198,75,524,gu.po,,gu,,gujarati,,,gu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/gu.mo,56,326,358,0,0,0,0,56,326,gu.mo,,gu,,gujarati,,,gu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fr.po,75,524,618,0,0,0,0,75,524,fr.po,,fr,,french,,,fr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fr.mo,75,524,618,0,0,0,0,75,524,fr.mo,,fr,,french,,,fr

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fi.po,24,206,167,0,0,51,318,75,524,fi.po,,fi,,finnish,,,fi

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fi.mo,24,206,167,0,0,0,0,24,206,fi.mo,,fi,,finnish,,,fi

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fa.po,24,206,231,0,0,51,318,75,524,fa.po,,fa,,persian,,,fa

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/fa.mo,24,206,231,0,0,0,0,24,206,fa.mo,,fa,,persian,,,fa

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/eu.po,2,8,8,0,0,73,516,75,524,eu.po,,eu,,basque,,,eu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/eu.mo,2,8,8,0,0,0,0,2,8,eu.mo,,eu,,basque,,,eu

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/et.po,8,52,51,0,0,67,472,75,524,et.po,,et,,estonian,,,et

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/et.mo,8,52,51,0,0,0,0,8,52,et.mo,,et,,estonian,,,et

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/es.po,75,524,637,0,0,0,0,75,524,es.po,,es,,spanish,,,es

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/es.mo,75,524,637,0,0,0,0,75,524,es.mo,,es,,spanish,,,es

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/en_gb.po,24,206,206,0,0,51,318,75,524,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/en_gb.mo,24,206,206,0,0,0,0,24,206,en_gb.mo,,en,gb,english,,united kingdom,en_gb

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/el.po,6,47,51,0,0,69,477,75,524,el.po,,el,,greek,,,el

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/el.mo,6,47,51,0,0,0,0,6,47,el.mo,,el,,greek,,,el

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de_ch.po,7,52,41,0,0,68,472,75,524,de_ch.po,,de,ch,german,,switzerland,de_ch

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de_ch.mo,7,52,41,0,0,0,0,7,52,de_ch.mo,,de,ch,german,,switzerland,de_ch

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de.po,75,524,514,0,0,0,0,75,524,de.po,,de,,german,,,de

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/de.mo,75,524,514,0,0,0,0,75,524,de.mo,,de,,german,,,de

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/da.po,75,524,493,0,0,0,0,75,524,da.po,,da,,danish,,,da

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/da.mo,75,524,493,0,0,0,0,75,524,da.mo,,da,,danish,,,da

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cy.po,3,37,32,0,0,72,487,75,524,cy.po,,cy,,welsh,,,cy

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cy.mo,3,37,32,0,0,0,0,3,37,cy.mo,,cy,,welsh,,,cy

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cs.po,75,524,498,0,0,0,0,75,524,cs.po,,cs,,czech,,,cs

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/cs.mo,75,524,498,0,0,0,0,75,524,cs.mo,,cs,,czech,,,cs

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ca.po,75,524,651,0,0,0,0,75,524,ca.po,,ca,,catalan,,,ca

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ca.mo,75,524,651,0,0,0,0,75,524,ca.mo,,ca,,catalan,,,ca

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bs.po,3,37,22,0,0,72,487,75,524,bs.po,,bs,,bosnian,,,bs

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bs.mo,3,37,22,0,0,0,0,3,37,bs.mo,,bs,,bosnian,,,bs

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn_in.po,62,355,401,0,0,13,169,75,524,bn_in.po,,bn,in,bangla,,india,bn_in

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn_in.mo,62,355,401,0,0,0,0,62,355,bn_in.mo,,bn,in,bangla,,india,bn_in

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn.po,24,206,225,0,0,51,318,75,524,bn.po,,bn,,bangla,,,bn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bn.mo,24,206,225,0,0,0,0,24,206,bn.mo,,bn,,bangla,,,bn

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bg.po,62,357,407,0,0,13,167,75,524,bg.po,,bg,,bulgarian,,,bg

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/bg.mo,62,357,407,0,0,0,0,62,357,bg.mo,,bg,,bulgarian,,,bg

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ast.po,23,202,209,0,0,52,322,75,524,ast.po,,ast,,asturian,,,ast

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ast.mo,23,202,209,0,0,0,0,23,202,ast.mo,,ast,,asturian,,,ast

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/as.po,62,355,382,0,0,13,169,75,524,as.po,,as,,assamese,,,as

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/as.mo,62,355,382,0,0,0,0,62,355,as.mo,,as,,assamese,,,as

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ar.po,5,41,34,0,0,70,483,75,524,ar.po,,ar,,arabic,,,ar

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/ar.mo,5,41,34,0,0,0,0,5,41,ar.mo,,ar,,arabic,,,ar

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/am.po,3,37,26,0,0,72,487,75,524,am.po,,am,,amharic,,,am

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/am.mo,3,37,26,0,0,0,0,3,37,am.mo,,am,,amharic,,,am

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/af.po,3,37,36,0,0,72,487,75,524,af.po,,af,,afrikaans,,,af

+ python-blivet-3.1.3-3.fc30.src.rpm.stats.csv,po/af.mo,3,37,36,0,0,0,0,3,37,af.mo,,af,,afrikaans,,,af

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,23,109,23,109,kw.po,,kw,,cornish,,,kw

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,23,109,23,109,anp.po,,anp,,angika,,,anp

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,23,109,23,109,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,23,109,23,109,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,23,109,23,109,yo.po,,yo,,yoruba,,,yo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,23,109,23,109,tw.po,,tw,,twi,,,tw

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,23,109,23,109,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,23,109,23,109,ky.po,,ky,,kyrgyz,,,ky

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,23,109,23,109,sl.po,,sl,,slovenian,,,sl

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,23,109,23,109,ku.po,,ku,,kurdish,,,ku

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,23,109,23,109,si.po,,si,,sinhala,,,si

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ks.po,0,0,0,0,0,23,109,23,109,ks.po,,ks,,kashmiri,,,ks

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/km.po,23,109,44,0,0,0,0,23,109,km.po,,km,,khmer,,,km

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sv.po,23,109,103,0,0,0,0,23,109,sv.po,,sv,,swedish,,,sv

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ko.po,1,1,1,0,0,22,108,23,109,ko.po,,ko,,korean,,,ko

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sq.po,23,109,120,0,0,0,0,23,109,sq.po,,sq,,albanian,,,sq

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sr.po,23,109,107,0,0,0,0,23,109,sr.po,,sr,,serbian,,,sr

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,23,109,23,109,kk.po,,kk,,kazakh,,,kk

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,23,109,23,109,ka.po,,ka,,georgian,,,ka

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fi.po,19,96,65,0,0,4,13,23,109,fi.po,,fi,,finnish,,,fi

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,23,109,23,109,mai.po,,mai,,maithili,,,mai

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,23,109,23,109,fa.po,,fa,,persian,,,fa

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/fr.po,23,109,106,0,0,0,0,23,109,fr.po,,fr,,french,,,fr

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,23,109,23,109,ne.po,,ne,,nepali,,,ne

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,23,109,23,109,nb.po,,nb,,norwegian bokmål,,,nb

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/no.po,0,0,0,0,0,23,109,23,109,no.po,,no,,norwegian,,,no

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,23,109,23,109,nn.po,,nn,,norwegian nynorsk,,,nn

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nl.po,23,109,118,0,0,0,0,23,109,nl.po,,nl,,dutch,,,nl

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sk.po,23,109,94,0,0,0,0,23,109,sk.po,,sk,,slovak,,,sk

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bn_in.po,1,1,2,0,0,22,108,23,109,bn_in.po,,bn,in,bangla,,india,bn_in

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/id.po,23,109,99,0,0,0,0,23,109,id.po,,id,,indonesian,,,id

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,23,109,23,109,az.po,,az,,azerbaijani,,,az

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ia.po,20,83,83,0,0,3,26,23,109,ia.po,,ia,,interlingua,,,ia

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,23,109,23,109,zu.po,,zu,,zulu,,,zu

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ar.po,20,83,72,0,0,3,26,23,109,ar.po,,ar,,arabic,,,ar

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/as.po,1,1,2,0,0,22,108,23,109,as.po,,as,,assamese,,,as

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/kn.po,1,1,2,0,0,22,108,23,109,kn.po,,kn,,kannada,,,kn

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/it.po,15,64,61,8,45,0,0,23,109,it.po,,it,,italian,,,it

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,23,109,23,109,am.po,,am,,amharic,,,am

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,23,109,23,109,is.po,,is,,icelandic,,,is

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,23,109,23,109,vi.po,,vi,,vietnamese,,,vi

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,23,109,23,109,af.po,,af,,afrikaans,,,af

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,23,109,23,109,my.po,,my,,burmese,,,my

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mr.po,1,1,3,0,0,22,108,23,109,mr.po,,mr,,marathi,,,mr

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,23,109,23,109,ms.po,,ms,,malay,,,ms

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/en_gb.po,0,0,0,0,0,23,109,23,109,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,23,109,23,109,ur.po,,ur,,urdu,,,ur

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,23,109,23,109,mk.po,,mk,,macedonian,,,mk

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,23,109,23,109,mn.po,,mn,,mongolian,,,mn

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ml.po,1,1,2,0,0,22,108,23,109,ml.po,,ml,,malayalam,,,ml

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/uz.po,0,0,0,0,0,23,109,23,109,uz.po,,uz,,uzbek,,,uz

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/mg.po,0,0,0,0,0,23,109,23,109,mg.po,,mg,,malagasy,,,mg

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,23,109,23,109,he.po,,he,,hebrew,,,he

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hi.po,1,1,2,0,0,22,108,23,109,hi.po,,hi,,hindi,,,hi

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hu.po,23,109,89,0,0,0,0,23,109,hu.po,,hu,,hungarian,,,hu

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_tw.po,23,109,30,0,0,0,0,23,109,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,23,109,23,109,hr.po,,hr,,croatian,,,hr

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,23,109,23,109,hy.po,,hy,,armenian,,,hy

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pl.po,23,109,85,0,0,0,0,23,109,pl.po,,pl,,polish,,,pl

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pa.po,1,1,1,0,0,22,108,23,109,pa.po,,pa,,punjabi,,,pa

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tl.po,0,0,0,0,0,23,109,23,109,tl.po,,tl,,tagalog,,,tl

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pt.po,1,1,1,0,0,22,108,23,109,pt.po,,pt,,portuguese,,,pt

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,23,109,23,109,de_ch.po,,de,ch,german,,switzerland,de_ch

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/cs.po,23,109,85,0,0,0,0,23,109,cs.po,,cs,,czech,,,cs

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,23,109,23,109,cy.po,,cy,,welsh,,,cy

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ca.po,23,109,111,0,0,0,0,23,109,ca.po,,ca,,catalan,,,ca

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,23,109,23,109,nso.po,,nso,,northern sotho,,,nso

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/xh.po,0,0,0,0,0,23,109,23,109,xh.po,,xh,,xhosa,,,xh

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/or.po,1,1,3,0,0,22,108,23,109,or.po,,or,,odia,,,or

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/nds.po,1,1,1,0,0,22,108,23,109,nds.po,,nds,,low german,,,nds

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,,ach,,acoli,,,ach

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,23,109,23,109,ilo.po,,ilo,,iloko,,,ilo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ja.po,20,83,28,0,0,3,26,23,109,ja.po,,ja,,japanese,,,ja

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bs.po,1,1,1,0,0,22,108,23,109,bs.po,,bs,,bosnian,,,bs

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,23,109,23,109,br.po,,br,,breton,,,br

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/sr@latin.po,1,1,1,0,0,22,108,23,109,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,23,109,23,109,bo.po,,bo,,tibetan,,,bo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bn.po,2,2,3,0,0,21,107,23,109,bn.po,,bn,,bangla,,,bn

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,23,109,23,109,wo.po,,wo,,wolof,,,wo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ast.po,1,1,1,0,0,22,108,23,109,ast.po,,ast,,asturian,,,ast

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/uk.po,23,109,108,0,0,0,0,23,109,uk.po,,uk,,ukrainian,,,uk

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bg.po,8,23,25,0,0,15,86,23,109,bg.po,,bg,,bulgarian,,,bg

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,23,109,23,109,be.po,,be,,belarusian,,,be

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,23,109,23,109,ru_ru.po,,ru,ru,russian,,russia,ru_ru

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,23,109,23,109,ro.po,,ro,,romanian,,,ro

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ru.po,23,109,84,0,0,0,0,23,109,ru.po,,ru,,russian,,,ru

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/es.po,23,109,106,0,0,0,0,23,109,es.po,,es,,spanish,,,es

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,23,109,23,109,et.po,,et,,estonian,,,et

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/eu.po,7,13,13,0,0,16,96,23,109,eu.po,,eu,,basque,,,eu

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,23,109,23,109,en_us.po,,en,us,english,,united states,en_us

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,23,109,23,109,eo.po,,eo,,esperanto,,,eo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/el.po,1,1,1,0,0,22,108,23,109,el.po,,el,,greek,,,el

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,23,109,23,109,bal.po,,bal,,baluchi,,,bal

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_cn.po,23,109,39,0,0,0,0,23,109,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/dz.po,0,0,0,0,0,23,109,23,109,dz.po,,dz,,dzongkha,,,dz

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/da.po,23,109,103,0,0,0,0,23,109,da.po,,da,,danish,,,da

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/de.po,23,109,99,0,0,0,0,23,109,de.po,,de,,german,,,de

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/pt_br.po,23,109,104,0,0,0,0,23,109,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,23,109,23,109,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ta.po,1,1,2,0,0,22,108,23,109,ta.po,,ta,,tamil,,,ta

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/te.po,1,1,2,0,0,22,108,23,109,te.po,,te,,telugu,,,te

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,23,109,23,109,tg.po,,tg,,tajik,,,tg

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,23,109,23,109,th.po,,th,,thai,,,th

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,23,109,23,109,lt.po,,lt,,lithuanian,,,lt

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lv.po,1,1,1,0,0,22,108,23,109,lv.po,,lv,,latvian,,,lv

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/tr.po,23,109,91,0,0,0,0,23,109,tr.po,,tr,,turkish,,,tr

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,23,109,23,109,brx.po,,brx,,bodo,,,brx

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,23,109,23,109,lo.po,,lo,,lao,,,lo

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/la.po,0,0,0,0,0,23,109,23,109,la.po,,la,,latin,,,la

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,23,109,23,109,gl.po,,gl,,galician,,,gl

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,23,109,23,109,ga.po,,ga,,irish,,,ga

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/gu.po,1,1,3,0,0,22,108,23,109,gu.po,,gu,,gujarati,,,gu

+ python-meh-0.47-2.fc30.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,23,109,23,109,aln.po,,aln,,gheg albanian,,,aln

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,16,42,16,42,as.po,,as,,assamese,,,as

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,16,42,16,42,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,16,42,16,42,kn.po,,kn,,kannada,,,kn

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,16,42,16,42,it.po,,it,,italian,,,it

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,16,42,16,42,am.po,,am,,amharic,,,am

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,16,42,16,42,is.po,,is,,icelandic,,,is

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,16,42,16,42,vi.po,,vi,,vietnamese,,,vi

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,16,42,16,42,af.po,,af,,afrikaans,,,af

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mn.po,0,0,0,0,0,16,42,16,42,mn.po,,mn,,mongolian,,,mn

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,16,42,16,42,eo.po,,eo,,esperanto,,,eo

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/el.po,0,0,0,0,0,16,42,16,42,el.po,,el,,greek,,,el

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,16,42,16,42,my.po,,my,,burmese,,,my

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,16,42,16,42,ilo.po,,ilo,,iloko,,,ilo

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,16,42,16,42,bal.po,,bal,,baluchi,,,bal

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,16,42,16,42,kw_gb.po,,kw,gb,cornish,,united kingdom,kw_gb

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,16,42,16,42,mr.po,,mr,,marathi,,,mr

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/uk.po,16,42,42,0,0,0,0,16,42,uk.po,,uk,,ukrainian,,,uk

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_cn.po,6,16,6,0,0,10,26,16,42,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,16,42,16,42,ur.po,,ur,,urdu,,,ur

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,16,42,16,42,mk.po,,mk,,macedonian,,,mk

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,16,42,16,42,ml.po,,ml,,malayalam,,,ml

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,16,42,16,42,he.po,,he,,hebrew,,,he

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pt_br.po,6,16,13,0,0,10,26,16,42,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,16,42,16,42,hi.po,,hi,,hindi,,,hi

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hu.po,0,0,0,0,0,16,42,16,42,hu.po,,hu,,hungarian,,,hu

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/de.po,0,0,0,0,0,16,42,16,42,de.po,,de,,german,,,de

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,16,42,16,42,bn_in.po,,bn,in,bangla,,india,bn_in

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,16,42,16,42,hr.po,,hr,,croatian,,,hr

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,16,42,16,42,yo.po,,yo,,yoruba,,,yo

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,16,42,16,42,ta.po,,ta,,tamil,,,ta

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pl.po,16,42,39,0,0,0,0,16,42,pl.po,,pl,,polish,,,pl

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,16,42,16,42,ia.po,,ia,,interlingua,,,ia

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,16,42,16,42,te.po,,te,,telugu,,,te

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tg.po,0,0,0,0,0,16,42,16,42,tg.po,,tg,,tajik,,,tg

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,16,42,16,42,th.po,,th,,thai,,,th

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,16,42,16,42,pa.po,,pa,,punjabi,,,pa

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,16,42,16,42,lt.po,,lt,,lithuanian,,,lt

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,16,42,16,42,lv.po,,lv,,latvian,,,lv

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ja.po,0,0,0,0,0,16,42,16,42,ja.po,,ja,,japanese,,,ja

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/de_ch.po,0,0,0,0,0,16,42,16,42,de_ch.po,,de,ch,german,,switzerland,de_ch

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tr.po,0,0,0,0,0,16,42,16,42,tr.po,,tr,,turkish,,,tr

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,16,42,16,42,nso.po,,nso,,northern sotho,,,nso

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,16,42,16,42,tw.po,,tw,,twi,,,tw

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,16,42,16,42,pt.po,,pt,,portuguese,,,pt

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/en_gb.po,15,35,35,0,0,1,7,16,42,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,16,42,16,42,gl.po,,gl,,galician,,,gl

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/cs.po,16,42,41,0,0,0,0,16,42,cs.po,,cs,,czech,,,cs

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,16,42,16,42,ga.po,,ga,,irish,,,ga

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,16,42,16,42,cy.po,,cy,,welsh,,,cy

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,16,42,16,42,kw@uccor.po,uccor,kw,,cornish,,,kw@uccor

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ca.po,16,42,42,0,0,0,0,16,42,ca.po,,ca,,catalan,,,ca

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,16,42,16,42,brx.po,,brx,,bodo,,,brx

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,16,42,16,42,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,16,42,16,42,gu.po,,gu,,gujarati,,,gu

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,16,42,16,42,or.po,,or,,odia,,,or

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,16,42,16,42,ky.po,,ky,,kyrgyz,,,ky

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,16,42,16,42,sl.po,,sl,,slovenian,,,sl

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw.po,0,0,0,0,0,16,42,16,42,kw.po,,kw,,cornish,,,kw

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/si.po,0,0,0,0,0,16,42,16,42,si.po,,si,,sinhala,,,si

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sk.po,16,42,39,0,0,0,0,16,42,sk.po,,sk,,slovak,,,sk

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/km.po,0,0,0,0,0,16,42,16,42,km.po,,km,,khmer,,,km

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sv.po,6,16,17,0,0,10,26,16,42,sv.po,,sv,,swedish,,,sv

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ko.po,0,0,0,0,0,16,42,16,42,ko.po,,ko,,korean,,,ko

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,16,42,16,42,sq.po,,sq,,albanian,,,sq

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sr.po,0,0,0,0,0,16,42,16,42,sr.po,,sr,,serbian,,,sr

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,16,42,16,42,kk.po,,kk,,kazakh,,,kk

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,16,42,16,42,ka.po,,ka,,georgian,,,ka

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nds.po,0,0,0,0,0,16,42,16,42,nds.po,,nds,,low german,,,nds

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/da.po,16,42,45,0,0,0,0,16,42,da.po,,da,,danish,,,da

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,16,42,16,42,fi.po,,fi,,finnish,,,fi

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/mai.po,0,0,0,0,0,16,42,16,42,mai.po,,mai,,maithili,,,mai

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bs.po,0,0,0,0,0,16,42,16,42,bs.po,,bs,,bosnian,,,bs

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/br.po,0,0,0,0,0,16,42,16,42,br.po,,br,,breton,,,br

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,16,42,16,42,fa.po,,fa,,persian,,,fa

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,16,42,16,42,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bo.po,0,0,0,0,0,16,42,16,42,bo.po,,bo,,tibetan,,,bo

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,16,42,16,42,bn.po,,bn,,bangla,,,bn

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ast.po,0,0,0,0,0,16,42,16,42,ast.po,,ast,,asturian,,,ast

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,16,42,16,42,ms.po,,ms,,malay,,,ms

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,16,42,16,42,bg.po,,bg,,bulgarian,,,bg

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,0,0,16,42,16,42,fr.po,,fr,,french,,,fr

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,16,42,16,42,be.po,,be,,belarusian,,,be

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,16,42,16,42,ro.po,,ro,,romanian,,,ro

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,16,42,16,42,anp.po,,anp,,angika,,,anp

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ne.po,0,0,0,0,0,16,42,16,42,ne.po,,ne,,nepali,,,ne

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,16,42,16,42,nb.po,,nb,,norwegian bokmål,,,nb

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,16,42,16,42,nn.po,,nn,,norwegian nynorsk,,,nn

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,16,42,16,42,nl.po,,nl,,dutch,,,nl

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ru.po,0,0,0,0,0,16,42,16,42,ru.po,,ru,,russian,,,ru

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/es.po,16,42,40,0,0,0,0,16,42,es.po,,es,,spanish,,,es

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/id.po,0,0,0,0,0,16,42,16,42,id.po,,id,,indonesian,,,id

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,16,42,16,42,et.po,,et,,estonian,,,et

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,16,42,16,42,eu.po,,eu,,basque,,,eu

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,16,42,16,42,zu.po,,zu,,zulu,,,zu

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,16,42,16,42,kw@kkcor.po,kkcor,kw,,cornish,,,kw@kkcor

+ python-simpleline-1.4-2.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,16,42,16,42,ar.po,,ar,,arabic,,,ar

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/zh_cn.po,18,33,20,0,0,1,2,19,35,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/de_de.po,18,33,29,0,0,1,2,19,35,de_de.po,,de,de,german,,germany,de_de

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/tr.po,11,22,21,2,4,6,9,19,35,tr.po,,tr,,turkish,,,tr

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/bg.po,18,33,34,0,0,1,2,19,35,bg.po,,bg,,bulgarian,,,bg

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/fr_fr.po,18,33,39,0,0,1,2,19,35,fr_fr.po,,fr,fr,french,,france,fr_fr

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/it.po,18,33,38,0,0,1,2,19,35,it.po,,it,,italian,,,it

+ qemu-3.1.0-6.fc30.src.rpm.stats.csv,po/hu.po,11,22,21,2,4,6,9,19,35,hu.po,,hu,,hungarian,,,hu

+ quota-4.04-12.fc30.src.rpm.stats.csv,po/cs.po,484,3706,3856,48,875,29,124,561,4705,cs.po,,cs,,czech,,,cs

+ quota-4.04-12.fc30.src.rpm.stats.csv,po/pl.po,484,3706,3939,48,875,29,124,561,4705,pl.po,,pl,,polish,,,pl

+ quota-4.04-12.fc30.src.rpm.stats.csv,po/fr.po,233,1545,1955,213,1512,115,1648,561,4705,fr.po,,fr,,french,,,fr

+ quota-4.04-12.fc30.src.rpm.stats.csv,po/de.po,434,3354,3372,90,1169,37,182,561,4705,de.po,,de,,german,,,de

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,127,789,127,789,pa.po,,pa,,punjabi,,,pa

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,127,789,127,789,lt.po,,lt,,lithuanian,,,lt

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ia.po,0,0,0,0,0,127,789,127,789,ia.po,,ia,,interlingua,,,ia

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/gl.po,125,778,999,0,0,2,11,127,789,gl.po,,gl,,galician,,,gl

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,127,789,127,789,ka.po,,ka,,georgian,,,ka

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,127,789,127,789,he.po,,he,,hebrew,,,he

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,127,789,127,789,nn.po,,nn,,norwegian nynorsk,,,nn

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,127,789,127,789,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,127,789,127,789,ga.po,,ga,,irish,,,ga

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ko.po,127,789,706,0,0,0,0,127,789,ko.po,,ko,,korean,,,ko

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ru.po,127,789,795,0,0,0,0,127,789,ru.po,,ru,,russian,,,ru

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,127,789,127,789,eu.po,,eu,,basque,,,eu

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,127,789,127,789,fo.po,,fo,,faroese,,,fo

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,127,789,127,789,pt.po,,pt,,portuguese,,,pt

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/el.po,125,778,926,0,0,2,11,127,789,el.po,,el,,greek,,,el

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,127,789,127,789,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/en_gb.po,125,778,778,0,0,2,11,127,789,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/es_cl.po,0,0,0,0,0,125,778,125,778,es_cl.po,,es,cl,spanish,,chile,es_cl

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/id.po,125,778,817,0,0,2,11,127,789,id.po,,id,,indonesian,,,id

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,127,789,127,789,as.po,,as,,assamese,,,as

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,127,789,127,789,or.po,,or,,odia,,,or

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,127,789,127,789,wa.po,,wa,,walloon,,,wa

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/it.po,0,0,0,0,0,127,789,127,789,it.po,,it,,italian,,,it

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,127,789,127,789,lv.po,,lv,,latvian,,,lv

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,127,789,127,789,ta.po,,ta,,tamil,,,ta

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fr.po,18,110,116,0,0,109,679,127,789,fr.po,,fr,,french,,,fr

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,127,789,127,789,te.po,,te,,telugu,,,te

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,127,789,127,789,az.po,,az,,azerbaijani,,,az

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,127,789,127,789,nb.po,,nb,,norwegian bokmål,,,nb

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,127,789,127,789,kn.po,,kn,,kannada,,,kn

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,127,789,127,789,hi.po,,hi,,hindi,,,hi

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,127,789,127,789,th.po,,th,,thai,,,th

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_cn.po,88,511,122,0,0,39,278,127,789,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,127,789,127,789,ar.po,,ar,,arabic,,,ar

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,127,789,127,789,fa.po,,fa,,persian,,,fa

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/da.po,115,712,723,0,0,12,77,127,789,da.po,,da,,danish,,,da

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sl.po,125,778,775,0,0,2,11,127,789,sl.po,,sl,,slovenian,,,sl

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/nl.po,0,0,0,0,0,127,789,127,789,nl.po,,nl,,dutch,,,nl

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,127,789,127,789,bg.po,,bg,,bulgarian,,,bg

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sv.po,125,778,769,0,0,2,11,127,789,sv.po,,sv,,swedish,,,sv

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,127,789,127,789,bn_in.po,,bn,in,bangla,,india,bn_in

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,127,789,127,789,ml.po,,ml,,malayalam,,,ml

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/kk.po,0,0,0,0,0,127,789,127,789,kk.po,,kk,,kazakh,,,kk

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/cs.po,0,0,0,0,0,127,789,127,789,cs.po,,cs,,czech,,,cs

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,127,789,127,789,mr.po,,mr,,marathi,,,mr

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,127,789,127,789,sq.po,,sq,,albanian,,,sq

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/tr.po,125,778,710,0,0,2,11,127,789,tr.po,,tr,,turkish,,,tr

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,127,789,127,789,et.po,,et,,estonian,,,et

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/oc.po,0,0,0,0,0,127,789,127,789,oc.po,,oc,,occitan,,,oc

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hu.po,20,129,128,0,0,107,660,127,789,hu.po,,hu,,hungarian,,,hu

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/zh_tw.po,0,0,0,0,0,127,789,127,789,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pl.po,127,789,802,0,0,0,0,127,789,pl.po,,pl,,polish,,,pl

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/fi.po,0,0,0,0,0,127,789,127,789,fi.po,,fi,,finnish,,,fi

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,127,789,127,789,ms.po,,ms,,malay,,,ms

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/uk.po,127,789,879,0,0,0,0,127,789,uk.po,,uk,,ukrainian,,,uk

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ca.po,0,0,0,0,0,127,789,127,789,ca.po,,ca,,catalan,,,ca

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,127,789,127,789,hr.po,,hr,,croatian,,,hr

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/de.po,116,683,731,0,0,11,106,127,789,de.po,,de,,german,,,de

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,127,789,127,789,eo.po,,eo,,esperanto,,,eo

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,127,789,127,789,vi.po,,vi,,vietnamese,,,vi

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,127,789,127,789,gu.po,,gu,,gujarati,,,gu

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,127,789,127,789,cy.po,,cy,,welsh,,,cy

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/sk.po,0,0,0,0,0,127,789,127,789,sk.po,,sk,,slovak,,,sk

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/pt_br.po,127,789,971,0,0,0,0,127,789,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,127,789,127,789,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/es.po,125,778,1028,0,0,2,11,127,789,es.po,,es,,spanish,,,es

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,127,789,127,789,ro.po,,ro,,romanian,,,ro

+ realmd-0.16.3-19.fc30.src.rpm.stats.csv,po/ja.po,17,60,22,0,0,110,729,127,789,ja.po,,ja,,japanese,,,ja

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/is.po,86,261,233,0,0,0,0,86,261,is.po,,is,,icelandic,,,is

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/en_gb.po,86,261,261,0,0,0,0,86,261,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/et.po,81,253,212,0,0,0,0,81,253,et.po,,et,,estonian,,,et

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ar.po,81,253,249,0,0,0,0,81,253,ar.po,,ar,,arabic,,,ar

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sk.po,86,261,256,0,0,0,0,86,261,sk.po,,sk,,slovak,,,sk

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/mr.po,86,261,260,0,0,0,0,86,261,mr.po,,mr,,marathi,,,mr

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hi.po,86,261,292,0,0,0,0,86,261,hi.po,,hi,,hindi,,,hi

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/cs.po,86,261,259,0,0,0,0,86,261,cs.po,,cs,,czech,,,cs

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bn_in.po,86,261,290,0,0,0,0,86,261,bn_in.po,,bn,in,bangla,,india,bn_in

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/te.po,86,261,250,0,0,0,0,86,261,te.po,,te,,telugu,,,te

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lt.po,73,221,213,2,6,11,34,86,261,lt.po,,lt,,lithuanian,,,lt

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/de.po,86,261,211,0,0,0,0,86,261,de.po,,de,,german,,,de

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sq.po,2,5,4,0,0,84,256,86,261,sq.po,,sq,,albanian,,,sq

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/vi.po,72,218,335,3,9,11,34,86,261,vi.po,,vi,,vietnamese,,,vi

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sr.po,86,261,270,0,0,0,0,86,261,sr.po,,sr,,serbian,,,sr

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ur.po,71,216,397,4,11,11,34,86,261,ur.po,,ur,,urdu,,,ur

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/gl.po,52,132,157,1,1,33,128,86,261,gl.po,,gl,,galician,,,gl

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ilo.po,43,106,164,4,6,39,149,86,261,ilo.po,,ilo,,iloko,,,ilo

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ml.po,86,261,245,0,0,0,0,86,261,ml.po,,ml,,malayalam,,,ml

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lv.po,80,252,225,0,0,1,1,81,253,lv.po,,lv,,latvian,,,lv

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hy.po,73,221,198,2,6,11,34,86,261,hy.po,,hy,,armenian,,,hy

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/id.po,81,253,246,0,0,0,0,81,253,id.po,,id,,indonesian,,,id

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/tr.po,78,246,238,3,5,5,10,86,261,tr.po,,tr,,turkish,,,tr

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nb.po,86,261,221,0,0,0,0,86,261,nb.po,,nb,,norwegian bokmål,,,nb

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/or.po,86,261,300,0,0,0,0,86,261,or.po,,or,,odia,,,or

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/th.po,86,261,126,0,0,0,0,86,261,th.po,,th,,thai,,,th

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/mk.po,86,261,286,0,0,0,0,86,261,mk.po,,mk,,macedonian,,,mk

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sl.po,76,240,247,5,11,5,10,86,261,sl.po,,sl,,slovenian,,,sl

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bg.po,86,261,293,0,0,0,0,86,261,bg.po,,bg,,bulgarian,,,bg

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nl.po,86,261,228,0,0,0,0,86,261,nl.po,,nl,,dutch,,,nl

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/he.po,86,261,257,0,0,0,0,86,261,he.po,,he,,hebrew,,,he

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,86,261,86,261,ku.po,,ku,,kurdish,,,ku

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,86,261,86,261,lo.po,,lo,,lao,,,lo

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pl.po,86,261,259,0,0,0,0,86,261,pl.po,,pl,,polish,,,pl

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fa.po,81,253,277,0,0,0,0,81,253,fa.po,,fa,,persian,,,fa

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zh_tw.po,86,261,125,0,0,0,0,86,261,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ru.po,86,261,269,0,0,0,0,86,261,ru.po,,ru,,russian,,,ru

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pt_br.po,86,261,312,0,0,0,0,86,261,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hu.po,86,261,231,0,0,0,0,86,261,hu.po,,hu,,hungarian,,,hu

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,86,261,86,261,my.po,,my,,burmese,,,my

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ta.po,86,261,250,0,0,0,0,86,261,ta.po,,ta,,tamil,,,ta

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/el.po,86,261,271,0,0,0,0,86,261,el.po,,el,,greek,,,el

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/gu.po,86,261,275,0,0,0,0,86,261,gu.po,,gu,,gujarati,,,gu

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pt.po,86,261,315,0,0,0,0,86,261,pt.po,,pt,,portuguese,,,pt

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ms.po,86,261,249,0,0,0,0,86,261,ms.po,,ms,,malay,,,ms

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/da.po,86,261,224,0,0,0,0,86,261,da.po,,da,,danish,,,da

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sv.po,86,261,225,0,0,0,0,86,261,sv.po,,sv,,swedish,,,sv

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/sr@latin.po,86,261,270,0,0,0,0,86,261,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ko.po,86,261,247,0,0,0,0,86,261,ko.po,,ko,,korean,,,ko

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/kn.po,86,261,258,0,0,0,0,86,261,kn.po,,kn,,kannada,,,kn

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/as.po,86,261,304,0,0,0,0,86,261,as.po,,as,,assamese,,,as

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/am.po,73,221,240,2,6,11,34,86,261,am.po,,am,,amharic,,,am

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/uk.po,86,261,270,0,0,0,0,86,261,uk.po,,uk,,ukrainian,,,uk

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/nso.po,73,221,363,2,6,11,34,86,261,nso.po,,nso,,northern sotho,,,nso

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ka.po,69,205,191,4,11,13,45,86,261,ka.po,,ka,,georgian,,,ka

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zu.po,70,213,221,5,14,11,34,86,261,zu.po,,zu,,zulu,,,zu

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/si.po,86,261,300,0,0,0,0,86,261,si.po,,si,,sinhala,,,si

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ja.po,86,261,110,0,0,0,0,86,261,ja.po,,ja,,japanese,,,ja

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/be.po,71,216,211,4,11,11,34,86,261,be.po,,be,,belarusian,,,be

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/cy.po,86,261,263,0,0,0,0,86,261,cy.po,,cy,,welsh,,,cy

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ro.po,86,261,273,0,0,0,0,86,261,ro.po,,ro,,romanian,,,ro

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/af.po,73,221,184,2,6,11,34,86,261,af.po,,af,,afrikaans,,,af

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fi.po,86,261,190,0,0,0,0,86,261,fi.po,,fi,,finnish,,,fi

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/es.po,86,261,319,0,0,0,0,86,261,es.po,,es,,spanish,,,es

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/pa.po,86,261,276,0,0,0,0,86,261,pa.po,,pa,,punjabi,,,pa

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/ca.po,86,261,311,0,0,0,0,86,261,ca.po,,ca,,catalan,,,ca

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/bn.po,76,240,280,5,11,5,10,86,261,bn.po,,bn,,bangla,,,bn

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/hr.po,86,261,265,0,0,0,0,86,261,hr.po,,hr,,croatian,,,hr

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/zh_cn.po,86,261,129,0,0,0,0,86,261,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/it.po,86,261,296,0,0,0,0,86,261,it.po,,it,,italian,,,it

+ redhat-menus-12.0.2-15.fc30.src.rpm.stats.csv,po/fr.po,86,261,310,0,0,0,0,86,261,fr.po,,fr,,french,,,fr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ca/ca.po,57,249,302,0,0,492,7820,549,8069,ca.po,,ca,,catalan,,,ca

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/el/el.po,541,8027,8780,0,0,0,0,541,8027,el.po,,el,,greek,,,el

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ja/ja.po,443,4994,1486,3,43,0,0,446,5037,ja.po,,ja,,japanese,,,ja

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,218,1680,1917,1,25,322,6322,541,8027,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/uk/uk.po,446,5037,4364,0,0,0,0,446,5037,uk.po,,uk,,ukrainian,,,uk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/cs/cs.po,495,7510,6514,0,0,0,0,495,7510,cs.po,,cs,,czech,,,cs

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/fr/fr.po,441,5164,5813,0,0,100,2863,541,8027,fr.po,,fr,,french,,,fr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/oc/oc.po,123,221,254,0,0,313,4793,436,5014,oc.po,,oc,,occitan,,,oc

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/de/de.po,495,7510,7221,0,0,0,0,495,7510,de.po,,de,,german,,,de

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ro/ro.po,460,5744,5851,2,124,79,2159,541,8027,ro.po,,ro,,romanian,,,ro

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/ru/ru.po,436,5014,4281,0,0,0,0,436,5014,ru.po,,ru,,russian,,,ru

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/it/it.po,436,5014,4731,0,0,0,0,436,5014,it.po,,it,,italian,,,it

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/pt/pt.po,433,4983,5401,0,0,13,52,446,5035,pt.po,,pt,,portuguese,,,pt

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/da/da.po,431,4971,4307,6,118,70,2822,507,7911,da.po,,da,,danish,,,da

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/es/es.po,373,4601,5287,0,0,0,0,373,4601,es.po,,es,,spanish,,,es

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/sv/sv.po,373,4601,4188,0,0,0,0,373,4601,sv.po,,sv,,swedish,,,sv

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/eu/eu.po,446,5035,3771,0,0,0,0,446,5035,eu.po,,eu,,basque,,,eu

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/gl/gl.po,8,68,83,0,0,1,1,9,69,gl.po,,gl,,galician,,,gl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,436,5014,771,0,0,0,0,436,5014,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,help/sl/sl.po,429,4634,3998,2,236,15,165,446,5035,sl.po,,sl,,slovenian,,,sl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ms.po,282,1021,931,0,0,0,0,282,1021,ms.po,,ms,,malay,,,ms

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/is.po,312,1099,994,0,0,14,124,326,1223,is.po,,is,,icelandic,,,is

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ru.po,971,3734,3628,0,0,0,0,971,3734,ru.po,,ru,,russian,,,ru

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/si.po,924,3575,3591,0,0,1,11,925,3586,si.po,,si,,sinhala,,,si

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hu.po,969,3756,3448,0,0,0,0,969,3756,hu.po,,hu,,hungarian,,,hu

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,923,3940,4974,168,558,101,544,1192,5042,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/tr.po,969,3756,3240,0,0,0,0,969,3756,tr.po,,tr,,turkish,,,tr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sr.po,968,3746,3949,0,0,0,0,968,3746,sr.po,,sr,,serbian,,,sr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/et.po,1183,5003,4116,11,24,15,81,1209,5108,et.po,,et,,estonian,,,et

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/az.po,331,1233,1112,0,0,0,0,331,1233,az.po,,az,,azerbaijani,,,az

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ta.po,1070,4545,4013,0,0,0,0,1070,4545,ta.po,,ta,,tamil,,,ta

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/it.po,968,3746,3967,0,0,0,0,968,3746,it.po,,it,,italian,,,it

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/he.po,798,2988,2823,72,316,189,1202,1059,4506,he.po,,he,,hebrew,,,he

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pt.po,978,3763,4277,0,0,0,0,978,3763,pt.po,,pt,,portuguese,,,pt

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ca.po,968,3746,4593,0,0,0,0,968,3746,ca.po,,ca,,catalan,,,ca

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ko.po,971,3734,3216,0,0,0,0,971,3734,ko.po,,ko,,korean,,,ko

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/id.po,969,3756,3672,0,0,0,0,969,3756,id.po,,id,,indonesian,,,id

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ar.po,898,3436,3577,1,2,17,94,916,3532,ar.po,,ar,,arabic,,,ar

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/de.po,969,3756,3650,0,0,0,0,969,3756,de.po,,de,,german,,,de

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/be@latin.po,987,4372,4078,0,0,0,0,987,4372,be@latin.po,latin,be,,belarusian,,,be@latin

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/af.po,966,3821,3960,1,7,165,974,1132,4802,af.po,,af,,afrikaans,,,af

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nds.po,169,234,242,3,7,919,4404,1091,4645,nds.po,,nds,,low german,,,nds

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pl.po,969,3756,3871,0,0,0,0,969,3756,pl.po,,pl,,polish,,,pl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/as.po,1057,4505,3889,0,0,0,0,1057,4505,as.po,,as,,assamese,,,as

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hr.po,969,3756,3699,0,0,0,0,969,3756,hr.po,,hr,,croatian,,,hr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/kk.po,325,563,553,0,0,643,3156,968,3719,kk.po,,kk,,kazakh,,,kk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sl.po,917,3533,3655,0,0,0,0,917,3533,sl.po,,sl,,slovenian,,,sl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/cy.po,328,1249,1334,1,4,0,0,329,1253,cy.po,,cy,,welsh,,,cy

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/cs.po,969,3756,3798,0,0,0,0,969,3756,cs.po,,cs,,czech,,,cs

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fur.po,270,652,788,0,0,699,3104,969,3756,fur.po,,fur,,friulian,,,fur

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sv.po,969,3756,3593,0,0,0,0,969,3756,sv.po,,sv,,swedish,,,sv

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mr.po,1061,4517,4603,0,0,0,0,1061,4517,mr.po,,mr,,marathi,,,mr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_tw.po,969,3756,1564,0,0,0,0,969,3756,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/th.po,916,3532,1566,0,0,0,0,916,3532,th.po,,th,,thai,,,th

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/br.po,1047,4371,5029,47,218,37,208,1131,4797,br.po,,br,,breton,,,br

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/be.po,1033,4072,3896,0,0,0,0,1033,4072,be.po,,be,,belarusian,,,be

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gd.po,979,3769,5461,0,0,0,0,979,3769,gd.po,,gd,,scottish gaelic,,,gd

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ro.po,970,3751,4235,0,0,0,0,970,3751,ro.po,,ro,,romanian,,,ro

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/kn.po,1070,4545,4233,0,0,0,0,1070,4545,kn.po,,kn,,kannada,,,kn

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/da.po,969,3756,3503,0,0,0,0,969,3756,da.po,,da,,danish,,,da

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gl.po,968,3746,4530,0,0,0,0,968,3746,gl.po,,gl,,galician,,,gl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/en_ca.po,891,3889,3899,0,0,0,0,891,3889,en_ca.po,,en,ca,english,,canada,en_ca

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ga.po,311,596,708,53,177,559,3234,923,4007,ga.po,,ga,,irish,,,ga

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mn.po,185,453,430,0,0,107,669,292,1122,mn.po,,mn,,mongolian,,,mn

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/es.po,969,3756,4521,0,0,0,0,969,3756,es.po,,es,,spanish,,,es

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/uk.po,1032,4049,3887,0,0,0,0,1032,4049,uk.po,,uk,,ukrainian,,,uk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/te.po,966,3505,3176,0,0,67,567,1033,4072,te.po,,te,,telugu,,,te

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bs.po,968,3719,3704,0,0,0,0,968,3719,bs.po,,bs,,bosnian,,,bs

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/lt.po,969,3756,3425,0,0,0,0,969,3756,lt.po,,lt,,lithuanian,,,lt

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/vi.po,969,3756,5014,0,0,0,0,969,3756,vi.po,,vi,,vietnamese,,,vi

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nl.po,968,3746,3823,0,0,0,0,968,3746,nl.po,,nl,,dutch,,,nl

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pa.po,910,3393,3737,1,50,10,133,921,3576,pa.po,,pa,,punjabi,,,pa

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/eu.po,1131,4797,4194,0,0,0,0,1131,4797,eu.po,,eu,,basque,,,eu

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_hk.po,922,3569,1520,0,0,0,0,922,3569,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/or.po,336,705,839,8,17,726,3823,1070,4545,or.po,,or,,odia,,,or

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/am.po,94,136,175,0,0,133,713,227,849,am.po,,am,,amharic,,,am

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fa.po,767,2269,2462,0,0,266,1820,1033,4089,fa.po,,fa,,persian,,,fa

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nn.po,1169,4962,4808,0,0,0,0,1169,4962,nn.po,,nn,,norwegian nynorsk,,,nn

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/dz.po,826,3813,1411,0,0,0,0,826,3813,dz.po,,dz,,dzongkha,,,dz

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/nb.po,968,3746,3695,0,0,0,0,968,3746,nb.po,,nb,,norwegian bokmål,,,nb

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sr@latin.po,968,3746,3949,0,0,0,0,968,3746,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/pt_br.po,969,3756,4476,0,0,0,0,969,3756,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bg.po,1033,4089,4621,0,0,0,0,1033,4089,bg.po,,bg,,bulgarian,,,bg

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/rw.po,32,35,34,269,1394,91,189,392,1618,rw.po,,rw,,kinyarwanda,,,rw

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fr.po,969,3756,4578,0,0,0,0,969,3756,fr.po,,fr,,french,,,fr

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/mk.po,952,4142,4598,0,0,0,0,952,4142,mk.po,,mk,,macedonian,,,mk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/sk.po,968,3746,3856,0,0,0,0,968,3746,sk.po,,sk,,slovak,,,sk

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/bn_in.po,790,2502,2992,0,0,280,2043,1070,4545,bn_in.po,,bn,in,bangla,,india,bn_in

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/zh_cn.po,979,3769,1784,0,0,0,0,979,3769,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ml.po,60,75,81,3,3,184,665,247,743,ml.po,,ml,,malayalam,,,ml

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/eo.po,964,3697,3555,1,2,4,57,969,3756,eo.po,,eo,,esperanto,,,eo

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/hi.po,1070,4545,5515,0,0,0,0,1070,4545,hi.po,,hi,,hindi,,,hi

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ja.po,917,3533,1157,0,0,0,0,917,3533,ja.po,,ja,,japanese,,,ja

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ne.po,902,3936,3934,0,0,0,0,902,3936,ne.po,,ne,,nepali,,,ne

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/fi.po,951,3674,2989,4,16,13,56,968,3746,fi.po,,fi,,finnish,,,fi

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/lv.po,969,3756,3480,0,0,0,0,969,3756,lv.po,,lv,,latvian,,,lv

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/en_gb.po,1033,4072,4087,0,0,0,0,1033,4072,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/ps.po,533,1298,1468,0,0,390,2721,923,4019,ps.po,,ps,,pashto,,,ps

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/oc.po,970,3732,4429,1,2,1,16,972,3750,oc.po,,oc,,occitan,,,oc

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/gu.po,1057,4503,5122,8,15,4,19,1069,4537,gu.po,,gu,,gujarati,,,gu

+ rhythmbox-3.4.3-3.fc30.src.rpm.stats.csv,po/el.po,919,3596,3953,0,0,0,0,919,3596,el.po,,el,,greek,,,el

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/tr.po,408,1947,1730,14,60,442,2443,864,4450,tr.po,,tr,,turkish,,,tr

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ko.po,360,1812,1793,13,58,491,2580,864,4450,ko.po,,ko,,korean,,,ko

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sr.po,519,2618,2669,14,60,331,1772,864,4450,sr.po,,sr,,serbian,,,sr

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/id.po,69,451,439,0,0,795,3999,864,4450,id.po,,id,,indonesian,,,id

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/fi.po,451,2196,1841,14,60,399,2194,864,4450,fi.po,,fi,,finnish,,,fi

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sk.po,634,3195,3189,14,60,216,1195,864,4450,sk.po,,sk,,slovak,,,sk

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/de.po,695,3484,3513,14,60,155,906,864,4450,de.po,,de,,german,,,de

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/is.po,75,338,339,6,30,783,4082,864,4450,is.po,,is,,icelandic,,,is

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/br.po,142,451,593,6,26,716,3973,864,4450,br.po,,br,,breton,,,br

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ms.po,40,131,136,3,17,821,4302,864,4450,ms.po,,ms,,malay,,,ms

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sl.po,139,690,720,10,47,715,3713,864,4450,sl.po,,sl,,slovenian,,,sl

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sv.po,741,3798,3560,15,65,108,587,864,4450,sv.po,,sv,,swedish,,,sv

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ja.po,654,3297,1662,14,60,196,1093,864,4450,ja.po,,ja,,japanese,,,ja

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ar.po,99,268,283,2,3,763,4179,864,4450,ar.po,,ar,,arabic,,,ar

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/el.po,16,74,90,0,0,848,4376,864,4450,el.po,,el,,greek,,,el

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/sr@latin.po,519,2618,2669,14,60,331,1772,864,4450,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/te.po,23,72,69,1,4,840,4374,864,4450,te.po,,te,,telugu,,,te

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/cs.po,485,2429,2299,14,60,365,1961,864,4450,cs.po,,cs,,czech,,,cs

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/uk.po,741,3798,4156,15,65,108,587,864,4450,uk.po,,uk,,ukrainian,,,uk

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/vi.po,741,3798,6038,15,65,108,587,864,4450,vi.po,,vi,,vietnamese,,,vi

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pt_br.po,559,2776,3357,14,60,291,1614,864,4450,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/zh_cn.po,706,3558,1590,14,60,144,832,864,4450,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/nl.po,63,162,155,2,3,799,4285,864,4450,nl.po,,nl,,dutch,,,nl

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/fr.po,673,3378,4181,14,60,177,1012,864,4450,fr.po,,fr,,french,,,fr

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/es.po,654,3297,4067,14,60,196,1093,864,4450,es.po,,es,,spanish,,,es

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pt.po,361,1815,2294,13,58,490,2577,864,4450,pt.po,,pt,,portuguese,,,pt

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/eo.po,741,3798,3726,15,65,108,587,864,4450,eo.po,,eo,,esperanto,,,eo

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/da.po,309,1563,1493,12,55,543,2832,864,4450,da.po,,da,,danish,,,da

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/nb.po,230,1130,1103,10,50,624,3270,864,4450,nb.po,,nb,,norwegian bokmål,,,nb

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/it.po,703,3545,4054,14,60,147,845,864,4450,it.po,,it,,italian,,,it

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ru.po,494,2430,2381,14,60,356,1960,864,4450,ru.po,,ru,,russian,,,ru

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/zh_tw.po,519,2513,1064,14,60,331,1877,864,4450,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/ca.po,705,3531,4862,15,65,144,854,864,4450,ca.po,,ca,,catalan,,,ca

+ rpm-4.14.2.1-4.fc30.1.src.rpm.stats.csv,po/pl.po,741,3798,3928,15,65,108,587,864,4450,pl.po,,pl,,polish,,,pl

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ko.po,303,1624,1467,0,0,0,0,303,1624,ko.po,,ko,,korean,,,ko

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/gu.po,84,377,378,0,0,30,179,114,556,gu.po,,gu,,gujarati,,,gu

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hu.po,303,1624,1670,0,0,0,0,303,1624,hu.po,,hu,,hungarian,,,hu

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pl.po,303,1624,1843,0,0,0,0,303,1624,pl.po,,pl,,polish,,,pl

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_tw.po,303,1624,587,0,0,0,0,303,1624,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/el.po,303,1624,1809,0,0,0,0,303,1624,el.po,,el,,greek,,,el

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/gl.po,286,1558,2197,0,0,0,0,286,1558,gl.po,,gl,,galician,,,gl

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sk.po,303,1624,1749,0,0,0,0,303,1624,sk.po,,sk,,slovak,,,sk

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fur.po,303,1624,2261,0,0,0,0,303,1624,fur.po,,fur,,friulian,,,fur

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/kn.po,114,556,545,0,0,0,0,114,556,kn.po,,kn,,kannada,,,kn

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ne.po,97,332,314,154,867,52,425,303,1624,ne.po,,ne,,nepali,,,ne

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_cn.po,303,1624,609,0,0,0,0,303,1624,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ar.po,71,302,298,39,216,46,250,156,768,ar.po,,ar,,arabic,,,ar

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/nl.po,303,1624,1597,0,0,0,0,303,1624,nl.po,,nl,,dutch,,,nl

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/en_gb.po,303,1624,1624,0,0,0,0,303,1624,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sr.po,303,1624,1828,0,0,0,0,303,1624,sr.po,,sr,,serbian,,,sr

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hi.po,142,669,819,0,0,0,0,142,669,hi.po,,hi,,hindi,,,hi

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pt_br.po,303,1624,1918,0,0,0,0,303,1624,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/cs.po,303,1624,1662,0,0,0,0,303,1624,cs.po,,cs,,czech,,,cs

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/nb.po,296,1575,1691,2,16,5,33,303,1624,nb.po,,nb,,norwegian bokmål,,,nb

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/he.po,206,971,975,10,66,13,103,229,1140,he.po,,he,,hebrew,,,he

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/af.po,74,250,275,1,6,55,336,130,592,af.po,,af,,afrikaans,,,af

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/zh_hk.po,228,1129,402,0,0,0,0,228,1129,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fa.po,77,322,378,1,10,68,348,146,680,fa.po,,fa,,persian,,,fa

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/eu.po,303,1624,1714,0,0,0,0,303,1624,eu.po,,eu,,basque,,,eu

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ru.po,303,1624,1634,0,0,0,0,303,1624,ru.po,,ru,,russian,,,ru

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/as.po,229,1140,1231,0,0,0,0,229,1140,as.po,,as,,assamese,,,as

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/lv.po,303,1624,1498,0,0,0,0,303,1624,lv.po,,lv,,latvian,,,lv

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/th.po,142,669,340,0,0,0,0,142,669,th.po,,th,,thai,,,th

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/lt.po,303,1624,1376,0,0,0,0,303,1624,lt.po,,lt,,lithuanian,,,lt

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/da.po,303,1624,1599,0,0,0,0,303,1624,da.po,,da,,danish,,,da

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/oc.po,303,1624,2038,0,0,0,0,303,1624,oc.po,,oc,,occitan,,,oc

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/de.po,303,1624,1752,0,0,0,0,303,1624,de.po,,de,,german,,,de

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/es.po,303,1624,2144,0,0,0,0,303,1624,es.po,,es,,spanish,,,es

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fr.po,303,1624,2030,0,0,0,0,303,1624,fr.po,,fr,,french,,,fr

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ro.po,114,556,685,0,0,0,0,114,556,ro.po,,ro,,romanian,,,ro

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sl.po,303,1624,1791,0,0,0,0,303,1624,sl.po,,sl,,slovenian,,,sl

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ca.po,303,1624,2239,0,0,0,0,303,1624,ca.po,,ca,,catalan,,,ca

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pa.po,143,676,763,0,0,0,0,143,676,pa.po,,pa,,punjabi,,,pa

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ca@valencia.po,303,1624,2237,0,0,0,0,303,1624,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/eo.po,117,448,421,54,340,132,836,303,1624,eo.po,,eo,,esperanto,,,eo

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ta.po,142,669,622,0,0,0,0,142,669,ta.po,,ta,,tamil,,,ta

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/kk.po,49,115,112,0,0,254,1509,303,1624,kk.po,,kk,,kazakh,,,kk

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/et.po,142,669,598,0,0,0,0,142,669,et.po,,et,,estonian,,,et

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/vi.po,306,1635,2469,0,0,0,0,306,1635,vi.po,,vi,,vietnamese,,,vi

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bs.po,242,1218,1232,0,0,0,0,242,1218,bs.po,,bs,,bosnian,,,bs

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bg.po,303,1624,1887,0,0,0,0,303,1624,bg.po,,bg,,bulgarian,,,bg

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ja.po,241,1221,452,0,0,2,4,243,1225,ja.po,,ja,,japanese,,,ja

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/bn_in.po,114,556,608,0,0,0,0,114,556,bn_in.po,,bn,in,bangla,,india,bn_in

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sr@latin.po,303,1624,1828,0,0,0,0,303,1624,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/uk.po,290,1576,1574,0,0,0,0,290,1576,uk.po,,uk,,ukrainian,,,uk

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/pt.po,307,1636,1905,0,0,0,0,307,1636,pt.po,,pt,,portuguese,,,pt

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/te.po,118,577,523,0,0,0,0,118,577,te.po,,te,,telugu,,,te

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ug.po,143,676,667,0,0,0,0,143,676,ug.po,,ug,,uyghur,,,ug

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/hr.po,303,1624,1542,0,0,0,0,303,1624,hr.po,,hr,,croatian,,,hr

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/id.po,303,1624,1619,0,0,0,0,303,1624,id.po,,id,,indonesian,,,id

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/ml.po,101,344,303,0,0,202,1280,303,1624,ml.po,,ml,,malayalam,,,ml

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/tr.po,303,1624,1398,0,0,0,0,303,1624,tr.po,,tr,,turkish,,,tr

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/sv.po,303,1624,1670,0,0,0,0,303,1624,sv.po,,sv,,swedish,,,sv

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/tg.po,20,75,79,0,0,199,987,219,1062,tg.po,,tg,,tajik,,,tg

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/fi.po,135,525,460,81,544,87,555,303,1624,fi.po,,fi,,finnish,,,fi

+ rygel-0.36.2-3.fc30.src.rpm.stats.csv,po/it.po,303,1624,1856,0,0,0,0,303,1624,it.po,,it,,italian,,,it

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/net/de.po,178,726,658,0,0,1563,11281,1741,12007,de.po,,de,,german,,,de

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/zh_tw.po,31,187,41,18,67,79,270,128,524,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/zh_cn.po,31,187,40,18,67,79,270,128,524,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/tr.po,128,524,482,0,0,0,0,128,524,tr.po,,tr,,turkish,,,tr

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/sv.po,31,187,182,18,67,79,270,128,524,sv.po,,sv,,swedish,,,sv

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ru.po,31,187,185,18,67,79,270,128,524,ru.po,,ru,,russian,,,ru

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/pt_br.po,31,187,221,18,67,79,270,128,524,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/pl.po,31,187,189,18,67,79,270,128,524,pl.po,,pl,,polish,,,pl

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/nl.po,31,187,185,18,67,79,270,128,524,nl.po,,nl,,dutch,,,nl

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/nb.po,34,212,191,18,67,76,245,128,524,nb.po,,nb,,norwegian bokmål,,,nb

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ko.po,31,187,148,18,67,79,270,128,524,ko.po,,ko,,korean,,,ko

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ja.po,128,524,168,0,0,0,0,128,524,ja.po,,ja,,japanese,,,ja

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/it.po,31,187,205,18,67,79,270,128,524,it.po,,it,,italian,,,it

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/hu.po,31,187,168,18,67,79,270,128,524,hu.po,,hu,,hungarian,,,hu

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/fr.po,128,524,679,0,0,0,0,128,524,fr.po,,fr,,french,,,fr

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/fi.po,34,212,172,18,67,76,245,128,524,fi.po,,fi,,finnish,,,fi

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/es.po,31,187,265,18,67,79,270,128,524,es.po,,es,,spanish,,,es

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/de.po,34,214,204,19,70,75,240,128,524,de.po,,de,,german,,,de

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/da.po,34,212,196,18,67,76,245,128,524,da.po,,da,,danish,,,da

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/cs.po,31,187,174,18,67,79,270,128,524,cs.po,,cs,,czech,,,cs

+ samba-4.10.2-0.fc30.src.rpm.stats.csv,source3/locale/pam_winbind/ar.po,31,187,221,18,67,79,270,128,524,ar.po,,ar,,arabic,,,ar

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/nl.po,1175,5623,5862,5,19,0,0,1180,5642,nl.po,,nl,,dutch,,,nl

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/de.po,901,4386,4208,100,282,179,974,1180,5642,de.po,,de,,german,,,de

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en@boldquot.po,1180,5642,5642,0,0,0,0,1180,5642,en@boldquot.po,boldquot,en,,english,,,en@boldquot

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/uk.po,1180,5642,5563,0,0,0,0,1180,5642,uk.po,,uk,,ukrainian,,,uk

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/es.po,862,4257,5337,117,296,201,1089,1180,5642,es.po,,es,,spanish,,,es

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/bg.po,624,3240,3316,214,561,342,1841,1180,5642,bg.po,,bg,,bulgarian,,,bg

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/eo.po,795,3969,4553,149,397,236,1276,1180,5642,eo.po,,eo,,esperanto,,,eo

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en_gb.po,821,4118,4069,137,363,222,1161,1180,5642,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/pt.po,261,872,1005,163,521,756,4249,1180,5642,pt.po,,pt,,portuguese,,,pt

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/fi.po,626,3244,2230,210,558,344,1840,1180,5642,fi.po,,fi,,finnish,,,fi

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/ru.po,591,2772,2627,195,530,394,2340,1180,5642,ru.po,,ru,,russian,,,ru

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/nb.po,202,611,565,189,511,789,4520,1180,5642,nb.po,,nb,,norwegian bokmål,,,nb

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/fr.po,894,4340,5110,102,274,184,1028,1180,5642,fr.po,,fr,,french,,,fr

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/da.po,679,3501,3192,195,528,306,1613,1180,5642,da.po,,da,,danish,,,da

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/hu.po,187,344,339,131,323,862,4975,1180,5642,hu.po,,hu,,hungarian,,,hu

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/sv.po,1016,4798,4171,71,253,93,591,1180,5642,sv.po,,sv,,swedish,,,sv

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/gl.po,862,4257,5242,117,296,201,1089,1180,5642,gl.po,,gl,,galician,,,gl

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/en@quot.po,1180,5642,5642,0,0,0,0,1180,5642,en@quot.po,quot,en,,english,,,en@quot

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/cs.po,589,3113,2868,225,589,366,1940,1180,5642,cs.po,,cs,,czech,,,cs

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/ja.po,674,2560,698,114,279,392,2803,1180,5642,ja.po,,ja,,japanese,,,ja

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/it.po,784,3924,4694,158,425,238,1293,1180,5642,it.po,,it,,italian,,,it

+ sane-backends-1.0.27-23.fc30.src.rpm.stats.csv,po/pl.po,893,4325,4058,103,289,184,1028,1180,5642,pl.po,,pl,,polish,,,pl

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/da.po,126,683,670,10,98,1,7,137,788,da.po,,da,,danish,,,da

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ru.po,126,683,711,10,98,1,7,137,788,ru.po,,ru,,russian,,,ru

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/fr.po,137,788,942,0,0,0,0,137,788,fr.po,,fr,,french,,,fr

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/sk.po,137,788,824,0,0,0,0,137,788,sk.po,,sk,,slovak,,,sk

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/pt_br.po,137,788,937,0,0,0,0,137,788,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/eu.po,17,66,72,5,30,115,692,137,788,eu.po,,eu,,basque,,,eu

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/uk.po,137,788,847,0,0,0,0,137,788,uk.po,,uk,,ukrainian,,,uk

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ca.po,77,443,569,12,94,48,251,137,788,ca.po,,ca,,catalan,,,ca

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/id.po,77,443,462,12,94,48,251,137,788,id.po,,id,,indonesian,,,id

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/it.po,75,421,468,10,71,52,296,137,788,it.po,,it,,italian,,,it

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/af.po,32,133,128,36,168,69,487,137,788,af.po,,af,,afrikaans,,,af

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/sr.po,126,683,709,10,98,1,7,137,788,sr.po,,sr,,serbian,,,sr

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/nl.po,137,788,822,0,0,0,0,137,788,nl.po,,nl,,dutch,,,nl

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/hr.po,137,788,834,0,0,0,0,137,788,hr.po,,hr,,croatian,,,hr

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/vi.po,137,788,1177,0,0,0,0,137,788,vi.po,,vi,,vietnamese,,,vi

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/pt.po,75,421,478,10,71,52,296,137,788,pt.po,,pt,,portuguese,,,pt

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/he.po,10,58,60,29,120,98,610,137,788,he.po,,he,,hebrew,,,he

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/hu.po,126,683,659,10,98,1,7,137,788,hu.po,,hu,,hungarian,,,hu

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/nb.po,137,788,742,0,0,0,0,137,788,nb.po,,nb,,norwegian bokmål,,,nb

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/sv.po,137,788,775,0,0,0,0,137,788,sv.po,,sv,,swedish,,,sv

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/zh_tw.po,77,443,167,12,94,48,251,137,788,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/zh_cn.po,115,581,253,14,152,8,55,137,788,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ast.po,75,421,523,10,71,52,296,137,788,ast.po,,ast,,asturian,,,ast

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ro.po,69,385,430,13,85,55,318,137,788,ro.po,,ro,,romanian,,,ro

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/et.po,126,683,591,10,98,1,7,137,788,et.po,,et,,estonian,,,et

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ga.po,137,788,928,0,0,0,0,137,788,ga.po,,ga,,irish,,,ga

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/sl.po,77,443,443,12,94,48,251,137,788,sl.po,,sl,,slovenian,,,sl

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/fi.po,126,683,601,10,98,1,7,137,788,fi.po,,fi,,finnish,,,fi

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/el.po,77,443,489,14,99,46,246,137,788,el.po,,el,,greek,,,el

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/pl.po,77,443,471,12,94,48,251,137,788,pl.po,,pl,,polish,,,pl

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/cs.po,137,788,779,0,0,0,0,137,788,cs.po,,cs,,czech,,,cs

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/de.po,114,611,639,8,84,15,93,137,788,de.po,,de,,german,,,de

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/es.po,137,788,934,0,0,0,0,137,788,es.po,,es,,spanish,,,es

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ja.po,102,564,312,18,159,17,65,137,788,ja.po,,ja,,japanese,,,ja

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/eo.po,126,683,674,10,98,1,7,137,788,eo.po,,eo,,esperanto,,,eo

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/bg.po,137,788,930,0,0,0,0,137,788,bg.po,,bg,,bulgarian,,,bg

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/ko.po,10,58,64,29,120,98,610,137,788,ko.po,,ko,,korean,,,ko

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/tr.po,77,443,398,12,94,48,251,137,788,tr.po,,tr,,turkish,,,tr

+ sed-4.5-3.fc30.src.rpm.stats.csv,po/gl.po,84,471,585,11,89,42,228,137,788,gl.po,,gl,,galician,,,gl

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/de.po,1165,15441,15138,63,1024,18,323,1246,16788,de.po,,de,,german,,,de

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/da.po,284,2133,1878,38,299,924,14356,1246,16788,da.po,,da,,danish,,,da

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/zh_cn.po,992,10751,2893,77,1427,177,4610,1246,16788,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/pl.po,305,1956,1735,223,1506,718,13326,1246,16788,pl.po,,pl,,polish,,,pl

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/it.po,1131,15246,15351,68,1166,47,376,1246,16788,it.po,,it,,italian,,,it

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/ru.po,1132,15289,13173,67,1123,47,376,1246,16788,ru.po,,ru,,russian,,,ru

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/fr.po,1134,15368,17304,65,1044,47,376,1246,16788,fr.po,,fr,,french,,,fr

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,man/po/sv.po,413,2261,2021,271,2232,562,12295,1246,16788,sv.po,,sv,,swedish,,,sv

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ro.po,210,1033,1131,183,1243,206,1817,599,4093,ro.po,,ro,,romanian,,,ro

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/fi.po,210,1033,898,185,1253,204,1807,599,4093,fi.po,,fi,,finnish,,,fi

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nn.po,147,711,723,220,1358,232,2024,599,4093,nn.po,,nn,,norwegian nynorsk,,,nn

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/de.po,554,3657,3684,33,333,12,103,599,4093,de.po,,de,,german,,,de

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/cs.po,576,3819,3604,17,216,6,58,599,4093,cs.po,,cs,,czech,,,cs

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sk.po,386,2403,2424,99,755,114,935,599,4093,sk.po,,sk,,slovak,,,sk

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/eu.po,419,2689,2480,94,729,86,675,599,4093,eu.po,,eu,,basque,,,eu

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/gl.po,210,1033,1310,185,1253,204,1807,599,4093,gl.po,,gl,,galician,,,gl

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pt.po,552,3644,4268,35,346,12,103,599,4093,pt.po,,pt,,portuguese,,,pt

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nl.po,582,3890,4176,13,167,4,36,599,4093,nl.po,,nl,,dutch,,,nl

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pt_br.po,496,3263,3583,55,486,48,344,599,4093,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ca.po,552,3644,4509,36,353,11,96,599,4093,ca.po,,ca,,catalan,,,ca

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/da.po,552,3644,3450,35,346,12,103,599,4093,da.po,,da,,danish,,,da

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ja.po,554,3657,2046,33,333,12,103,599,4093,ja.po,,ja,,japanese,,,ja

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/uk.po,210,1033,1046,185,1253,204,1807,599,4093,uk.po,,uk,,ukrainian,,,uk

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/bs.po,36,127,126,107,649,456,3317,599,4093,bs.po,,bs,,bosnian,,,bs

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

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/es.po,495,3246,4010,56,491,48,356,599,4093,es.po,,es,,spanish,,,es

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/fr.po,0,0,0,115,598,484,3495,599,4093,fr.po,,fr,,french,,,fr

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/el.po,548,3615,3973,38,365,13,113,599,4093,el.po,,el,,greek,,,el

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/tr.po,229,1172,1094,202,1527,168,1394,599,4093,tr.po,,tr,,turkish,,,tr

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/he.po,50,197,208,179,1078,370,2818,599,4093,he.po,,he,,hebrew,,,he

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ru.po,583,3895,3992,12,162,4,36,599,4093,ru.po,,ru,,russian,,,ru

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/it.po,229,1172,1375,194,1487,176,1434,599,4093,it.po,,it,,italian,,,it

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/nb.po,583,3895,3926,12,162,4,36,599,4093,nb.po,,nb,,norwegian bokmål,,,nb

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/km.po,184,918,680,209,1358,206,1817,599,4093,km.po,,km,,khmer,,,km

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/pl.po,210,1033,1117,185,1253,204,1807,599,4093,pl.po,,pl,,polish,,,pl

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ko.po,301,1719,1630,134,1055,164,1319,599,4093,ko.po,,ko,,korean,,,ko

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/vi.po,583,3895,5510,12,162,4,36,599,4093,vi.po,,vi,,vietnamese,,,vi

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sq.po,7,28,31,83,495,509,3570,599,4093,sq.po,,sq,,albanian,,,sq

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/ne.po,210,1033,1119,183,1243,206,1817,599,4093,ne.po,,ne,,nepali,,,ne

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/dz.po,209,1031,530,184,1245,206,1817,599,4093,dz.po,,dz,,dzongkha,,,dz

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/kk.po,583,3895,3787,12,162,4,36,599,4093,kk.po,,kk,,kazakh,,,kk

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/id.po,182,887,941,208,1370,209,1836,599,4093,id.po,,id,,indonesian,,,id

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/hu.po,210,1033,958,185,1253,204,1807,599,4093,hu.po,,hu,,hungarian,,,hu

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/zh_tw.po,160,786,322,213,1323,226,1984,599,4093,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/sv.po,482,3139,3081,52,461,65,493,599,4093,sv.po,,sv,,swedish,,,sv

+ shadow-utils-4.6-8.fc30.src.rpm.stats.csv,po/zh_cn.po,546,3609,1581,38,371,15,113,599,4093,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pt_br.po,770,1986,2474,0,0,0,0,770,1986,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ja.po,654,1659,1453,0,0,116,327,770,1986,ja.po,,ja,,japanese,,,ja

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/af.po,677,1708,980,0,0,93,278,770,1986,af.po,,af,,afrikaans,,,af

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/da.po,727,1864,1058,0,0,43,122,770,1986,da.po,,da,,danish,,,da

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nl.po,637,1616,1017,0,0,133,370,770,1986,nl.po,,nl,,dutch,,,nl

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/he.po,720,1845,2222,0,0,50,141,770,1986,he.po,,he,,hebrew,,,he

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,0,0,654,1669,654,1669,rw.po,,rw,,kinyarwanda,,,rw

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sq.po,547,1352,1516,0,0,223,634,770,1986,sq.po,,sq,,albanian,,,sq

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/tr.po,740,1905,2001,0,0,30,81,770,1986,tr.po,,tr,,turkish,,,tr

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,770,1986,770,1986,mr.po,,mr,,marathi,,,mr

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_cn.po,770,1986,1681,0,0,0,0,770,1986,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/de.po,770,1986,976,0,0,0,0,770,1986,de.po,,de,,german,,,de

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,770,1986,770,1986,be.po,,be,,belarusian,,,be

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/it.po,770,1986,2118,0,0,0,0,770,1986,it.po,,it,,italian,,,it

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,770,1986,770,1986,bn_in.po,,bn,in,bangla,,india,bn_in

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,770,1986,770,1986,te.po,,te,,telugu,,,te

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/vi.po,567,1405,2121,0,0,203,581,770,1986,vi.po,,vi,,vietnamese,,,vi

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/cs.po,770,1986,2168,0,0,0,0,770,1986,cs.po,,cs,,czech,,,cs

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ky.po,0,0,0,0,0,770,1986,770,1986,ky.po,,ky,,kyrgyz,,,ky

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ka.po,210,530,539,0,0,560,1456,770,1986,ka.po,,ka,,georgian,,,ka

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ast.po,214,524,668,0,0,556,1462,770,1986,ast.po,,ast,,asturian,,,ast

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/kk.po,770,1986,2055,0,0,0,0,770,1986,kk.po,,kk,,kazakh,,,kk

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/eo.po,426,975,672,0,0,344,1011,770,1986,eo.po,,eo,,esperanto,,,eo

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hr.po,770,1986,2136,0,0,0,0,770,1986,hr.po,,hr,,croatian,,,hr

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/cy.po,148,351,365,0,0,622,1635,770,1986,cy.po,,cy,,welsh,,,cy

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/bg.po,637,1616,2353,0,0,133,370,770,1986,bg.po,,bg,,bulgarian,,,bg

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ms.po,262,629,629,0,0,508,1357,770,1986,ms.po,,ms,,malay,,,ms

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,770,1986,770,1986,hi.po,,hi,,hindi,,,hi

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/oc.po,701,1781,1980,0,0,69,205,770,1986,oc.po,,oc,,occitan,,,oc

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sr.po,740,1905,2053,0,0,30,81,770,1986,sr.po,,sr,,serbian,,,sr

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/az.po,135,325,363,0,0,635,1661,770,1986,az.po,,az,,azerbaijani,,,az

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pt.po,701,1790,2074,0,0,69,196,770,1986,pt.po,,pt,,portuguese,,,pt

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ko.po,760,1960,2041,0,0,10,26,770,1986,ko.po,,ko,,korean,,,ko

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ro.po,608,1533,1669,0,0,162,453,770,1986,ro.po,,ro,,romanian,,,ro

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pl.po,770,1986,2209,0,0,0,0,770,1986,pl.po,,pl,,polish,,,pl

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,770,1986,770,1986,th.po,,th,,thai,,,th

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ga.po,770,1986,2027,0,0,0,0,770,1986,ga.po,,ga,,irish,,,ga

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/be@latin.po,561,1387,1435,0,0,0,0,561,1387,be@latin.po,latin,be,,belarusian,,,be@latin

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,770,1986,770,1986,ta.po,,ta,,tamil,,,ta

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_tw.po,770,1986,1730,0,0,0,0,770,1986,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/lv.po,654,1659,1647,0,0,116,327,770,1986,lv.po,,lv,,latvian,,,lv

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sk.po,769,1983,2107,0,0,1,3,770,1986,sk.po,,sk,,slovak,,,sk

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,770,1986,770,1986,or.po,,or,,odia,,,or

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/eu.po,729,1869,1852,0,0,41,117,770,1986,eu.po,,eu,,basque,,,eu

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ar.po,607,1531,1597,0,0,163,455,770,1986,ar.po,,ar,,arabic,,,ar

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fur.po,0,0,0,0,0,770,1986,770,1986,fur.po,,fur,,friulian,,,fur

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/lt.po,606,1528,1650,0,0,164,458,770,1986,lt.po,,lt,,lithuanian,,,lt

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fi.po,723,1850,1122,0,0,47,136,770,1986,fi.po,,fi,,finnish,,,fi

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fo.po,594,1489,1374,0,0,176,497,770,1986,fo.po,,fo,,faroese,,,fo

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ca.po,770,1986,2534,0,0,0,0,770,1986,ca.po,,ca,,catalan,,,ca

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/en_gb.po,757,1951,1951,0,0,13,35,770,1986,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,770,1986,770,1986,fa.po,,fa,,persian,,,fa

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,770,1986,770,1986,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/id.po,770,1986,2087,0,0,0,0,770,1986,id.po,,id,,indonesian,,,id

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,770,1986,770,1986,kn.po,,kn,,kannada,,,kn

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,770,1986,770,1986,ml.po,,ml,,malayalam,,,ml

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,770,1986,770,1986,wa.po,,wa,,walloon,,,wa

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,770,1986,770,1986,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/el.po,696,1776,1947,0,0,74,210,770,1986,el.po,,el,,greek,,,el

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,770,1986,770,1986,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sv.po,770,1986,1107,0,0,0,0,770,1986,sv.po,,sv,,swedish,,,sv

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/uk.po,770,1986,2133,0,0,0,0,770,1986,uk.po,,uk,,ukrainian,,,uk

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,770,1986,770,1986,et.po,,et,,estonian,,,et

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nb.po,523,1288,807,0,0,247,698,770,1986,nb.po,,nb,,norwegian bokmål,,,nb

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,770,1986,770,1986,gu.po,,gu,,gujarati,,,gu

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/es.po,765,1974,2727,0,0,5,12,770,1986,es.po,,es,,spanish,,,es

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/pa.po,0,0,0,0,0,770,1986,770,1986,pa.po,,pa,,punjabi,,,pa

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,770,1986,770,1986,as.po,,as,,assamese,,,as

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/gl.po,674,1713,2329,0,0,96,273,770,1986,gl.po,,gl,,galician,,,gl

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/nn.po,547,1352,844,0,0,223,634,770,1986,nn.po,,nn,,norwegian nynorsk,,,nn

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ia.po,701,1790,2116,0,0,69,196,770,1986,ia.po,,ia,,interlingua,,,ia

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/fr.po,770,1986,2193,0,0,0,0,770,1986,fr.po,,fr,,french,,,fr

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/hu.po,770,1986,1608,0,0,0,0,770,1986,hu.po,,hu,,hungarian,,,hu

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/sl.po,677,1721,2161,0,0,93,265,770,1986,sl.po,,sl,,slovenian,,,sl

+ shared-mime-info-1.12-2.fc30.src.rpm.stats.csv,po/ru.po,760,1960,2041,0,0,10,26,770,1986,ru.po,,ru,,russian,,,ru

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,19,50,25,0,0,93,1306,112,1356,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/uk/uk.po,24,128,145,0,0,88,1228,112,1356,uk.po,,uk,,ukrainian,,,uk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sv/sv.po,111,1353,1198,0,0,0,0,111,1353,sv.po,,sv,,swedish,,,sv

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sr/sr.po,0,0,0,0,0,112,1356,112,1356,sr.po,,sr,,serbian,,,sr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sl/sl.po,12,42,40,0,0,100,1314,112,1356,sl.po,,sl,,slovenian,,,sl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/sk/sk.po,67,335,308,0,0,45,1021,112,1356,sk.po,,sk,,slovak,,,sk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ru/ru.po,24,128,115,0,0,88,1228,112,1356,ru.po,,ru,,russian,,,ru

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ro/ro.po,111,1353,1327,0,0,0,0,111,1353,ro.po,,ro,,romanian,,,ro

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,111,1353,1455,0,0,0,0,111,1353,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/pl/pl.po,111,1353,1080,0,0,0,0,111,1353,pl.po,,pl,,polish,,,pl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/nl/nl.po,1,1,5,0,0,111,1355,112,1356,nl.po,,nl,,dutch,,,nl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/nb/nb.po,1,1,6,0,0,111,1355,112,1356,nb.po,,nb,,norwegian bokmål,,,nb

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ku/ku.po,13,19,24,0,0,99,1337,112,1356,ku.po,,ku,,kurdish,,,ku

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ja/ja.po,13,45,25,0,0,99,1311,112,1356,ja.po,,ja,,japanese,,,ja

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/it/it.po,28,83,106,0,0,84,1273,112,1356,it.po,,it,,italian,,,it

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ia/ia.po,33,81,95,0,0,79,1275,112,1356,ia.po,,ia,,interlingua,,,ia

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/hu/hu.po,111,1353,1127,0,0,0,0,111,1353,hu.po,,hu,,hungarian,,,hu

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/hr/hr.po,27,246,204,0,0,85,1110,112,1356,hr.po,,hr,,croatian,,,hr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/gl/gl.po,111,1353,1309,0,0,0,0,111,1353,gl.po,,gl,,galician,,,gl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/fr/fr.po,111,1353,1527,0,0,0,0,111,1353,fr.po,,fr,,french,,,fr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/fi/fi.po,14,39,36,0,0,98,1317,112,1356,fi.po,,fi,,finnish,,,fi

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/eu/eu.po,24,128,108,0,0,88,1228,112,1356,eu.po,,eu,,basque,,,eu

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/es/es.po,111,1353,1502,0,0,0,0,111,1353,es.po,,es,,spanish,,,es

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,24,128,134,0,0,88,1228,112,1356,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/de/de.po,111,1353,1298,0,0,0,0,111,1353,de.po,,de,,german,,,de

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/da/da.po,111,1353,1238,0,0,0,0,111,1353,da.po,,da,,danish,,,da

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/cs/cs.po,111,1353,1196,0,0,0,0,111,1353,cs.po,,cs,,czech,,,cs

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ca/ca.po,111,1353,1446,0,0,0,0,111,1353,ca.po,,ca,,catalan,,,ca

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/bg/bg.po,24,128,133,0,0,88,1228,112,1356,bg.po,,bg,,bulgarian,,,bg

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,help/ar/ar.po,24,128,110,0,0,88,1228,112,1356,ar.po,,ar,,arabic,,,ar

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_tw.po,184,839,298,0,0,0,0,184,839,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_hk.po,140,568,200,0,0,5,21,145,589,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/zh_cn.po,192,847,336,0,0,0,0,192,847,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/vi.po,95,366,505,0,0,50,223,145,589,vi.po,,vi,,vietnamese,,,vi

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/uz.po,38,69,77,0,0,107,520,145,589,uz.po,,uz,,uzbek,,,uz

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ur.po,11,11,26,0,0,134,578,145,589,ur.po,,ur,,urdu,,,ur

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/uk.po,184,839,852,0,0,0,0,184,839,uk.po,,uk,,ukrainian,,,uk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ug.po,126,435,414,0,0,19,154,145,589,ug.po,,ug,,uyghur,,,ug

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/tr.po,184,839,779,0,0,0,0,184,839,tr.po,,tr,,turkish,,,tr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/th.po,138,509,316,0,0,7,80,145,589,th.po,,th,,thai,,,th

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/te.po,89,349,301,0,0,56,240,145,589,te.po,,te,,telugu,,,te

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ta.po,18,31,48,0,0,127,558,145,589,ta.po,,ta,,tamil,,,ta

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sv.po,184,839,826,0,0,0,0,184,839,sv.po,,sv,,swedish,,,sv

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sr@latin.po,192,847,831,0,0,0,0,192,847,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sr.po,184,839,823,0,0,0,0,184,839,sr.po,,sr,,serbian,,,sr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sq.po,136,506,616,0,0,9,83,145,589,sq.po,,sq,,albanian,,,sq

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sl.po,184,839,882,0,0,0,0,184,839,sl.po,,sl,,slovenian,,,sl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sk.po,184,839,849,0,0,0,0,184,839,sk.po,,sk,,slovak,,,sk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/shn.po,4,4,8,0,0,141,585,145,589,shn.po,,shn,,shan,,,shn

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/se.po,22,29,33,0,0,123,560,145,589,se.po,,se,,northern sami,,,se

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/sd.po,60,121,135,0,0,85,468,145,589,sd.po,,sd,,sindhi,,,sd

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ru.po,184,839,769,0,0,0,0,184,839,ru.po,,ru,,russian,,,ru

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ro.po,184,839,947,0,0,0,0,184,839,ro.po,,ro,,romanian,,,ro

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pt_br.po,184,839,1077,0,0,0,0,184,839,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pt.po,140,568,695,0,0,5,21,145,589,pt.po,,pt,,portuguese,,,pt

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pl.po,184,839,833,0,0,0,0,184,839,pl.po,,pl,,polish,,,pl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/pa.po,191,799,931,0,0,1,48,192,847,pa.po,,pa,,punjabi,,,pa

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/oc.po,192,847,990,0,0,0,0,192,847,oc.po,,oc,,occitan,,,oc

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/nl.po,184,839,956,0,0,0,0,184,839,nl.po,,nl,,dutch,,,nl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ne.po,119,359,350,52,327,21,161,192,847,ne.po,,ne,,nepali,,,ne

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/nb.po,192,847,832,0,0,0,0,192,847,nb.po,,nb,,norwegian bokmål,,,nb

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/my.po,91,362,307,0,0,54,227,145,589,my.po,,my,,burmese,,,my

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ms.po,140,568,559,0,0,5,21,145,589,ms.po,,ms,,malay,,,ms

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ml.po,190,844,720,2,3,0,0,192,847,ml.po,,ml,,malayalam,,,ml

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/lv.po,184,839,744,0,0,0,0,184,839,lv.po,,lv,,latvian,,,lv

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/lt.po,184,839,743,0,0,0,0,184,839,lt.po,,lt,,lithuanian,,,lt

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ky.po,20,36,38,0,0,125,553,145,589,ky.po,,ky,,kyrgyz,,,ky

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ku.po,49,69,85,0,0,96,520,145,589,ku.po,,ku,,kurdish,,,ku

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ko.po,184,839,751,0,0,0,0,184,839,ko.po,,ko,,korean,,,ko

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/km.po,121,406,214,0,0,24,183,145,589,km.po,,km,,khmer,,,km

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/kk.po,93,218,227,0,0,91,621,184,839,kk.po,,kk,,kazakh,,,kk

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ja.po,184,839,370,0,0,0,0,184,839,ja.po,,ja,,japanese,,,ja

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/it.po,184,839,890,0,0,0,0,184,839,it.po,,it,,italian,,,it

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/is.po,192,847,898,0,0,0,0,192,847,is.po,,is,,icelandic,,,is

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/id.po,184,839,851,0,0,0,0,184,839,id.po,,id,,indonesian,,,id

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hy.po,5,5,10,0,0,140,584,145,589,hy.po,,hy,,armenian,,,hy

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hu.po,184,839,761,0,0,0,0,184,839,hu.po,,hu,,hungarian,,,hu

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/hr.po,183,838,760,0,0,0,0,183,838,hr.po,,hr,,croatian,,,hr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/he.po,140,568,567,0,0,5,21,145,589,he.po,,he,,hebrew,,,he

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/gl.po,184,839,950,0,0,0,0,184,839,gl.po,,gl,,galician,,,gl

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/gd.po,192,847,1120,0,0,0,0,192,847,gd.po,,gd,,scottish gaelic,,,gd

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fur.po,184,839,948,0,0,0,0,184,839,fur.po,,fur,,friulian,,,fur

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fr.po,184,839,1124,0,0,0,0,184,839,fr.po,,fr,,french,,,fr

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fi.po,184,839,661,0,0,0,0,184,839,fi.po,,fi,,finnish,,,fi

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/fa.po,192,847,924,0,0,0,0,192,847,fa.po,,fa,,persian,,,fa

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/eu.po,192,847,758,0,0,0,0,192,847,eu.po,,eu,,basque,,,eu

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/et.po,89,349,323,0,0,56,240,145,589,et.po,,et,,estonian,,,et

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/es.po,184,839,1033,0,0,0,0,184,839,es.po,,es,,spanish,,,es

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/eo.po,184,838,814,0,0,0,0,184,838,eo.po,,eo,,esperanto,,,eo

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/en_gb.po,192,847,888,0,0,0,0,192,847,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/el.po,184,839,972,0,0,0,0,184,839,el.po,,el,,greek,,,el

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/de.po,184,839,978,0,0,0,0,184,839,de.po,,de,,german,,,de

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/da.po,183,838,847,0,0,0,0,183,838,da.po,,da,,danish,,,da

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/cs.po,184,839,844,0,0,0,0,184,839,cs.po,,cs,,czech,,,cs

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ce.po,0,0,0,0,0,145,589,145,589,ce.po,,ce,,chechen,,,ce

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ca@valencia.po,192,847,972,0,0,0,0,192,847,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ca.po,192,847,972,0,0,0,0,192,847,ca.po,,ca,,catalan,,,ca

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/bo.po,87,325,208,0,0,58,264,145,589,bo.po,,bo,,tibetan,,,bo

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/bg.po,106,383,455,0,0,39,206,145,589,bg.po,,bg,,bulgarian,,,bg

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/be.po,192,847,780,0,0,0,0,192,847,be.po,,be,,belarusian,,,be

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/az.po,15,23,30,0,0,130,566,145,589,az.po,,az,,azerbaijani,,,az

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ast.po,120,404,471,0,0,25,185,145,589,ast.po,,ast,,asturian,,,ast

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/ar.po,184,786,745,2,17,6,44,192,847,ar.po,,ar,,arabic,,,ar

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/am.po,138,509,512,0,0,7,80,145,589,am.po,,am,,amharic,,,am

+ simple-scan-3.32.2-2.fc30.src.rpm.stats.csv,po/af.po,183,837,887,0,0,0,0,183,837,af.po,,af,,afrikaans,,,af

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/zu.po,0,0,0,0,0,30,122,30,122,zu.po,,zu,,zulu,,,zu

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/zh_tw.po,11,54,14,7,33,12,35,30,122,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/zh_cn.po,11,54,19,7,33,12,35,30,122,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,30,122,30,122,vi.po,,vi,,vietnamese,,,vi

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,,ur,,urdu,,,ur

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/uk.po,11,54,42,7,33,12,35,30,122,uk.po,,uk,,ukrainian,,,uk

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/tr.po,11,54,53,7,33,12,35,30,122,tr.po,,tr,,turkish,,,tr

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/th.po,11,54,21,6,29,13,39,30,122,th.po,,th,,thai,,,th

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/te.po,11,54,51,7,33,12,35,30,122,te.po,,te,,telugu,,,te

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ta.po,11,54,54,7,33,12,35,30,122,ta.po,,ta,,tamil,,,ta

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sv.po,11,54,58,7,33,12,35,30,122,sv.po,,sv,,swedish,,,sv

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sr@latin.po,11,54,50,7,33,12,35,30,122,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sr.po,11,54,50,7,33,12,35,30,122,sr.po,,sr,,serbian,,,sr

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,30,122,30,122,sq.po,,sq,,albanian,,,sq

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sl.po,0,0,0,0,0,30,122,30,122,sl.po,,sl,,slovenian,,,sl

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/sk.po,11,54,56,7,33,12,35,30,122,sk.po,,sk,,slovak,,,sk

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/si.po,11,54,58,6,29,13,39,30,122,si.po,,si,,sinhala,,,si

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ru.po,11,54,45,7,33,12,35,30,122,ru.po,,ru,,russian,,,ru

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,30,122,30,122,ro.po,,ro,,romanian,,,ro

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,54,60,7,33,12,35,30,122,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/pt.po,11,54,61,7,33,12,35,30,122,pt.po,,pt,,portuguese,,,pt

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/pl.po,30,122,109,0,0,0,0,30,122,pl.po,,pl,,polish,,,pl

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/pa.po,11,54,63,7,33,12,35,30,122,pa.po,,pa,,punjabi,,,pa

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/or.po,11,54,58,7,33,12,35,30,122,or.po,,or,,odia,,,or

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/nso.po,0,0,0,0,0,30,122,30,122,nso.po,,nso,,northern sotho,,,nso

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,30,122,30,122,nn.po,,nn,,norwegian nynorsk,,,nn

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/nl.po,11,54,63,7,33,12,35,30,122,nl.po,,nl,,dutch,,,nl

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/nds.po,4,13,12,2,7,24,102,30,122,nds.po,,nds,,low german,,,nds

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/nb.po,5,21,24,2,7,23,94,30,122,nb.po,,nb,,norwegian bokmål,,,nb

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/my.po,0,0,0,0,0,30,122,30,122,my.po,,my,,burmese,,,my

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,30,122,30,122,ms.po,,ms,,malay,,,ms

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/mr.po,11,54,58,7,33,12,35,30,122,mr.po,,mr,,marathi,,,mr

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ml.po,11,54,48,7,33,12,35,30,122,ml.po,,ml,,malayalam,,,ml

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/mk.po,0,0,0,0,0,30,122,30,122,mk.po,,mk,,macedonian,,,mk

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/lv.po,0,0,0,0,0,30,122,30,122,lv.po,,lv,,latvian,,,lv

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/lt.po,0,0,0,0,0,30,122,30,122,lt.po,,lt,,lithuanian,,,lt

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,,lo,,lao,,,lo

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ku.po,0,0,0,0,0,30,122,30,122,ku.po,,ku,,kurdish,,,ku

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ko.po,11,54,55,7,33,12,35,30,122,ko.po,,ko,,korean,,,ko

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/kn.po,11,54,47,7,33,12,35,30,122,kn.po,,kn,,kannada,,,kn

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,30,122,30,122,ka.po,,ka,,georgian,,,ka

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ja.po,11,54,19,7,33,12,35,30,122,ja.po,,ja,,japanese,,,ja

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/it.po,11,54,67,7,33,12,35,30,122,it.po,,it,,italian,,,it

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/is.po,0,0,0,0,0,30,122,30,122,is.po,,is,,icelandic,,,is

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,,ilo,,iloko,,,ilo

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/id.po,8,41,44,4,19,18,62,30,122,id.po,,id,,indonesian,,,id

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,,hy,,armenian,,,hy

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/hu.po,11,54,46,7,33,12,35,30,122,hu.po,,hu,,hungarian,,,hu

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/hr.po,0,0,0,0,0,30,122,30,122,hr.po,,hr,,croatian,,,hr

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/hi.po,11,54,66,7,33,12,35,30,122,hi.po,,hi,,hindi,,,hi

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,30,122,30,122,he.po,,he,,hebrew,,,he

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/gu.po,11,54,68,7,33,12,35,30,122,gu.po,,gu,,gujarati,,,gu

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/gl.po,0,0,0,0,0,30,122,30,122,gl.po,,gl,,galician,,,gl

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/fr.po,11,54,64,7,33,12,35,30,122,fr.po,,fr,,french,,,fr

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/fi.po,11,54,54,7,33,12,35,30,122,fi.po,,fi,,finnish,,,fi

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,30,122,30,122,fa.po,,fa,,persian,,,fa

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/eu.po,0,0,0,0,0,30,122,30,122,eu.po,,eu,,basque,,,eu

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,30,122,30,122,et.po,,et,,estonian,,,et

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/es.po,30,122,159,0,0,0,0,30,122,es.po,,es,,spanish,,,es

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/en_gb.po,11,54,54,6,29,13,39,30,122,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/en.po,11,54,54,8,38,14,45,33,137,en.po,,en,,english,,,en

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/el.po,11,54,67,7,33,12,35,30,122,el.po,,el,,greek,,,el

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/de_ch.po,11,54,55,6,29,13,39,30,122,de_ch.po,,de,ch,german,,switzerland,de_ch

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/de.po,11,54,55,7,33,12,35,30,122,de.po,,de,,german,,,de

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/da.po,11,54,57,7,33,12,35,30,122,da.po,,da,,danish,,,da

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,30,122,30,122,cy.po,,cy,,welsh,,,cy

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/cs.po,11,54,50,7,33,12,35,30,122,cs.po,,cs,,czech,,,cs

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ca.po,11,54,61,7,33,12,35,30,122,ca.po,,ca,,catalan,,,ca

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/bs.po,11,54,53,7,33,12,35,30,122,bs.po,,bs,,bosnian,,,bs

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,54,65,7,33,12,35,30,122,bn_in.po,,bn,in,bangla,,india,bn_in

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/bn.po,0,0,0,0,0,30,122,30,122,bn.po,,bn,,bangla,,,bn

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/bg.po,11,54,51,7,33,12,35,30,122,bg.po,,bg,,bulgarian,,,bg

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/be.po,0,0,0,0,0,30,122,30,122,be.po,,be,,belarusian,,,be

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ast.po,11,54,60,6,29,13,39,30,122,ast.po,,ast,,asturian,,,ast

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/as.po,11,54,64,6,29,13,39,30,122,as.po,,as,,assamese,,,as

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/ar.po,11,54,55,7,33,12,35,30,122,ar.po,,ar,,arabic,,,ar

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/am.po,0,0,0,0,0,30,122,30,122,am.po,,am,,amharic,,,am

+ sos-3.7-1.fc30.src.rpm.stats.csv,po/af.po,0,0,0,0,0,30,122,30,122,af.po,,af,,afrikaans,,,af

+ speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/cs.po,47,285,279,5,24,109,1106,161,1415,cs.po,,cs,,czech,,,cs

+ speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/de.po,155,1370,1349,2,25,4,20,161,1415,de.po,,de,,german,,,de

+ speech-dispatcher-0.9.0-4.fc30.src.rpm.stats.csv,po/hu.po,47,285,287,5,24,109,1106,161,1415,hu.po,,hu,,hungarian,,,hu

+ spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/de.po,64,292,241,7,29,3,34,74,355,de.po,,de,,german,,,de

+ spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/it.po,62,275,289,7,29,5,51,74,355,it.po,,it,,italian,,,it

+ spice-gtk-0.36-4.fc30.src.rpm.stats.csv,po/fr.po,5,2,5,12,32,57,321,74,355,fr.po,,fr,,french,,,fr

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ca.po,443,2796,3618,1,9,188,1104,632,3909,ca.po,,ca,,catalan,,,ca

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pl.po,626,3863,3683,2,15,4,31,632,3909,pl.po,,pl,,polish,,,pl

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ru.po,189,1172,1095,1,9,442,2728,632,3909,ru.po,,ru,,russian,,,ru

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/nl.po,387,2372,2522,1,9,244,1528,632,3909,nl.po,,nl,,dutch,,,nl

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pt.po,170,971,1134,1,9,461,2929,632,3909,pt.po,,pt,,portuguese,,,pt

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/nb.po,15,46,35,0,0,617,3863,632,3909,nb.po,,nb,,norwegian bokmål,,,nb

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/de.po,401,2503,2349,1,9,230,1397,632,3909,de.po,,de,,german,,,de

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/zh_tw.po,107,582,153,1,9,524,3318,632,3909,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/zh_cn.po,9,36,12,0,0,623,3873,632,3909,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/fr.po,443,2796,3408,1,9,188,1104,632,3909,fr.po,,fr,,french,,,fr

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/it.po,180,1029,1127,1,9,451,2871,632,3909,it.po,,it,,italian,,,it

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/sv.po,626,3863,3373,2,15,4,31,632,3909,sv.po,,sv,,swedish,,,sv

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/tr.po,5,15,16,0,0,627,3894,632,3909,tr.po,,tr,,turkish,,,tr

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/bg.po,128,704,774,1,9,503,3196,632,3909,bg.po,,bg,,bulgarian,,,bg

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/id.po,108,591,595,0,0,524,3318,632,3909,id.po,,id,,indonesian,,,id

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/tg.po,10,23,20,0,0,622,3886,632,3909,tg.po,,tg,,tajik,,,tg

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/uk.po,626,3863,3985,2,15,4,31,632,3909,uk.po,,uk,,ukrainian,,,uk

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/pt_br.po,6,32,38,0,0,626,3877,632,3909,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/ja.po,387,2372,744,1,9,244,1528,632,3909,ja.po,,ja,,japanese,,,ja

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/eu.po,65,218,196,0,0,567,3691,632,3909,eu.po,,eu,,basque,,,eu

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/es.po,626,3863,4766,2,15,4,31,632,3909,es.po,,es,,spanish,,,es

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,po/hu.po,71,317,290,0,0,561,3592,632,3909,hu.po,,hu,,hungarian,,,hu

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ca.po,1025,7898,8838,31,246,1400,25326,2456,33470,ca.po,,ca,,catalan,,,ca

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ru.po,43,96,118,3,8,2410,33366,2456,33470,ru.po,,ru,,russian,,,ru

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/nl.po,56,431,426,9,15,2391,33024,2456,33470,nl.po,,nl,,dutch,,,nl

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/fi.po,31,53,45,4,7,2421,33410,2456,33470,fi.po,,fi,,finnish,,,fi

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/pt.po,252,730,768,18,30,2186,32710,2456,33470,pt.po,,pt,,portuguese,,,pt

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/cs.po,14,36,31,3,3,2439,33431,2456,33470,cs.po,,cs,,czech,,,cs

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/de.po,1335,16404,15705,32,344,1089,16722,2456,33470,de.po,,de,,german,,,de

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/br.po,29,60,66,6,9,2421,33401,2456,33470,br.po,,br,,breton,,,br

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/zh_cn.po,17,48,31,3,3,2436,33419,2456,33470,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/fr.po,1359,15080,16738,32,285,1065,18105,2456,33470,fr.po,,fr,,french,,,fr

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/sv.po,795,10769,9429,31,256,1630,22445,2456,33470,sv.po,,sv,,swedish,,,sv

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/tg.po,36,64,63,2,6,2418,33400,2456,33470,tg.po,,tg,,tajik,,,tg

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/uk.po,2346,31071,29971,44,595,66,1804,2456,33470,uk.po,,uk,,ukrainian,,,uk

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/pt_br.po,10,19,21,0,0,2446,33451,2456,33470,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/ja.po,1032,9142,3139,30,216,1394,24112,2456,33470,ja.po,,ja,,japanese,,,ja

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/eu.po,0,0,0,0,0,2456,33470,2456,33470,eu.po,,eu,,basque,,,eu

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/lv.po,60,115,110,6,12,2390,33343,2456,33470,lv.po,,lv,,latvian,,,lv

+ sssd-2.1.0-2.fc30.src.rpm.stats.csv,src/man/po/es.po,1154,13326,14793,33,323,1269,19821,2456,33470,es.po,,es,,spanish,,,es

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/zh_cn.po,424,3001,1100,0,0,0,0,424,3001,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/zh_cn.mo,424,3001,1100,0,0,0,0,424,3001,zh_cn.mo,,zh,cn,chinese,,china,zh_cn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/vi.po,424,3001,4313,0,0,0,0,424,3001,vi.po,,vi,,vietnamese,,,vi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/vi.mo,424,3001,4313,0,0,0,0,424,3001,vi.mo,,vi,,vietnamese,,,vi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/uk.po,424,3001,3136,0,0,0,0,424,3001,uk.po,,uk,,ukrainian,,,uk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/uk.mo,424,3001,3136,0,0,0,0,424,3001,uk.mo,,uk,,ukrainian,,,uk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/tr.po,113,757,714,0,0,224,1477,337,2234,tr.po,,tr,,turkish,,,tr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/tr.mo,113,757,714,0,0,0,0,113,757,tr.mo,,tr,,turkish,,,tr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sv.po,424,3001,2722,0,0,0,0,424,3001,sv.po,,sv,,swedish,,,sv

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sv.mo,424,3001,2722,0,0,0,0,424,3001,sv.mo,,sv,,swedish,,,sv

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sr.po,396,2724,2794,0,0,0,0,396,2724,sr.po,,sr,,serbian,,,sr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sr.mo,396,2724,2794,0,0,0,0,396,2724,sr.mo,,sr,,serbian,,,sr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sl.po,337,2211,2196,0,0,0,0,337,2211,sl.po,,sl,,slovenian,,,sl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sl.mo,337,2211,2196,0,0,0,0,337,2211,sl.mo,,sl,,slovenian,,,sl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sk.po,39,251,254,0,0,315,2122,354,2373,sk.po,,sk,,slovak,,,sk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/sk.mo,39,251,254,0,0,0,0,39,251,sk.mo,,sk,,slovak,,,sk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ru.po,79,483,461,0,0,274,1880,353,2363,ru.po,,ru,,russian,,,ru

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ru.mo,79,483,461,0,0,0,0,79,483,ru.mo,,ru,,russian,,,ru

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt_br.po,424,3001,3544,0,0,0,0,424,3001,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt_br.mo,424,3001,3544,0,0,0,0,424,3001,pt_br.mo,,pt,br,portuguese,,brazil,pt_br

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt.po,424,3001,3148,0,0,0,0,424,3001,pt.po,,pt,,portuguese,,,pt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pt.mo,424,3001,3148,0,0,0,0,424,3001,pt.mo,,pt,,portuguese,,,pt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pl.po,424,3001,2984,0,0,0,0,424,3001,pl.po,,pl,,polish,,,pl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/pl.mo,424,3001,2984,0,0,0,0,424,3001,pl.mo,,pl,,polish,,,pl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nl.po,358,2398,2331,14,95,28,259,400,2752,nl.po,,nl,,dutch,,,nl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nl.mo,358,2398,2331,0,0,0,0,358,2398,nl.mo,,nl,,dutch,,,nl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nb.po,424,3001,3007,0,0,0,0,424,3001,nb.po,,nb,,norwegian bokmål,,,nb

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/nb.mo,424,3001,3007,0,0,0,0,424,3001,nb.mo,,nb,,norwegian bokmål,,,nb

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/lt.po,15,98,79,0,0,320,2040,335,2138,lt.po,,lt,,lithuanian,,,lt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/lt.mo,15,98,79,0,0,0,0,15,98,lt.mo,,lt,,lithuanian,,,lt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ko.po,392,2691,2332,0,0,0,0,392,2691,ko.po,,ko,,korean,,,ko

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ko.mo,392,2691,2332,0,0,0,0,392,2691,ko.mo,,ko,,korean,,,ko

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ja.po,424,3001,1334,0,0,0,0,424,3001,ja.po,,ja,,japanese,,,ja

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ja.mo,424,3001,1334,0,0,0,0,424,3001,ja.mo,,ja,,japanese,,,ja

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/it.po,424,3001,3187,0,0,0,0,424,3001,it.po,,it,,italian,,,it

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/it.mo,424,3001,3187,0,0,0,0,424,3001,it.mo,,it,,italian,,,it

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hu.po,202,1473,1421,0,0,200,1289,402,2762,hu.po,,hu,,hungarian,,,hu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hu.mo,202,1473,1421,0,0,0,0,202,1473,hu.mo,,hu,,hungarian,,,hu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hr.po,424,3001,3038,0,0,0,0,424,3001,hr.po,,hr,,croatian,,,hr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/hr.mo,424,3001,3038,0,0,0,0,424,3001,hr.mo,,hr,,croatian,,,hr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fur.po,102,534,578,1,4,299,2224,402,2762,fur.po,,fur,,friulian,,,fur

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fur.mo,102,534,578,0,0,0,0,102,534,fur.mo,,fur,,friulian,,,fur

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fr.po,356,2392,3140,0,0,0,0,356,2392,fr.po,,fr,,french,,,fr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fr.mo,356,2392,3140,0,0,0,0,356,2392,fr.mo,,fr,,french,,,fr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fi.po,396,2724,2075,0,0,0,0,396,2724,fi.po,,fi,,finnish,,,fi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/fi.mo,396,2724,2075,0,0,0,0,396,2724,fi.mo,,fi,,finnish,,,fi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eu.po,77,324,335,0,0,258,1810,335,2134,eu.po,,eu,,basque,,,eu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eu.mo,77,324,335,0,0,0,0,77,324,eu.mo,,eu,,basque,,,eu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eo.po,419,2960,2840,0,0,0,0,419,2960,eo.po,,eo,,esperanto,,,eo

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/eo.mo,419,2960,2840,0,0,0,0,419,2960,eo.mo,,eo,,esperanto,,,eo

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/el.po,336,2248,2514,1,11,0,0,337,2259,el.po,,el,,greek,,,el

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/el.mo,336,2248,2514,0,0,0,0,336,2248,el.mo,,el,,greek,,,el

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/de.po,424,3001,3110,0,0,0,0,424,3001,de.po,,de,,german,,,de

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/de.mo,424,3001,3110,0,0,0,0,424,3001,de.mo,,de,,german,,,de

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/da.po,419,2960,2681,0,0,0,0,419,2960,da.po,,da,,danish,,,da

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/da.mo,419,2960,2681,0,0,0,0,419,2960,da.mo,,da,,danish,,,da

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/cs.po,424,3001,2827,0,0,0,0,424,3001,cs.po,,cs,,czech,,,cs

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/cs.mo,424,3001,2827,0,0,0,0,424,3001,cs.mo,,cs,,czech,,,cs

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ca.po,379,2589,3193,0,0,0,0,379,2589,ca.po,,ca,,catalan,,,ca

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,plugins/sudoers/po/ca.mo,379,2589,3193,0,0,0,0,379,2589,ca.mo,,ca,,catalan,,,ca

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_tw.po,178,1170,461,0,0,0,0,178,1170,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_tw.mo,178,1170,461,0,0,0,0,178,1170,zh_tw.mo,,zh,tw,chinese,,taiwan,zh_tw

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_cn.po,182,1192,400,0,0,0,0,182,1192,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/zh_cn.mo,182,1192,400,0,0,0,0,182,1192,zh_cn.mo,,zh,cn,chinese,,china,zh_cn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/vi.po,182,1192,1772,0,0,0,0,182,1192,vi.po,,vi,,vietnamese,,,vi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/vi.mo,182,1192,1772,0,0,0,0,182,1192,vi.mo,,vi,,vietnamese,,,vi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/uk.po,182,1192,1250,0,0,0,0,182,1192,uk.po,,uk,,ukrainian,,,uk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/uk.mo,182,1192,1250,0,0,0,0,182,1192,uk.mo,,uk,,ukrainian,,,uk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/tr.po,182,1192,961,0,0,0,0,182,1192,tr.po,,tr,,turkish,,,tr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/tr.mo,182,1192,961,0,0,0,0,182,1192,tr.mo,,tr,,turkish,,,tr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sv.po,182,1192,1128,0,0,0,0,182,1192,sv.po,,sv,,swedish,,,sv

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sv.mo,182,1192,1128,0,0,0,0,182,1192,sv.mo,,sv,,swedish,,,sv

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sr.po,177,1165,1214,0,0,0,0,177,1165,sr.po,,sr,,serbian,,,sr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sr.mo,177,1165,1214,0,0,0,0,177,1165,sr.mo,,sr,,serbian,,,sr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sl.po,161,996,1015,0,0,0,0,161,996,sl.po,,sl,,slovenian,,,sl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sl.mo,161,996,1015,0,0,0,0,161,996,sl.mo,,sl,,slovenian,,,sl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sk.po,140,909,957,0,0,33,229,173,1138,sk.po,,sk,,slovak,,,sk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/sk.mo,140,909,957,0,0,0,0,140,909,sk.mo,,sk,,slovak,,,sk

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ru.po,173,1138,1114,0,0,0,0,173,1138,ru.po,,ru,,russian,,,ru

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ru.mo,173,1138,1114,0,0,0,0,173,1138,ru.mo,,ru,,russian,,,ru

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt_br.po,182,1192,1452,0,0,0,0,182,1192,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt_br.mo,182,1192,1452,0,0,0,0,182,1192,pt_br.mo,,pt,br,portuguese,,brazil,pt_br

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt.po,182,1192,1261,0,0,0,0,182,1192,pt.po,,pt,,portuguese,,,pt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pt.mo,182,1192,1261,0,0,0,0,182,1192,pt.mo,,pt,,portuguese,,,pt

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pl.po,182,1192,1241,0,0,0,0,182,1192,pl.po,,pl,,polish,,,pl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/pl.mo,182,1192,1241,0,0,0,0,182,1192,pl.mo,,pl,,polish,,,pl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nn.po,32,154,161,142,991,1,4,175,1149,nn.po,,nn,,norwegian nynorsk,,,nn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nn.mo,32,154,161,0,0,0,0,32,154,nn.mo,,nn,,norwegian nynorsk,,,nn

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nl.po,169,1110,1090,0,0,0,0,169,1110,nl.po,,nl,,dutch,,,nl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nl.mo,169,1110,1090,0,0,0,0,169,1110,nl.mo,,nl,,dutch,,,nl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nb.po,182,1192,1244,0,0,0,0,182,1192,nb.po,,nb,,norwegian bokmål,,,nb

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/nb.mo,182,1192,1244,0,0,0,0,182,1192,nb.mo,,nb,,norwegian bokmål,,,nb

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ko.po,175,1152,998,0,0,0,0,175,1152,ko.po,,ko,,korean,,,ko

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ko.mo,175,1152,998,0,0,0,0,175,1152,ko.mo,,ko,,korean,,,ko

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ja.po,182,1192,500,0,0,0,0,182,1192,ja.po,,ja,,japanese,,,ja

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ja.mo,182,1192,500,0,0,0,0,182,1192,ja.mo,,ja,,japanese,,,ja

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/it.po,182,1192,1324,0,0,0,0,182,1192,it.po,,it,,italian,,,it

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/it.mo,182,1192,1324,0,0,0,0,182,1192,it.mo,,it,,italian,,,it

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hu.po,177,1165,1064,0,0,0,0,177,1165,hu.po,,hu,,hungarian,,,hu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hu.mo,177,1165,1064,0,0,0,0,177,1165,hu.mo,,hu,,hungarian,,,hu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hr.po,182,1192,1191,0,0,0,0,182,1192,hr.po,,hr,,croatian,,,hr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/hr.mo,182,1192,1191,0,0,0,0,182,1192,hr.mo,,hr,,croatian,,,hr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/gl.po,161,1043,1312,1,8,7,58,169,1109,gl.po,,gl,,galician,,,gl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/gl.mo,161,1043,1312,0,0,0,0,161,1043,gl.mo,,gl,,galician,,,gl

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fur.po,170,1128,1317,0,0,5,24,175,1152,fur.po,,fur,,friulian,,,fur

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fur.mo,170,1128,1317,0,0,0,0,170,1128,fur.mo,,fur,,friulian,,,fur

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fr.po,182,1192,1443,0,0,0,0,182,1192,fr.po,,fr,,french,,,fr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fr.mo,182,1192,1443,0,0,0,0,182,1192,fr.mo,,fr,,french,,,fr

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fi.po,177,1165,899,0,0,0,0,177,1165,fi.po,,fi,,finnish,,,fi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/fi.mo,177,1165,899,0,0,0,0,177,1165,fi.mo,,fi,,finnish,,,fi

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eu.po,71,383,378,0,0,76,488,147,871,eu.po,,eu,,basque,,,eu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eu.mo,71,383,378,0,0,0,0,71,383,eu.mo,,eu,,basque,,,eu

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/es.po,177,1165,1427,0,0,0,0,177,1165,es.po,,es,,spanish,,,es

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/es.mo,177,1165,1427,0,0,0,0,177,1165,es.mo,,es,,spanish,,,es

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eo.po,178,1170,1116,0,0,0,0,178,1170,eo.po,,eo,,esperanto,,,eo

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/eo.mo,178,1170,1116,0,0,0,0,178,1170,eo.mo,,eo,,esperanto,,,eo

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/de.po,175,1152,1169,0,0,0,0,175,1152,de.po,,de,,german,,,de

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/de.mo,175,1152,1169,0,0,0,0,175,1152,de.mo,,de,,german,,,de

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/da.po,178,1170,1101,0,0,0,0,178,1170,da.po,,da,,danish,,,da

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/da.mo,178,1170,1101,0,0,0,0,178,1170,da.mo,,da,,danish,,,da

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/cs.po,182,1192,1122,0,0,0,0,182,1192,cs.po,,cs,,czech,,,cs

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/cs.mo,182,1192,1122,0,0,0,0,182,1192,cs.mo,,cs,,czech,,,cs

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ca.po,175,1149,1480,0,0,0,0,175,1149,ca.po,,ca,,catalan,,,ca

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ca.mo,175,1149,1480,0,0,0,0,175,1149,ca.mo,,ca,,catalan,,,ca

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ast.po,182,1192,1360,0,0,0,0,182,1192,ast.po,,ast,,asturian,,,ast

+ sudo-1.8.27-1.fc30.src.rpm.stats.csv,po/ast.mo,182,1192,1360,0,0,0,0,182,1192,ast.mo,,ast,,asturian,,,ast

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,11,24,13,0,0,0,0,11,24,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,11,24,13,0,0,0,0,11,24,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,11,24,17,0,0,0,0,11,24,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,9,15,17,0,0,0,0,9,15,vi.po,,vi,,vietnamese,,,vi

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,11,24,21,0,0,0,0,11,24,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,11,24,25,0,0,0,0,11,24,uk.po,,uk,,ukrainian,,,uk

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,11,24,19,0,0,0,0,11,24,ug.po,,ug,,uyghur,,,ug

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,11,24,20,0,0,0,0,11,24,tr.po,,tr,,turkish,,,tr

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,11,24,14,0,0,0,0,11,24,th.po,,th,,thai,,,th

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,11,24,22,0,0,0,0,11,24,tg.po,,tg,,tajik,,,tg

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,11,24,23,0,0,0,0,11,24,te.po,,te,,telugu,,,te

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,11,24,22,0,0,0,0,11,24,ta.po,,ta,,tamil,,,ta

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,9,15,16,0,0,0,0,9,15,sv.po,,sv,,swedish,,,sv

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,11,24,29,0,0,0,0,11,24,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,11,24,29,0,0,0,0,11,24,sr.po,,sr,,serbian,,,sr

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,11,24,27,0,0,0,0,11,24,sl.po,,sl,,slovenian,,,sl

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,11,24,26,0,0,0,0,11,24,sk.po,,sk,,slovak,,,sk

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,11,24,28,0,0,0,0,11,24,ru.po,,ru,,russian,,,ru

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,9,15,20,0,0,0,0,9,15,ro.po,,ro,,romanian,,,ro

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,11,24,29,0,0,0,0,11,24,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,9,15,16,0,0,0,0,9,15,pl.po,,pl,,polish,,,pl

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,11,24,28,0,0,0,0,11,24,pa.po,,pa,,punjabi,,,pa

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,11,24,25,0,0,0,0,11,24,or.po,,or,,odia,,,or

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,9,15,15,0,0,0,0,9,15,oc.po,,oc,,occitan,,,oc

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,11,24,26,0,0,0,0,11,24,nl.po,,nl,,dutch,,,nl

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,9,15,15,0,0,0,0,9,15,ne.po,,ne,,nepali,,,ne

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,11,24,23,0,0,0,0,11,24,nb.po,,nb,,norwegian bokmål,,,nb

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,11,24,25,0,0,0,0,11,24,mr.po,,mr,,marathi,,,mr

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,11,24,22,0,0,0,0,11,24,ml.po,,ml,,malayalam,,,ml

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,11,24,27,0,0,0,0,11,24,lv.po,,lv,,latvian,,,lv

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,11,24,25,0,0,0,0,11,24,lt.po,,lt,,lithuanian,,,lt

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,11,24,23,0,0,0,0,11,24,ko.po,,ko,,korean,,,ko

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,11,24,23,0,0,0,0,11,24,kn.po,,kn,,kannada,,,kn

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,11,24,22,0,0,0,0,11,24,kk.po,,kk,,kazakh,,,kk

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,11,24,15,0,0,0,0,11,24,ja.po,,ja,,japanese,,,ja

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,11,24,29,0,0,0,0,11,24,it.po,,it,,italian,,,it

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,11,24,24,0,0,0,0,11,24,is.po,,is,,icelandic,,,is

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,11,24,21,0,0,0,0,11,24,id.po,,id,,indonesian,,,id

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,11,24,22,0,0,0,0,11,24,hu.po,,hu,,hungarian,,,hu

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,9,15,17,0,0,0,0,9,15,hr.po,,hr,,croatian,,,hr

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,11,24,30,0,0,0,0,11,24,hi.po,,hi,,hindi,,,hi

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,11,24,26,0,0,0,0,11,24,he.po,,he,,hebrew,,,he

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,11,24,28,0,0,0,0,11,24,gu.po,,gu,,gujarati,,,gu

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,11,24,28,0,0,0,0,11,24,gl.po,,gl,,galician,,,gl

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,9,15,21,0,0,0,0,9,15,gd.po,,gd,,scottish gaelic,,,gd

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,11,24,28,0,0,0,0,11,24,fur.po,,fur,,friulian,,,fur

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,11,24,28,0,0,0,0,11,24,fr.po,,fr,,french,,,fr

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,11,24,20,0,0,0,0,11,24,fi.po,,fi,,finnish,,,fi

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,11,24,29,0,0,0,0,11,24,fa.po,,fa,,persian,,,fa

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,11,24,23,0,0,0,0,11,24,eu.po,,eu,,basque,,,eu

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,11,24,22,0,0,0,0,11,24,et.po,,et,,estonian,,,et

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,11,24,28,0,0,0,0,11,24,es.po,,es,,spanish,,,es

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,9,15,15,0,0,0,0,9,15,eo.po,,eo,,esperanto,,,eo

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,11,24,24,0,0,0,0,11,24,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,11,24,27,0,0,0,0,11,24,el.po,,el,,greek,,,el

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,11,24,26,0,0,0,0,11,24,de.po,,de,,german,,,de

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,9,15,15,0,0,0,0,9,15,da.po,,da,,danish,,,da

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,11,24,28,0,0,0,0,11,24,cs.po,,cs,,czech,,,cs

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,9,15,17,0,0,0,0,9,15,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,11,24,31,0,0,0,0,11,24,ca.po,,ca,,catalan,,,ca

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,11,24,26,0,0,0,0,11,24,bs.po,,bs,,bosnian,,,bs

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,11,24,24,0,0,0,0,11,24,bn_in.po,,bn,in,bangla,,india,bn_in

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,11,24,27,0,0,0,0,11,24,bg.po,,bg,,bulgarian,,,bg

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,11,24,26,0,0,0,0,11,24,be.po,,be,,belarusian,,,be

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,9,15,15,0,0,0,0,9,15,ast.po,,ast,,asturian,,,ast

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,11,24,26,0,0,0,0,11,24,as.po,,as,,assamese,,,as

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,9,15,22,0,0,0,0,9,15,ar.po,,ar,,arabic,,,ar

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/an.po,11,24,28,0,0,0,0,11,24,an.po,,an,,aragonese,,,an

+ sushi-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,9,15,16,0,0,0,0,9,15,af.po,,af,,afrikaans,,,af

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nl.po,888,3435,3358,4,8,7,7,899,3450,nl.po,,nl,,dutch,,,nl

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bn.po,724,3023,3367,6,9,169,418,899,3450,bn.po,,bn,,bangla,,,bn

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pa.po,729,3043,3301,6,9,164,398,899,3450,pa.po,,pa,,punjabi,,,pa

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/cs.po,752,3147,2850,2,4,145,299,899,3450,cs.po,,cs,,czech,,,cs

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/lv.po,727,3039,2675,6,9,166,402,899,3450,lv.po,,lv,,latvian,,,lv

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hi.po,727,3039,3517,6,9,166,402,899,3450,hi.po,,hi,,hindi,,,hi

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pl.po,888,3435,3327,4,8,7,7,899,3450,pl.po,,pl,,polish,,,pl

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/et.po,729,3043,2498,6,9,164,398,899,3450,et.po,,et,,estonian,,,et

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ru.po,744,3137,2857,2,4,153,309,899,3450,ru.po,,ru,,russian,,,ru

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sk.po,846,3328,3146,15,48,38,74,899,3450,sk.po,,sk,,slovak,,,sk

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bs.po,122,515,469,2,3,775,2932,899,3450,bs.po,,bs,,bosnian,,,bs

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fi.po,752,3147,2439,2,4,145,299,899,3450,fi.po,,fi,,finnish,,,fi

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/uk.po,888,3435,3177,4,8,7,7,899,3450,uk.po,,uk,,ukrainian,,,uk

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sv.po,752,3147,2874,2,4,145,299,899,3450,sv.po,,sv,,swedish,,,sv

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/gu.po,730,3046,3366,7,11,162,393,899,3450,gu.po,,gu,,gujarati,,,gu

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/mr.po,727,3039,3030,10,18,162,393,899,3450,mr.po,,mr,,marathi,,,mr

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pt.po,744,3137,3526,2,4,153,309,899,3450,pt.po,,pt,,portuguese,,,pt

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/es.po,752,3147,3627,2,4,145,299,899,3450,es.po,,es,,spanish,,,es

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/cy.po,12,12,12,0,0,887,3438,899,3450,cy.po,,cy,,welsh,,,cy

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/he.po,606,2135,2066,1,2,292,1313,899,3450,he.po,,he,,hebrew,,,he

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ro.po,582,2345,2563,6,10,311,1095,899,3450,ro.po,,ro,,romanian,,,ro

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/de.po,752,3147,3013,2,4,145,299,899,3450,de.po,,de,,german,,,de

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/el.po,743,3136,3396,3,5,153,309,899,3450,el.po,,el,,greek,,,el

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/th.po,557,2262,906,4,6,338,1182,899,3450,th.po,,th,,thai,,,th

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ta.po,727,3039,2646,6,9,166,402,899,3450,ta.po,,ta,,tamil,,,ta

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/vi.po,302,1175,1711,7,13,590,2262,899,3450,vi.po,,vi,,vietnamese,,,vi

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/or.po,730,3046,3219,6,9,163,395,899,3450,or.po,,or,,odia,,,or

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/pt_br.po,752,3147,3625,2,4,145,299,899,3450,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/as.po,730,3046,3181,6,9,163,395,899,3450,as.po,,as,,assamese,,,as

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nn.po,752,3147,2877,2,4,145,299,899,3450,nn.po,,nn,,norwegian nynorsk,,,nn

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sl.po,727,3039,3027,6,9,166,402,899,3450,sl.po,,sl,,slovenian,,,sl

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ar.po,733,3049,2944,5,8,161,393,899,3450,ar.po,,ar,,arabic,,,ar

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ko.po,727,3039,2696,6,9,166,402,899,3450,ko.po,,ko,,korean,,,ko

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ja.po,729,3043,1215,6,9,164,398,899,3450,ja.po,,ja,,japanese,,,ja

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nds.po,99,135,133,2,2,798,3313,899,3450,nds.po,,nds,,low german,,,nds

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/tr.po,721,2534,2363,66,161,112,755,899,3450,tr.po,,tr,,turkish,,,tr

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/zh_cn.po,752,3147,1071,2,4,145,299,899,3450,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bg.po,730,3046,3238,6,9,163,395,899,3450,bg.po,,bg,,bulgarian,,,bg

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/it.po,734,3049,3373,10,82,155,319,899,3450,it.po,,it,,italian,,,it

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sr.po,744,3137,3101,2,4,153,309,899,3450,sr.po,,sr,,serbian,,,sr

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fa.po,310,707,814,3,3,586,2740,899,3450,fa.po,,fa,,persian,,,fa

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ca.po,752,3147,3780,2,4,145,299,899,3450,ca.po,,ca,,catalan,,,ca

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/sr@latin.po,685,2739,2705,65,159,149,552,899,3450,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ms.po,65,92,91,1,1,833,3357,899,3450,ms.po,,ms,,malay,,,ms

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/si.po,17,21,24,4,9,878,3420,899,3450,si.po,,si,,sinhala,,,si

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/br.po,667,2662,3310,4,6,228,782,899,3450,br.po,,br,,breton,,,br

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/lt.po,616,2463,2233,1,2,282,985,899,3450,lt.po,,lt,,lithuanian,,,lt

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/nb.po,705,2499,2441,6,9,188,942,899,3450,nb.po,,nb,,norwegian bokmål,,,nb

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/fr.po,888,3435,4080,4,8,7,7,899,3450,fr.po,,fr,,french,,,fr

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/is.po,146,429,408,3,7,750,3014,899,3450,is.po,,is,,icelandic,,,is

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/da.po,752,3147,2893,2,4,145,299,899,3450,da.po,,da,,danish,,,da

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hr.po,212,782,737,2,3,685,2665,899,3450,hr.po,,hr,,croatian,,,hr

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/bn_in.po,727,3039,3388,6,9,166,402,899,3450,bn_in.po,,bn,in,bangla,,india,bn_in

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/kn.po,729,3043,2758,6,9,164,398,899,3450,kn.po,,kn,,kannada,,,kn

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/mai.po,48,110,119,1,1,850,3339,899,3450,mai.po,,mai,,maithili,,,mai

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/te.po,730,3046,2621,6,9,163,395,899,3450,te.po,,te,,telugu,,,te

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/en_gb.po,729,3043,3046,6,9,164,398,899,3450,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/ml.po,730,3046,2604,6,9,163,395,899,3450,ml.po,,ml,,malayalam,,,ml

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/zh_tw.po,752,3147,1117,2,4,145,299,899,3450,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/id.po,752,3147,3015,2,4,145,299,899,3450,id.po,,id,,indonesian,,,id

+ system-config-printer-1.5.11-16.fc30.src.rpm.stats.csv,po/hu.po,752,3147,2855,2,4,145,299,899,3450,hu.po,,hu,,hungarian,,,hu

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/zh_tw.po,113,968,154,0,0,0,0,113,968,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/zh_cn.po,112,950,135,1,18,0,0,113,968,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/uk.po,125,1065,858,0,0,0,0,125,1065,uk.po,,uk,,ukrainian,,,uk

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/tr.po,133,1131,1022,0,0,0,0,133,1131,tr.po,,tr,,turkish,,,tr

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sv.po,121,1041,1020,0,0,0,0,121,1041,sv.po,,sv,,swedish,,,sv

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sr.po,127,1090,1250,0,0,0,0,127,1090,sr.po,,sr,,serbian,,,sr

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/sk.po,46,371,353,0,0,69,614,115,985,sk.po,,sk,,slovak,,,sk

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ru.po,133,1124,1144,0,0,0,0,133,1124,ru.po,,ru,,russian,,,ru

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ro.po,115,985,1054,0,0,0,0,115,985,ro.po,,ro,,romanian,,,ro

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/pt_br.po,133,1124,1209,0,0,0,0,133,1124,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/pl.po,133,1131,996,0,0,0,0,133,1131,pl.po,,pl,,polish,,,pl

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/lt.po,133,1131,1008,0,0,0,0,133,1131,lt.po,,lt,,lithuanian,,,lt

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ko.po,113,968,792,0,0,0,0,113,968,ko.po,,ko,,korean,,,ko

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ja.po,133,1131,133,0,0,0,0,133,1131,ja.po,,ja,,japanese,,,ja

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/it.po,133,1131,1157,0,0,0,0,133,1131,it.po,,it,,italian,,,it

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/id.po,125,1065,953,0,0,0,0,125,1065,id.po,,id,,indonesian,,,id

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/hu.po,115,985,786,0,0,0,0,115,985,hu.po,,hu,,hungarian,,,hu

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/hr.po,113,968,851,0,0,0,0,113,968,hr.po,,hr,,croatian,,,hr

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/gl.po,113,968,1032,0,0,0,0,113,968,gl.po,,gl,,galician,,,gl

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/fr.po,133,1131,1256,0,0,0,0,133,1131,fr.po,,fr,,french,,,fr

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/es.po,113,968,1123,0,0,0,0,113,968,es.po,,es,,spanish,,,es

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/el.po,68,603,650,30,272,15,93,113,968,el.po,,el,,greek,,,el

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/de.po,113,968,972,0,0,0,0,113,968,de.po,,de,,german,,,de

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/da.po,113,968,990,0,0,0,0,113,968,da.po,,da,,danish,,,da

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/cs.po,133,1131,1014,0,0,0,0,133,1131,cs.po,,cs,,czech,,,cs

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/ca.po,125,1065,1285,0,0,0,0,125,1065,ca.po,,ca,,catalan,,,ca

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/bg.po,115,985,1112,0,0,0,0,115,985,bg.po,,bg,,bulgarian,,,bg

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/be@latin.po,115,985,787,0,0,0,0,115,985,be@latin.po,latin,be,,belarusian,,,be@latin

+ systemd-241-7.gita2eaa1c.fc30.src.rpm.stats.csv,po/be.po,115,985,787,0,0,0,0,115,985,be.po,,be,,belarusian,,,be

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/da.po,589,3626,3546,1,19,3,11,593,3656,da.po,,da,,danish,,,da

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/pt.po,589,3626,4003,1,19,3,11,593,3656,pt.po,,pt,,portuguese,,,pt

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ja.po,589,3626,1645,1,19,3,11,593,3656,ja.po,,ja,,japanese,,,ja

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/nl.po,589,3626,3790,1,19,3,11,593,3656,nl.po,,nl,,dutch,,,nl

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ga.po,589,3626,4541,1,19,3,11,593,3656,ga.po,,ga,,irish,,,ga

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/fr.po,572,3484,4471,12,111,9,61,593,3656,fr.po,,fr,,french,,,fr

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/et.po,572,3484,3053,12,111,9,61,593,3656,et.po,,et,,estonian,,,et

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/pt_br.po,589,3626,4217,1,19,3,11,593,3656,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/sl.po,557,3392,3664,18,133,18,131,593,3656,sl.po,,sl,,slovenian,,,sl

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ca.po,589,3626,4589,1,19,3,11,593,3656,ca.po,,ca,,catalan,,,ca

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ko.po,572,3484,3106,12,111,9,61,593,3656,ko.po,,ko,,korean,,,ko

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/fi.po,522,3079,2643,32,238,39,339,593,3656,fi.po,,fi,,finnish,,,fi

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/hu.po,589,3626,3746,1,19,3,11,593,3656,hu.po,,hu,,hungarian,,,hu

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/el.po,116,557,676,111,792,366,2307,593,3656,el.po,,el,,greek,,,el

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/eu.po,343,1774,1731,94,654,156,1228,593,3656,eu.po,,eu,,basque,,,eu

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/uk.po,589,3626,3822,1,19,3,11,593,3656,uk.po,,uk,,ukrainian,,,uk

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/cs.po,589,3626,3716,1,19,3,11,593,3656,cs.po,,cs,,czech,,,cs

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ro.po,248,1279,1387,151,1090,194,1287,593,3656,ro.po,,ro,,romanian,,,ro

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/sv.po,589,3626,3555,1,19,3,11,593,3656,sv.po,,sv,,swedish,,,sv

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ky.po,412,2400,2275,91,650,90,606,593,3656,ky.po,,ky,,kyrgyz,,,ky

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/de.po,589,3626,3589,1,19,3,11,593,3656,de.po,,de,,german,,,de

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/bg.po,589,3626,4451,1,19,3,11,593,3656,bg.po,,bg,,bulgarian,,,bg

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ru.po,589,3626,3646,1,19,3,11,593,3656,ru.po,,ru,,russian,,,ru

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/it.po,589,3626,4169,1,19,3,11,593,3656,it.po,,it,,italian,,,it

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/ms.po,112,545,547,110,742,371,2369,593,3656,ms.po,,ms,,malay,,,ms

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/vi.po,589,3626,5437,1,19,3,11,593,3656,vi.po,,vi,,vietnamese,,,vi

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/zh_tw.po,589,3626,1365,1,19,3,11,593,3656,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/nb.po,589,3626,3612,1,19,3,11,593,3656,nb.po,,nb,,norwegian bokmål,,,nb

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/eo.po,589,3626,3594,1,19,3,11,593,3656,eo.po,,eo,,esperanto,,,eo

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/sk.po,117,567,620,111,792,365,2297,593,3656,sk.po,,sk,,slovak,,,sk

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/id.po,557,3392,3502,18,133,18,131,593,3656,id.po,,id,,indonesian,,,id

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/gl.po,117,567,723,122,855,354,2234,593,3656,gl.po,,gl,,galician,,,gl

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/pl.po,589,3626,3802,1,19,3,11,593,3656,pl.po,,pl,,polish,,,pl

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/sr.po,572,3484,3633,12,111,9,61,593,3656,sr.po,,sr,,serbian,,,sr

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/hr.po,589,3626,3840,1,19,3,11,593,3656,hr.po,,hr,,croatian,,,hr

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/es.po,589,3626,4645,1,19,3,11,593,3656,es.po,,es,,spanish,,,es

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/tr.po,572,3484,3126,12,111,9,61,593,3656,tr.po,,tr,,turkish,,,tr

+ tar-1.32-1.fc30.src.rpm.stats.csv,po/zh_cn.po,589,3626,1334,1,19,3,11,593,3656,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ texlive-base-20180414-35.fc30.src.rpm.stats.csv,texmf-dist/doc/support/latex-git-log/po/de.po,3,3,3,0,0,0,0,3,3,de.po,,de,,german,,,de

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/zh_cn.po,141,616,269,0,0,0,0,141,616,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/vi.po,157,697,1022,0,0,0,0,157,697,vi.po,,vi,,vietnamese,,,vi

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/uk.po,157,697,745,0,0,0,0,157,697,uk.po,,uk,,ukrainian,,,uk

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/tr.po,141,616,563,0,0,0,0,141,616,tr.po,,tr,,turkish,,,tr

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sv.po,157,697,635,0,0,0,0,157,697,sv.po,,sv,,swedish,,,sv

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sr.po,141,616,644,0,0,0,0,141,616,sr.po,,sr,,serbian,,,sr

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/sk.po,33,82,90,13,62,109,656,155,800,sk.po,,sk,,slovak,,,sk

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/ru.po,157,697,681,0,0,0,0,157,697,ru.po,,ru,,russian,,,ru

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/pt_br.po,157,697,827,0,0,0,0,157,697,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/pl.po,33,82,88,13,62,109,656,155,800,pl.po,,pl,,polish,,,pl

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/nl.po,141,616,608,0,0,0,0,141,616,nl.po,,nl,,dutch,,,nl

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/it.po,70,210,238,14,62,71,528,155,800,it.po,,it,,italian,,,it

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/id.po,141,616,639,0,0,0,0,141,616,id.po,,id,,indonesian,,,id

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/hu.po,141,616,628,0,0,0,0,141,616,hu.po,,hu,,hungarian,,,hu

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fur.po,139,583,712,0,0,14,88,153,671,fur.po,,fur,,friulian,,,fur

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fr.po,142,624,765,0,0,0,0,142,624,fr.po,,fr,,french,,,fr

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/fi.po,154,675,524,0,0,0,0,154,675,fi.po,,fi,,finnish,,,fi

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/es.po,141,616,703,0,0,0,0,141,616,es.po,,es,,spanish,,,es

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/eo.po,141,616,648,0,0,0,0,141,616,eo.po,,eo,,esperanto,,,eo

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/el.po,145,684,733,8,55,7,83,160,822,el.po,,el,,greek,,,el

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/de.po,153,671,654,0,0,0,0,153,671,de.po,,de,,german,,,de

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/da.po,142,624,583,0,0,0,0,142,624,da.po,,da,,danish,,,da

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/cs.po,157,697,702,0,0,0,0,157,697,cs.po,,cs,,czech,,,cs

+ tigervnc-1.9.0-4.fc30.src.rpm.stats.csv,po/bg.po,141,616,738,0,0,0,0,141,616,bg.po,,bg,,bulgarian,,,bg

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_tw/zh_tw.po,156,1952,412,1,38,33,604,190,2594,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_hk/zh_hk.po,156,1952,412,1,38,33,604,190,2594,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,265,4552,642,0,0,0,0,265,4552,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,265,4552,3870,0,0,0,0,265,4552,uk.po,,uk,,ukrainian,,,uk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/te/te.po,20,38,39,0,0,245,4514,265,4552,te.po,,te,,telugu,,,te

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,157,1830,1696,0,0,0,0,157,1830,sv.po,,sv,,swedish,,,sv

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,9,26,26,0,0,256,4526,265,4552,sl.po,,sl,,slovenian,,,sl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,265,4552,3628,0,0,0,0,265,4552,ru.po,,ru,,russian,,,ru

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ro/ro.po,252,4680,4745,0,0,0,0,252,4680,ro.po,,ro,,romanian,,,ro

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,252,4680,5191,0,0,0,0,252,4680,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,159,1850,1573,0,0,0,0,159,1850,pl.po,,pl,,polish,,,pl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/pa/pa.po,112,909,925,0,0,80,1468,192,2377,pa.po,,pa,,punjabi,,,pa

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,47,122,142,0,0,143,2472,190,2594,oc.po,,oc,,occitan,,,oc

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/nb/nb.po,193,3238,2513,44,1388,15,54,252,4680,nb.po,,nb,,norwegian bokmål,,,nb

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,123,1153,464,68,1654,74,1745,265,4552,ja.po,,ja,,japanese,,,ja

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/it/it.po,235,3534,3430,30,1013,0,0,265,4547,it.po,,it,,italian,,,it

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/id/id.po,252,4680,4206,0,0,0,0,252,4680,id.po,,id,,indonesian,,,id

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,159,1850,1622,0,0,0,0,159,1850,hu.po,,hu,,hungarian,,,hu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/hr/hr.po,183,2843,2470,0,0,69,1817,252,4660,hr.po,,hr,,croatian,,,hr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,252,4680,5068,0,0,0,0,252,4680,gl.po,,gl,,galician,,,gl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,252,4680,5147,0,0,0,0,252,4680,fr.po,,fr,,french,,,fr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,202,3420,2117,38,1212,12,48,252,4680,fi.po,,fi,,finnish,,,fi

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,190,2594,1955,0,0,0,0,190,2594,eu.po,,eu,,basque,,,eu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,54,128,173,5,37,100,1685,159,1850,es.po,,es,,spanish,,,es

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,263,4493,4500,0,0,0,0,263,4493,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,252,4660,5021,0,0,0,0,252,4660,el.po,,el,,greek,,,el

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,155,1802,1835,1,16,2,8,158,1826,de.po,,de,,german,,,de

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,252,4660,4003,0,0,0,0,252,4660,da.po,,da,,danish,,,da

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,252,4680,3981,0,0,0,0,252,4680,cs.po,,cs,,czech,,,cs

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,252,4659,5400,0,0,0,0,252,4659,ca.po,,ca,,catalan,,,ca

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,0,0,0,0,0,265,4552,265,4552,bg.po,,bg,,bulgarian,,,bg

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zu.po,522,2066,1754,10,71,46,392,578,2529,zu.po,,zu,,zulu,,,zu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,390,1374,524,0,0,0,0,390,1374,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,347,1241,466,5,64,0,0,352,1305,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,389,1327,514,0,0,0,0,389,1327,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/xh.po,336,1466,1292,10,45,4,21,350,1532,xh.po,,xh,,xhosa,,,xh

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/wa.po,142,341,422,0,0,211,1211,353,1552,wa.po,,wa,,walloon,,,wa

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,388,1383,1836,0,0,0,0,388,1383,vi.po,,vi,,vietnamese,,,vi

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,396,1398,1242,0,0,0,0,396,1398,uk.po,,uk,,ukrainian,,,uk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,521,2040,1792,0,0,0,0,521,2040,ug.po,,ug,,uyghur,,,ug

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,391,1403,1172,0,0,0,0,391,1403,tr.po,,tr,,turkish,,,tr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,352,1305,514,0,0,0,0,352,1305,th.po,,th,,thai,,,th

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/tg.po,302,716,731,0,0,50,589,352,1305,tg.po,,tg,,tajik,,,tg

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,384,1446,1222,0,0,0,0,384,1446,te.po,,te,,telugu,,,te

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,384,1446,1258,0,0,0,0,384,1446,ta.po,,ta,,tamil,,,ta

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,388,1383,1274,0,0,0,0,388,1383,sv.po,,sv,,swedish,,,sv

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,396,1398,1450,0,0,0,0,396,1398,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,388,1383,1431,0,0,0,0,388,1383,sr.po,,sr,,serbian,,,sr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,501,2361,2581,0,0,0,0,501,2361,sq.po,,sq,,albanian,,,sq

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,388,1383,1387,0,0,0,0,388,1383,sl.po,,sl,,slovenian,,,sl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,391,1335,1352,0,0,0,0,391,1335,sk.po,,sk,,slovak,,,sk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,323,1160,1172,0,0,55,678,378,1838,si.po,,si,,sinhala,,,si

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/rw.po,28,33,35,246,1355,76,144,350,1532,rw.po,,rw,,kinyarwanda,,,rw

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,391,1403,1281,0,0,0,0,391,1403,ru.po,,ru,,russian,,,ru

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,391,1403,1486,0,0,0,0,391,1403,ro.po,,ro,,romanian,,,ro

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,391,1403,1561,0,0,0,0,391,1403,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,392,1390,1531,0,0,0,0,392,1390,pt.po,,pt,,portuguese,,,pt

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,391,1403,1342,0,0,0,0,391,1403,pl.po,,pl,,polish,,,pl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,384,1449,1562,0,0,0,0,384,1449,pa.po,,pa,,punjabi,,,pa

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,522,2043,2124,0,0,0,0,522,2043,or.po,,or,,odia,,,or

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,372,1243,1427,0,0,10,130,382,1373,oc.po,,oc,,occitan,,,oc

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,579,2537,2390,0,0,2,22,581,2559,nn.po,,nn,,norwegian nynorsk,,,nn

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,391,1403,1332,0,0,0,0,391,1403,nl.po,,nl,,dutch,,,nl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,300,706,697,54,303,35,318,389,1327,ne.po,,ne,,nepali,,,ne

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,391,1335,1307,0,0,0,0,391,1335,nb.po,,nb,,norwegian bokmål,,,nb

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

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ms.po,226,685,619,141,430,225,1496,592,2611,ms.po,,ms,,malay,,,ms

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,384,1446,1342,0,0,0,0,384,1446,mr.po,,mr,,marathi,,,mr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,391,1335,1092,0,0,0,0,391,1335,ml.po,,ml,,malayalam,,,ml

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,561,2453,2562,0,0,0,0,561,2453,mk.po,,mk,,macedonian,,,mk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,378,1764,1840,1,2,0,0,379,1766,mg.po,,mg,,malagasy,,,mg

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/mai.po,379,1486,1553,0,0,221,1328,600,2814,mai.po,,mai,,maithili,,,mai

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,388,1383,1215,0,0,0,0,388,1383,lv.po,,lv,,latvian,,,lv

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,388,1383,1214,0,0,0,0,388,1383,lt.po,,lt,,lithuanian,,,lt

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ky.po,186,291,287,0,0,337,1759,523,2050,ky.po,,ky,,kyrgyz,,,ky

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ku.po,122,259,268,0,0,239,1426,361,1685,ku.po,,ku,,kurdish,,,ku

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,388,1383,1118,0,0,0,0,388,1383,ko.po,,ko,,korean,,,ko

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,384,1446,1268,0,0,0,0,384,1446,kn.po,,kn,,kannada,,,kn

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/km.po,523,2050,929,0,0,0,0,523,2050,km.po,,km,,khmer,,,km

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/kk.po,364,1145,969,0,0,26,229,390,1374,kk.po,,kk,,kazakh,,,kk

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ka.po,417,1821,1421,0,0,0,0,417,1821,ka.po,,ka,,georgian,,,ka

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ja.po,377,1327,485,0,0,14,76,391,1403,ja.po,,ja,,japanese,,,ja

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,396,1398,1475,0,0,0,0,396,1398,it.po,,it,,italian,,,it

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/is.po,391,1335,1313,0,0,0,0,391,1335,is.po,,is,,icelandic,,,is

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,391,1403,1276,0,0,0,0,391,1403,id.po,,id,,indonesian,,,id

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,391,1403,1200,0,0,0,0,391,1403,hu.po,,hu,,hungarian,,,hu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,389,1327,1275,0,0,0,0,389,1327,hr.po,,hr,,croatian,,,hr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,384,1446,1652,0,0,0,0,384,1446,hi.po,,hi,,hindi,,,hi

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,392,1390,1321,0,0,0,0,392,1390,he.po,,he,,hebrew,,,he

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

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,391,1389,1486,0,0,0,0,391,1389,gu.po,,gu,,gujarati,,,gu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,388,1383,1574,0,0,0,0,388,1383,gl.po,,gl,,galician,,,gl

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/gd.po,389,1327,1800,0,0,0,0,389,1327,gd.po,,gd,,scottish gaelic,,,gd

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ga.po,303,698,769,13,69,121,938,437,1705,ga.po,,ga,,irish,,,ga

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,388,1383,1533,0,0,0,0,388,1383,fur.po,,fur,,friulian,,,fur

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,391,1403,1637,0,0,0,0,391,1403,fr.po,,fr,,french,,,fr

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fi.po,391,1403,1077,0,0,0,0,391,1403,fi.po,,fi,,finnish,,,fi

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,389,1327,1416,0,0,0,0,389,1327,fa.po,,fa,,persian,,,fa

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,391,1403,1225,0,0,0,0,391,1403,eu.po,,eu,,basque,,,eu

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,389,1327,1091,0,0,0,0,389,1327,et.po,,et,,estonian,,,et

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,391,1403,1590,0,0,0,0,391,1403,es.po,,es,,spanish,,,es

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/eo.po,389,1327,1183,0,0,0,0,389,1327,eo.po,,eo,,esperanto,,,eo

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,389,1327,1324,0,0,0,0,389,1327,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,561,2453,2456,0,0,0,0,561,2453,en_ca.po,,en,ca,english,,canada,en_ca

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,456,1699,1699,131,891,0,0,587,2590,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,390,1374,1432,0,0,0,0,390,1374,el.po,,el,,greek,,,el

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,425,1929,882,0,0,0,0,425,1929,dz.po,,dz,,dzongkha,,,dz

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,388,1383,1302,0,0,0,0,388,1383,de.po,,de,,german,,,de

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,388,1383,1252,0,0,0,0,388,1383,da.po,,da,,danish,,,da

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,300,1388,1457,82,287,96,605,478,2280,cy.po,,cy,,welsh,,,cy

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,388,1383,1334,0,0,0,0,388,1383,cs.po,,cs,,czech,,,cs

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/crh.po,520,2035,1755,0,0,0,0,520,2035,crh.po,,crh,,crimean turkish,,,crh

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,389,1327,1580,0,0,0,0,389,1327,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,388,1364,1618,0,0,2,8,390,1372,ca.po,,ca,,catalan,,,ca

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,385,1449,1405,0,0,0,0,385,1449,bs.po,,bs,,bosnian,,,bs

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/br.po,353,924,1062,13,63,237,1712,603,2699,br.po,,br,,breton,,,br

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,384,1446,1515,0,0,0,0,384,1446,bn_in.po,,bn,in,bangla,,india,bn_in

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,592,2611,2766,0,0,0,0,592,2611,bn.po,,bn,,bangla,,,bn

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,389,1327,1445,0,0,0,0,389,1327,bg.po,,bg,,bulgarian,,,bg

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,596,2707,2363,3,35,1,72,600,2814,be@latin.po,latin,be,,belarusian,,,be@latin

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,391,1335,1247,0,0,0,0,391,1335,be.po,,be,,belarusian,,,be

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/az.po,345,1417,1215,0,0,0,0,345,1417,az.po,,az,,azerbaijani,,,az

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,560,2420,2717,0,0,1,21,561,2441,ast.po,,ast,,asturian,,,ast

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,384,1446,1463,0,0,0,0,384,1446,as.po,,as,,assamese,,,as

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,501,1962,1912,0,0,0,0,501,1962,ar.po,,ar,,arabic,,,ar

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/am.po,56,95,121,13,21,148,754,217,870,am.po,,am,,amharic,,,am

+ totem-3.32.0-1.fc30.src.rpm.stats.csv,po/af.po,396,1350,1362,0,0,2,57,398,1407,af.po,,af,,afrikaans,,,af

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,8,29,11,0,0,0,0,8,29,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_hk.po,8,29,11,0,0,0,0,8,29,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,8,29,12,0,0,0,0,8,29,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/xh.po,336,1466,1292,10,45,4,21,350,1532,xh.po,,xh,,xhosa,,,xh

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/wa.po,142,341,422,0,0,211,1211,353,1552,wa.po,,wa,,walloon,,,wa

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/vi.po,7,28,35,0,0,0,0,7,28,vi.po,,vi,,vietnamese,,,vi

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,8,29,22,0,0,0,0,8,29,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/uk.po,8,29,23,0,0,0,0,8,29,uk.po,,uk,,ukrainian,,,uk

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ug.po,7,28,21,0,0,0,0,7,28,ug.po,,ug,,uyghur,,,ug

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/tr.po,8,29,23,0,0,0,0,8,29,tr.po,,tr,,turkish,,,tr

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/th.po,7,28,10,0,0,0,0,7,28,th.po,,th,,thai,,,th

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/tg.po,8,29,27,0,0,0,0,8,29,tg.po,,tg,,tajik,,,tg

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/te.po,7,28,23,0,0,0,0,7,28,te.po,,te,,telugu,,,te

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ta.po,7,28,23,0,0,0,0,7,28,ta.po,,ta,,tamil,,,ta

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sv.po,8,29,23,0,0,0,0,8,29,sv.po,,sv,,swedish,,,sv

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sr@latin.po,8,29,28,0,0,0,0,8,29,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sr.po,8,29,28,0,0,0,0,8,29,sr.po,,sr,,serbian,,,sr

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sq.po,8,35,32,0,0,0,0,8,35,sq.po,,sq,,albanian,,,sq

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sl.po,8,29,25,0,0,0,0,8,29,sl.po,,sl,,slovenian,,,sl

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/sk.po,8,29,25,0,0,0,0,8,29,sk.po,,sk,,slovak,,,sk

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/si.po,323,1160,1172,0,0,55,678,378,1838,si.po,,si,,sinhala,,,si

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/rw.po,28,33,35,246,1355,76,144,350,1532,rw.po,,rw,,kinyarwanda,,,rw

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ru.po,8,29,24,0,0,0,0,8,29,ru.po,,ru,,russian,,,ru

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ro.po,8,29,29,0,0,0,0,8,29,ro.po,,ro,,romanian,,,ro

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,8,29,32,0,0,0,0,8,29,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pt.po,8,29,30,0,0,0,0,8,29,pt.po,,pt,,portuguese,,,pt

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ps.po,7,28,40,0,0,0,0,7,28,ps.po,,ps,,pashto,,,ps

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pl.po,8,29,27,0,0,0,0,8,29,pl.po,,pl,,polish,,,pl

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/pa.po,8,29,33,0,0,0,0,8,29,pa.po,,pa,,punjabi,,,pa

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/or.po,7,28,30,0,0,0,0,7,28,or.po,,or,,odia,,,or

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/oc.po,8,29,32,0,0,0,0,8,29,oc.po,,oc,,occitan,,,oc

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nn.po,7,28,24,0,0,0,0,7,28,nn.po,,nn,,norwegian nynorsk,,,nn

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nl.po,8,29,28,0,0,0,0,8,29,nl.po,,nl,,dutch,,,nl

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ne.po,8,29,30,0,0,0,0,8,29,ne.po,,ne,,nepali,,,ne

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nds.po,7,28,30,0,0,0,0,7,28,nds.po,,nds,,low german,,,nds

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/nb.po,8,29,27,0,0,0,0,8,29,nb.po,,nb,,norwegian bokmål,,,nb

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ms.po,8,29,24,0,0,0,0,8,29,ms.po,,ms,,malay,,,ms

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mr.po,7,28,27,0,0,0,0,7,28,mr.po,,mr,,marathi,,,mr

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mn.po,7,28,25,0,0,0,0,7,28,mn.po,,mn,,mongolian,,,mn

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ml.po,8,29,24,0,0,0,0,8,29,ml.po,,ml,,malayalam,,,ml

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mk.po,8,35,33,0,0,0,0,8,35,mk.po,,mk,,macedonian,,,mk

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mg.po,378,1764,1840,1,2,0,0,379,1766,mg.po,,mg,,malagasy,,,mg

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/mai.po,5,17,13,0,0,2,11,7,28,mai.po,,mai,,maithili,,,mai

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/lv.po,8,29,22,0,0,0,0,8,29,lv.po,,lv,,latvian,,,lv

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/lt.po,8,29,21,0,0,0,0,8,29,lt.po,,lt,,lithuanian,,,lt

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ku.po,122,259,268,0,0,239,1426,361,1685,ku.po,,ku,,kurdish,,,ku

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ko.po,8,29,23,0,0,0,0,8,29,ko.po,,ko,,korean,,,ko

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/kn.po,8,29,25,0,0,0,0,8,29,kn.po,,kn,,kannada,,,kn

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/km.po,7,28,14,0,0,0,0,7,28,km.po,,km,,khmer,,,km

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/kk.po,8,29,23,0,0,0,0,8,29,kk.po,,kk,,kazakh,,,kk

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ka.po,417,1821,1421,0,0,0,0,417,1821,ka.po,,ka,,georgian,,,ka

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ja.po,8,29,13,0,0,0,0,8,29,ja.po,,ja,,japanese,,,ja

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/it.po,8,29,27,0,0,0,0,8,29,it.po,,it,,italian,,,it

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/is.po,8,29,29,0,0,0,0,8,29,is.po,,is,,icelandic,,,is

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/id.po,8,29,26,0,0,0,0,8,29,id.po,,id,,indonesian,,,id

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hu.po,8,29,25,0,0,0,0,8,29,hu.po,,hu,,hungarian,,,hu

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hr.po,8,29,23,0,0,0,0,8,29,hr.po,,hr,,croatian,,,hr

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/hi.po,7,28,27,0,0,0,0,7,28,hi.po,,hi,,hindi,,,hi

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/he.po,8,29,22,0,0,0,0,8,29,he.po,,he,,hebrew,,,he

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gu.po,7,28,26,0,0,0,0,7,28,gu.po,,gu,,gujarati,,,gu

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gl.po,8,29,32,0,0,0,0,8,29,gl.po,,gl,,galician,,,gl

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/gd.po,8,29,30,0,0,0,0,8,29,gd.po,,gd,,scottish gaelic,,,gd

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ga.po,7,28,29,0,0,0,0,7,28,ga.po,,ga,,irish,,,ga

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fur.po,8,29,28,0,0,0,0,8,29,fur.po,,fur,,friulian,,,fur

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fr.po,8,29,30,0,0,0,0,8,29,fr.po,,fr,,french,,,fr

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fi.po,8,29,21,0,0,0,0,8,29,fi.po,,fi,,finnish,,,fi

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/fa.po,8,29,28,0,0,0,0,8,29,fa.po,,fa,,persian,,,fa

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/eu.po,8,29,22,0,0,0,0,8,29,eu.po,,eu,,basque,,,eu

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/et.po,8,29,20,0,0,0,0,8,29,et.po,,et,,estonian,,,et

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/es.po,8,29,34,0,0,0,0,8,29,es.po,,es,,spanish,,,es

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/eo.po,8,29,25,0,0,0,0,8,29,eo.po,,eo,,esperanto,,,eo

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en_gb.po,8,29,29,0,0,0,0,8,29,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en_ca.po,372,1795,1810,0,0,0,0,372,1795,en_ca.po,,en,ca,english,,canada,en_ca

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/en@shaw.po,7,28,28,0,0,0,0,7,28,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/el.po,8,29,26,0,0,0,0,8,29,el.po,,el,,greek,,,el

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/dz.po,425,1929,882,0,0,0,0,425,1929,dz.po,,dz,,dzongkha,,,dz

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/de.po,8,29,27,0,0,0,0,8,29,de.po,,de,,german,,,de

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/da.po,8,29,26,0,0,0,0,8,29,da.po,,da,,danish,,,da

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/cy.po,7,28,33,0,0,0,0,7,28,cy.po,,cy,,welsh,,,cy

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/cs.po,8,29,25,0,0,0,0,8,29,cs.po,,cs,,czech,,,cs

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,8,29,34,0,0,0,0,8,29,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ca.po,8,29,34,0,0,0,0,8,29,ca.po,,ca,,catalan,,,ca

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bs.po,8,29,27,0,0,0,0,8,29,bs.po,,bs,,bosnian,,,bs

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/br.po,7,28,23,0,0,0,0,7,28,br.po,,br,,breton,,,br

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bn_in.po,7,28,28,0,0,0,0,7,28,bn_in.po,,bn,in,bangla,,india,bn_in

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bn.po,7,28,28,0,0,0,0,7,28,bn.po,,bn,,bangla,,,bn

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/bg.po,8,29,24,0,0,0,0,8,29,bg.po,,bg,,bulgarian,,,bg

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/be@latin.po,7,28,21,0,0,0,0,7,28,be@latin.po,latin,be,,belarusian,,,be@latin

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/be.po,8,29,22,0,0,0,0,8,29,be.po,,be,,belarusian,,,be

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/az.po,345,1417,1215,0,0,0,0,345,1417,az.po,,az,,azerbaijani,,,az

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ast.po,7,28,28,0,0,0,0,7,28,ast.po,,ast,,asturian,,,ast

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/as.po,8,29,28,0,0,0,0,8,29,as.po,,as,,assamese,,,as

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/ar.po,7,28,22,0,0,0,0,7,28,ar.po,,ar,,arabic,,,ar

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/an.po,8,29,36,0,0,0,0,8,29,an.po,,an,,aragonese,,,an

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/am.po,56,95,121,13,21,148,754,217,870,am.po,,am,,amharic,,,am

+ totem-pl-parser-3.26.3-1.fc30.src.rpm.stats.csv,po/af.po,8,29,27,0,0,0,0,8,29,af.po,,af,,afrikaans,,,af

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,369,2217,661,0,0,0,0,369,2217,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,594,3613,1005,0,0,0,0,594,3613,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,369,2211,606,0,0,0,0,369,2211,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/vi.po,532,2903,4287,0,0,68,844,600,3747,vi.po,,vi,,vietnamese,,,vi

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/uk.po,537,3291,3177,0,0,0,0,537,3291,uk.po,,uk,,ukrainian,,,uk

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/tr.po,369,2217,1860,0,0,0,0,369,2217,tr.po,,tr,,turkish,,,tr

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/th.po,291,1391,601,0,0,0,0,291,1391,th.po,,th,,thai,,,th

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/tg.po,74,99,91,0,0,449,2976,523,3075,tg.po,,tg,,tajik,,,tg

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/te.po,135,291,275,0,0,401,2908,536,3199,te.po,,te,,telugu,,,te

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sv.po,369,2217,2096,0,0,0,0,369,2217,sv.po,,sv,,swedish,,,sv

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,370,2229,2280,0,0,0,0,370,2229,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sr.po,369,2217,2285,0,0,0,0,369,2217,sr.po,,sr,,serbian,,,sr

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sl.po,369,2217,2367,0,0,0,0,369,2217,sl.po,,sl,,slovenian,,,sl

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/sk.po,369,2211,2236,0,0,0,0,369,2211,sk.po,,sk,,slovak,,,sk

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ru.po,369,2217,2117,0,0,0,0,369,2217,ru.po,,ru,,russian,,,ru

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ro.po,369,2217,2607,0,0,0,0,369,2217,ro.po,,ro,,romanian,,,ro

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,369,2217,2578,0,0,0,0,369,2217,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pt.po,595,3727,4053,0,0,0,0,595,3727,pt.po,,pt,,portuguese,,,pt

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pl.po,369,2217,2193,0,0,0,0,369,2217,pl.po,,pl,,polish,,,pl

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/pa.po,45,86,91,0,0,354,2002,399,2088,pa.po,,pa,,punjabi,,,pa

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/oc.po,586,3634,4418,1,1,5,67,592,3702,oc.po,,oc,,occitan,,,oc

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nl.po,369,2217,2193,0,0,0,0,369,2217,nl.po,,nl,,dutch,,,nl

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ne.po,146,444,405,73,310,151,1475,370,2229,ne.po,,ne,,nepali,,,ne

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nds.po,165,368,352,0,0,199,1379,364,1747,nds.po,,nds,,low german,,,nds

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/nb.po,284,1299,1257,0,0,85,912,369,2211,nb.po,,nb,,norwegian bokmål,,,nb

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ml.po,104,283,224,12,72,254,1874,370,2229,ml.po,,ml,,malayalam,,,ml

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/mk.po,151,666,759,23,87,23,105,197,858,mk.po,,mk,,macedonian,,,mk

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/lv.po,369,2217,1943,0,0,0,0,369,2217,lv.po,,lv,,latvian,,,lv

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/lt.po,369,2217,1875,0,0,0,0,369,2217,lt.po,,lt,,lithuanian,,,lt

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ko.po,369,2217,1809,0,0,0,0,369,2217,ko.po,,ko,,korean,,,ko

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/kk.po,73,163,133,0,0,296,2054,369,2217,kk.po,,kk,,kazakh,,,kk

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ja.po,518,3120,960,3,16,0,0,521,3136,ja.po,,ja,,japanese,,,ja

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/it.po,369,2217,2333,0,0,0,0,369,2217,it.po,,it,,italian,,,it

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/is.po,84,245,234,0,0,285,1966,369,2211,is.po,,is,,icelandic,,,is

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/id.po,369,2217,2180,0,0,0,0,369,2217,id.po,,id,,indonesian,,,id

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/hu.po,369,2217,2086,0,0,0,0,369,2217,hu.po,,hu,,hungarian,,,hu

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/hr.po,369,2212,2103,0,0,0,0,369,2212,hr.po,,hr,,croatian,,,hr

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/he.po,54,112,111,24,87,449,2948,527,3147,he.po,,he,,hebrew,,,he

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/gl.po,369,2217,2617,0,0,0,0,369,2217,gl.po,,gl,,galician,,,gl

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fur.po,369,2217,2706,0,0,0,0,369,2217,fur.po,,fur,,friulian,,,fur

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fr.po,369,2217,2687,0,0,0,0,369,2217,fr.po,,fr,,french,,,fr

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/fi.po,138,475,404,63,349,169,1405,370,2229,fi.po,,fi,,finnish,,,fi

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/eu.po,370,2229,2092,0,0,0,0,370,2229,eu.po,,eu,,basque,,,eu

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/et.po,362,1959,1635,17,108,11,59,390,2126,et.po,,et,,estonian,,,et

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/es.po,369,2217,2657,0,0,0,0,369,2217,es.po,,es,,spanish,,,es

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/eo.po,118,378,346,3,19,248,1820,369,2217,eo.po,,eo,,esperanto,,,eo

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,369,2211,2209,0,0,0,0,369,2211,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/el.po,369,2217,2408,0,0,0,0,369,2217,el.po,,el,,greek,,,el

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/dz.po,153,693,288,22,66,22,99,197,858,dz.po,,dz,,dzongkha,,,dz

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/de.po,369,2217,2370,0,0,0,0,369,2217,de.po,,de,,german,,,de

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/da.po,369,2217,2150,0,0,0,0,369,2217,da.po,,da,,danish,,,da

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/cs.po,369,2217,2293,0,0,0,0,369,2217,cs.po,,cs,,czech,,,cs

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,369,2211,2888,0,0,0,0,369,2211,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ca.po,369,2217,2890,0,0,0,0,369,2217,ca.po,,ca,,catalan,,,ca

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/bs.po,598,3762,3703,0,0,0,0,598,3762,bs.po,,bs,,bosnian,,,bs

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/bg.po,600,3774,4301,0,0,1,30,601,3804,bg.po,,bg,,bulgarian,,,bg

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,291,1388,1277,0,0,0,0,291,1388,be@latin.po,latin,be,,belarusian,,,be@latin

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/as.po,150,561,591,0,0,444,3052,594,3613,as.po,,as,,assamese,,,as

+ tracker-2.2.1-1.fc30.src.rpm.stats.csv,po/ar.po,172,729,754,60,253,164,1064,396,2046,ar.po,,ar,,arabic,,,ar

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,112,801,233,0,0,0,0,112,801,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,594,3613,1005,0,0,0,0,594,3613,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,600,3747,1001,0,0,0,0,600,3747,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/vi.po,532,2903,4287,0,0,68,844,600,3747,vi.po,,vi,,vietnamese,,,vi

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/uk.po,537,3291,3177,0,0,0,0,537,3291,uk.po,,uk,,ukrainian,,,uk

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/tr.po,112,801,690,0,0,0,0,112,801,tr.po,,tr,,turkish,,,tr

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/th.po,291,1391,601,0,0,0,0,291,1391,th.po,,th,,thai,,,th

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/tg.po,74,99,91,0,0,449,2976,523,3075,tg.po,,tg,,tajik,,,tg

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/te.po,135,291,275,0,0,401,2908,536,3199,te.po,,te,,telugu,,,te

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sv.po,112,801,751,0,0,0,0,112,801,sv.po,,sv,,swedish,,,sv

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,118,827,806,0,0,0,0,118,827,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sr.po,112,801,780,0,0,0,0,112,801,sr.po,,sr,,serbian,,,sr

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sl.po,112,801,768,0,0,0,0,112,801,sl.po,,sl,,slovenian,,,sl

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/sk.po,118,828,826,0,0,0,0,118,828,sk.po,,sk,,slovak,,,sk

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ru.po,112,801,745,0,0,0,0,112,801,ru.po,,ru,,russian,,,ru

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ro.po,112,801,882,0,0,0,0,112,801,ro.po,,ro,,romanian,,,ro

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,112,801,889,0,0,0,0,112,801,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pt.po,595,3727,4053,0,0,0,0,595,3727,pt.po,,pt,,portuguese,,,pt

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pl.po,112,801,799,0,0,0,0,112,801,pl.po,,pl,,polish,,,pl

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/pa.po,45,86,91,0,0,354,2002,399,2088,pa.po,,pa,,punjabi,,,pa

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/oc.po,586,3634,4418,1,1,5,67,592,3702,oc.po,,oc,,occitan,,,oc

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nl.po,112,801,839,0,0,0,0,112,801,nl.po,,nl,,dutch,,,nl

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ne.po,77,458,406,13,54,28,315,118,827,ne.po,,ne,,nepali,,,ne

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nds.po,165,368,352,0,0,199,1379,364,1747,nds.po,,nds,,low german,,,nds

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/nb.po,90,446,424,0,0,28,381,118,827,nb.po,,nb,,norwegian bokmål,,,nb

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ml.po,128,447,355,1,1,392,2691,521,3139,ml.po,,ml,,malayalam,,,ml

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/mk.po,151,666,759,23,87,23,105,197,858,mk.po,,mk,,macedonian,,,mk

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/lv.po,112,801,714,0,0,0,0,112,801,lv.po,,lv,,latvian,,,lv

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/lt.po,112,801,667,0,0,0,0,112,801,lt.po,,lt,,lithuanian,,,lt

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ko.po,112,801,604,0,0,0,0,112,801,ko.po,,ko,,korean,,,ko

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/kk.po,62,83,81,0,0,538,3664,600,3747,kk.po,,kk,,kazakh,,,kk

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ja.po,518,3120,960,3,16,0,0,521,3136,ja.po,,ja,,japanese,,,ja

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/it.po,112,801,853,0,0,0,0,112,801,it.po,,it,,italian,,,it

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/id.po,112,801,739,0,0,0,0,112,801,id.po,,id,,indonesian,,,id

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/hu.po,112,801,715,0,0,0,0,112,801,hu.po,,hu,,hungarian,,,hu

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/hr.po,118,828,835,0,0,0,0,118,828,hr.po,,hr,,croatian,,,hr

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/he.po,54,112,111,24,87,449,2948,527,3147,he.po,,he,,hebrew,,,he

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/gl.po,112,801,922,0,0,0,0,112,801,gl.po,,gl,,galician,,,gl

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fur.po,112,801,980,0,0,0,0,112,801,fur.po,,fur,,friulian,,,fur

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fr.po,112,801,962,0,0,0,0,112,801,fr.po,,fr,,french,,,fr

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/fi.po,261,1014,837,96,512,245,2238,602,3764,fi.po,,fi,,finnish,,,fi

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/eu.po,118,827,724,0,0,0,0,118,827,eu.po,,eu,,basque,,,eu

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/et.po,362,1959,1635,17,108,11,59,390,2126,et.po,,et,,estonian,,,et

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/es.po,112,801,940,0,0,0,0,112,801,es.po,,es,,spanish,,,es

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/eo.po,23,59,56,0,0,89,742,112,801,eo.po,,eo,,esperanto,,,eo

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,118,827,828,0,0,0,0,118,827,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/el.po,118,828,885,0,0,0,0,118,828,el.po,,el,,greek,,,el

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/dz.po,153,693,288,22,66,22,99,197,858,dz.po,,dz,,dzongkha,,,dz

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/de.po,112,801,784,0,0,0,0,112,801,de.po,,de,,german,,,de

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/da.po,112,801,806,0,0,0,0,112,801,da.po,,da,,danish,,,da

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/cs.po,112,801,835,0,0,0,0,112,801,cs.po,,cs,,czech,,,cs

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,118,827,997,0,0,0,0,118,827,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ca.po,118,827,998,0,0,0,0,118,827,ca.po,,ca,,catalan,,,ca

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/bs.po,598,3762,3703,0,0,0,0,598,3762,bs.po,,bs,,bosnian,,,bs

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/bg.po,600,3774,4301,0,0,1,30,601,3804,bg.po,,bg,,bulgarian,,,bg

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,291,1388,1277,0,0,0,0,291,1388,be@latin.po,latin,be,,belarusian,,,be@latin

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/as.po,150,561,591,0,0,444,3052,594,3613,as.po,,as,,assamese,,,as

+ tracker-miners-2.2.1-1.fc30.src.rpm.stats.csv,po/ar.po,172,729,754,60,253,164,1064,396,2046,ar.po,,ar,,arabic,,,ar

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,396,1499,798,23,176,95,505,514,2180,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_hk.po,0,0,0,0,0,478,1929,478,1929,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,482,1973,930,0,0,32,207,514,2180,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/wa.po,0,0,0,0,0,478,1929,478,1929,wa.po,,wa,,walloon,,,wa

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/vi.po,0,0,0,0,0,478,1929,478,1929,vi.po,,vi,,vietnamese,,,vi

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/uk.po,495,2015,2251,0,0,19,165,514,2180,uk.po,,uk,,ukrainian,,,uk

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/tr.po,495,2015,2003,0,0,19,165,514,2180,tr.po,,tr,,turkish,,,tr

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/th.po,0,0,0,0,0,478,1929,478,1929,th.po,,th,,thai,,,th

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/te.po,0,0,0,0,0,478,1929,478,1929,te.po,,te,,telugu,,,te

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ta.po,0,0,0,0,0,478,1929,478,1929,ta.po,,ta,,tamil,,,ta

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sv.po,495,2015,1945,0,0,19,165,514,2180,sv.po,,sv,,swedish,,,sv

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sr@latin.po,0,0,0,0,0,478,1929,478,1929,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sr.po,406,1498,1572,28,207,80,475,514,2180,sr.po,,sr,,serbian,,,sr

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sq.po,0,0,0,0,0,478,1929,478,1929,sq.po,,sq,,albanian,,,sq

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sl.po,406,1498,1491,28,207,80,475,514,2180,sl.po,,sl,,slovenian,,,sl

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/sk.po,495,2015,1889,0,0,19,165,514,2180,sk.po,,sk,,slovak,,,sk

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ru.po,406,1498,1522,28,207,80,475,514,2180,ru.po,,ru,,russian,,,ru

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ro.po,0,0,0,0,0,478,1929,478,1929,ro.po,,ro,,romanian,,,ro

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,472,1905,2086,0,0,42,275,514,2180,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pt.po,0,0,0,0,0,478,1929,478,1929,pt.po,,pt,,portuguese,,,pt

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pl.po,495,2015,2143,0,0,19,165,514,2180,pl.po,,pl,,polish,,,pl

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/pa.po,214,480,542,27,205,273,1495,514,2180,pa.po,,pa,,punjabi,,,pa

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/or.po,0,0,0,0,0,478,1929,478,1929,or.po,,or,,odia,,,or

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/oc.po,0,0,0,0,0,478,1929,478,1929,oc.po,,oc,,occitan,,,oc

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nn.po,0,0,0,0,0,478,1929,478,1929,nn.po,,nn,,norwegian nynorsk,,,nn

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nl.po,495,2015,2171,0,0,19,165,514,2180,nl.po,,nl,,dutch,,,nl

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/nb.po,0,0,0,0,0,478,1929,478,1929,nb.po,,nb,,norwegian bokmål,,,nb

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ms.po,0,0,0,0,0,478,1929,478,1929,ms.po,,ms,,malay,,,ms

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/mr.po,0,0,0,0,0,478,1929,478,1929,mr.po,,mr,,marathi,,,mr

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ml.po,0,0,0,0,0,478,1929,478,1929,ml.po,,ml,,malayalam,,,ml

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/lv.po,281,847,783,27,205,206,1128,514,2180,lv.po,,lv,,latvian,,,lv

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/lt.po,495,2015,1929,0,0,19,165,514,2180,lt.po,,lt,,lithuanian,,,lt

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ko.po,406,1517,1294,28,207,80,456,514,2180,ko.po,,ko,,korean,,,ko

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/kn.po,0,0,0,0,0,478,1929,478,1929,kn.po,,kn,,kannada,,,kn

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/kk.po,472,1905,1687,0,0,42,275,514,2180,kk.po,,kk,,kazakh,,,kk

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ka.po,0,0,0,0,0,478,1929,478,1929,ka.po,,ka,,georgian,,,ka

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ja.po,395,1459,728,28,207,91,514,514,2180,ja.po,,ja,,japanese,,,ja

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/it.po,495,2015,2153,0,0,19,165,514,2180,it.po,,it,,italian,,,it

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/id.po,495,2015,1920,0,0,19,165,514,2180,id.po,,id,,indonesian,,,id

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ia.po,105,482,571,27,205,382,1493,514,2180,ia.po,,ia,,interlingua,,,ia

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hu.po,495,2015,1664,0,0,19,165,514,2180,hu.po,,hu,,hungarian,,,hu

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hr.po,340,1202,1179,27,205,147,773,514,2180,hr.po,,hr,,croatian,,,hr

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/hi.po,0,0,0,0,0,478,1929,478,1929,hi.po,,hi,,hindi,,,hi

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/he.po,0,0,0,0,0,478,1929,478,1929,he.po,,he,,hebrew,,,he

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/gu.po,0,0,0,0,0,478,1929,478,1929,gu.po,,gu,,gujarati,,,gu

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/gl.po,406,1498,1638,28,207,80,475,514,2180,gl.po,,gl,,galician,,,gl

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ga.po,0,0,0,0,0,478,1929,478,1929,ga.po,,ga,,irish,,,ga

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fur.po,90,594,756,0,0,424,1586,514,2180,fur.po,,fur,,friulian,,,fur

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fr.po,495,2015,2438,0,0,19,165,514,2180,fr.po,,fr,,french,,,fr

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,478,1929,478,1929,fo.po,,fo,,faroese,,,fo

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fi.po,315,1040,830,27,205,172,935,514,2180,fi.po,,fi,,finnish,,,fi

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/fa.po,0,0,0,0,0,478,1929,478,1929,fa.po,,fa,,persian,,,fa

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/eu.po,219,439,432,26,203,269,1538,514,2180,eu.po,,eu,,basque,,,eu

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/et.po,0,0,0,0,0,478,1929,478,1929,et.po,,et,,estonian,,,et

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/es.po,495,2015,2310,0,0,19,165,514,2180,es.po,,es,,spanish,,,es

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/eo.po,0,0,0,0,0,478,1929,478,1929,eo.po,,eo,,esperanto,,,eo

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/en_gb.po,437,1674,1674,29,209,48,297,514,2180,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/el.po,407,1506,1445,28,207,79,467,514,2180,el.po,,el,,greek,,,el

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/de.po,472,1905,1883,0,0,42,275,514,2180,de.po,,de,,german,,,de

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/da.po,495,2015,1987,0,0,19,165,514,2180,da.po,,da,,danish,,,da

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/cy.po,0,0,0,0,0,478,1929,478,1929,cy.po,,cy,,welsh,,,cy

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/cs.po,495,2015,1960,0,0,19,165,514,2180,cs.po,,cs,,czech,,,cs

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,0,0,0,0,0,478,1929,478,1929,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ca.po,487,1994,2368,0,0,27,186,514,2180,ca.po,,ca,,catalan,,,ca

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/bn_in.po,0,0,0,0,0,478,1929,478,1929,bn_in.po,,bn,in,bangla,,india,bn_in

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/bg.po,0,0,0,0,0,478,1929,478,1929,bg.po,,bg,,bulgarian,,,bg

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/az.po,0,0,0,0,0,478,1929,478,1929,az.po,,az,,azerbaijani,,,az

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/as.po,0,0,0,0,0,478,1929,478,1929,as.po,,as,,assamese,,,as

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/ar.po,0,0,0,0,0,478,1929,478,1929,ar.po,,ar,,arabic,,,ar

+ udisks2-2.8.2-1.fc30.src.rpm.stats.csv,po/af.po,438,1679,1714,0,0,76,501,514,2180,af.po,,af,,afrikaans,,,af

+ upower-0.99.10-1.fc30.src.rpm.stats.csv,po/pl.po,26,145,124,0,0,0,0,26,145,pl.po,,pl,,polish,,,pl

+ upower-0.99.10-1.fc30.src.rpm.stats.csv,po/sv.po,19,113,107,0,0,0,0,19,113,sv.po,,sv,,swedish,,,sv

+ upower-0.99.10-1.fc30.src.rpm.stats.csv,po/it.po,19,113,130,0,0,0,0,19,113,it.po,,it,,italian,,,it

+ upower-0.99.10-1.fc30.src.rpm.stats.csv,po/fr.po,26,145,184,0,0,0,0,26,145,fr.po,,fr,,french,,,fr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/zh_tw.po,96,573,148,0,0,0,0,96,573,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/gl.po,62,320,332,0,0,34,253,96,573,gl.po,,gl,,galician,,,gl

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/de_ch.po,92,551,496,0,0,4,22,96,573,de_ch.po,,de,ch,german,,switzerland,de_ch

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/tg.po,59,177,196,0,0,37,396,96,573,tg.po,,tg,,tajik,,,tg

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/bs.po,94,564,545,0,0,2,9,96,573,bs.po,,bs,,bosnian,,,bs

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ast.po,92,551,563,0,0,4,22,96,573,ast.po,,ast,,asturian,,,ast

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/be.po,74,451,383,0,0,22,122,96,573,be.po,,be,,belarusian,,,be

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/fi.po,96,573,419,0,0,0,0,96,573,fi.po,,fi,,finnish,,,fi

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/nl.po,96,573,567,0,0,0,0,96,573,nl.po,,nl,,dutch,,,nl

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ko.po,95,570,489,0,0,1,3,96,573,ko.po,,ko,,korean,,,ko

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/cs.po,96,573,514,0,0,0,0,96,573,cs.po,,cs,,czech,,,cs

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ml.po,94,564,450,0,0,2,9,96,573,ml.po,,ml,,malayalam,,,ml

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/as.po,95,570,558,0,0,1,3,96,573,as.po,,as,,assamese,,,as

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/tr.po,96,573,451,0,0,0,0,96,573,tr.po,,tr,,turkish,,,tr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/nds.po,34,74,71,0,0,62,499,96,573,nds.po,,nds,,low german,,,nds

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/sk.po,96,573,548,0,0,0,0,96,573,sk.po,,sk,,slovak,,,sk

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/te.po,95,570,472,0,0,1,3,96,573,te.po,,te,,telugu,,,te

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/sr@latin.po,94,564,526,0,0,2,9,96,573,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ja.po,96,573,150,0,0,0,0,96,573,ja.po,,ja,,japanese,,,ja

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/bn.po,95,570,596,0,0,1,3,96,573,bn.po,,bn,,bangla,,,bn

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/sl.po,74,442,421,0,0,22,131,96,573,sl.po,,sl,,slovenian,,,sl

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/da.po,96,573,537,0,0,0,0,96,573,da.po,,da,,danish,,,da

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/cy.po,83,521,510,0,0,13,52,96,573,cy.po,,cy,,welsh,,,cy

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/bg.po,95,570,580,0,0,1,3,96,573,bg.po,,bg,,bulgarian,,,bg

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/fa.po,95,570,624,0,0,1,3,96,573,fa.po,,fa,,persian,,,fa

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/fr.po,96,573,658,0,0,0,0,96,573,fr.po,,fr,,french,,,fr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/or.po,94,564,662,0,0,2,9,96,573,or.po,,or,,odia,,,or

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/mai.po,92,551,654,0,0,4,22,96,573,mai.po,,mai,,maithili,,,mai

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/is.po,95,570,575,0,0,1,3,96,573,is.po,,is,,icelandic,,,is

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/pa.po,96,573,690,0,0,0,0,96,573,pa.po,,pa,,punjabi,,,pa

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/es.po,96,573,631,0,0,0,0,96,573,es.po,,es,,spanish,,,es

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ms.po,91,542,500,0,0,5,31,96,573,ms.po,,ms,,malay,,,ms

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/id.po,96,573,502,0,0,0,0,96,573,id.po,,id,,indonesian,,,id

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/en_gb.po,86,524,527,0,0,10,49,96,573,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/pt_br.po,96,573,635,0,0,0,0,96,573,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ka.po,29,60,57,0,0,67,513,96,573,ka.po,,ka,,georgian,,,ka

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/pl.po,96,573,513,0,0,0,0,96,573,pl.po,,pl,,polish,,,pl

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/sv.po,96,573,531,0,0,0,0,96,573,sv.po,,sv,,swedish,,,sv

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/sr.po,96,573,536,0,0,0,0,96,573,sr.po,,sr,,serbian,,,sr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/el.po,96,573,591,0,0,0,0,96,573,el.po,,el,,greek,,,el

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/nb.po,95,570,589,0,0,1,3,96,573,nb.po,,nb,,norwegian bokmål,,,nb

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/it.po,96,573,591,0,0,0,0,96,573,it.po,,it,,italian,,,it

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ar.po,95,570,554,0,0,1,3,96,573,ar.po,,ar,,arabic,,,ar

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ro.po,95,570,573,0,0,1,3,96,573,ro.po,,ro,,romanian,,,ro

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/vi.po,60,252,350,0,0,36,321,96,573,vi.po,,vi,,vietnamese,,,vi

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/hr.po,91,542,525,0,0,5,31,96,573,hr.po,,hr,,croatian,,,hr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/hu.po,96,573,518,0,0,0,0,96,573,hu.po,,hu,,hungarian,,,hu

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/mr.po,94,564,538,0,0,2,9,96,573,mr.po,,mr,,marathi,,,mr

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/he.po,95,570,536,0,0,1,3,96,573,he.po,,he,,hebrew,,,he

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/lv.po,95,570,485,0,0,1,3,96,573,lv.po,,lv,,latvian,,,lv

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/kn.po,95,570,486,0,0,1,3,96,573,kn.po,,kn,,kannada,,,kn

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/et.po,95,570,452,0,0,1,3,96,573,et.po,,et,,estonian,,,et

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/de.po,96,573,520,0,0,0,0,96,573,de.po,,de,,german,,,de

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ru.po,96,573,506,0,0,0,0,96,573,ru.po,,ru,,russian,,,ru

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/hi.po,94,564,680,0,0,2,9,96,573,hi.po,,hi,,hindi,,,hi

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/bn_in.po,96,573,589,0,0,0,0,96,573,bn_in.po,,bn,in,bangla,,india,bn_in

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/zh_cn.po,95,570,153,0,0,1,3,96,573,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ta.po,95,570,457,0,0,1,3,96,573,ta.po,,ta,,tamil,,,ta

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/ca.po,96,573,654,0,0,0,0,96,573,ca.po,,ca,,catalan,,,ca

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/gu.po,94,564,621,0,0,2,9,96,573,gu.po,,gu,,gujarati,,,gu

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/pt.po,96,573,645,0,0,0,0,96,573,pt.po,,pt,,portuguese,,,pt

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/mk.po,91,542,549,0,0,5,31,96,573,mk.po,,mk,,macedonian,,,mk

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/si.po,19,31,36,0,0,77,542,96,573,si.po,,si,,sinhala,,,si

+ usermode-1.112-4.fc30.src.rpm.stats.csv,po/uk.po,96,573,499,0,0,0,0,96,573,uk.po,,uk,,ukrainian,,,uk

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/nl.po,3485,18207,18186,486,3118,250,2130,4221,23455,nl.po,,nl,,dutch,,,nl

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/gl.po,212,780,1021,1685,8207,2324,14468,4221,23455,gl.po,,gl,,galician,,,gl

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/eu.po,357,861,923,2122,9935,1742,12659,4221,23455,eu.po,,eu,,basque,,,eu

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/fr.po,4214,23423,28301,5,26,2,6,4221,23455,fr.po,,fr,,french,,,fr

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/zh_tw.po,711,2746,1431,2666,15280,844,5429,4221,23455,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/fi.po,1154,4500,3928,2048,10727,1019,8228,4221,23455,fi.po,,fi,,finnish,,,fi

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/uk.po,4214,23423,24760,5,26,2,6,4221,23455,uk.po,,uk,,ukrainian,,,uk

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/sv.po,4198,23252,22218,21,197,2,6,4221,23455,sv.po,,sv,,swedish,,,sv

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/et.po,321,1064,1042,2176,11001,1724,11390,4221,23455,et.po,,et,,estonian,,,et

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/id.po,659,2432,2488,2377,12770,1185,8253,4221,23455,id.po,,id,,indonesian,,,id

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/hr.po,2914,15883,16566,4,22,1303,7550,4221,23455,hr.po,,hr,,croatian,,,hr

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/sl.po,483,1681,1757,2423,12495,1315,9279,4221,23455,sl.po,,sl,,slovenian,,,sl

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/hu.po,573,2085,2138,2369,12377,1279,8993,4221,23455,hu.po,,hu,,hungarian,,,hu

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/it.po,488,1532,1716,2385,12183,1348,9740,4221,23455,it.po,,it,,italian,,,it

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ru.po,1863,8647,8528,1242,6687,1116,8121,4221,23455,ru.po,,ru,,russian,,,ru

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/da.po,3866,21091,19698,278,1901,77,463,4221,23455,da.po,,da,,danish,,,da

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/cs.po,4214,23423,23504,5,26,2,6,4221,23455,cs.po,,cs,,czech,,,cs

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ca.po,487,1692,2199,2424,12522,1310,9241,4221,23455,ca.po,,ca,,catalan,,,ca

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/vi.po,3088,16736,24352,892,5195,241,1524,4221,23455,vi.po,,vi,,vietnamese,,,vi

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,4214,23423,27558,5,26,2,6,4221,23455,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/pl.po,4214,23423,23690,5,26,2,6,4221,23455,pl.po,,pl,,polish,,,pl

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/tr.po,3607,19477,17975,483,3120,131,858,4221,23455,tr.po,,tr,,turkish,,,tr

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/ja.po,3284,17676,8942,625,3674,312,2105,4221,23455,ja.po,,ja,,japanese,,,ja

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/de.po,4214,23423,23417,5,26,2,6,4221,23455,de.po,,de,,german,,,de

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,3610,19451,9165,484,3162,127,842,4221,23455,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ util-linux-2.33.2-1.fc30.src.rpm.stats.csv,po/es.po,4214,23423,30503,5,26,2,6,4221,23455,es.po,,es,,spanish,,,es

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/uk.po,124,566,639,5,39,41,135,170,740,uk.po,,uk,,ukrainian,,,uk

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/ca.po,46,106,126,1,7,123,627,170,740,ca.po,,ca,,catalan,,,ca

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/pt_br.po,157,685,768,0,0,13,55,170,740,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,libdvbv5-po/de.po,157,685,652,0,0,13,55,170,740,de.po,,de,,german,,,de

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/uk.po,0,0,0,21,70,389,2187,410,2257,uk.po,,uk,,ukrainian,,,uk

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/ca.po,29,68,83,17,58,364,2131,410,2257,ca.po,,ca,,catalan,,,ca

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/pt_br.po,309,1496,1798,67,583,34,178,410,2257,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/de.po,309,1496,1479,66,580,35,181,410,2257,de.po,,de,,german,,,de

+ v4l-utils-1.16.3-2.fc30.src.rpm.stats.csv,v4l-utils-po/fr.po,35,145,165,23,214,352,1898,410,2257,fr.po,,fr,,french,,,fr

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/nl.po,1213,5623,5662,0,0,0,0,1213,5623,nl.po,,nl,,dutch,,,nl

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/cs.po,1283,5850,5827,0,0,0,0,1283,5850,cs.po,,cs,,czech,,,cs

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/lv.po,78,504,458,0,0,0,0,78,504,lv.po,,lv,,latvian,,,lv

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/pl.po,1869,9421,9586,0,0,0,0,1869,9421,pl.po,,pl,,polish,,,pl

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ru.po,1955,10076,10183,0,0,0,0,1955,10076,ru.po,,ru,,russian,,,ru

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sk.po,1628,7870,8187,0,0,0,0,1628,7870,sk.po,,sk,,slovak,,,sk

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/fi.po,1941,10000,8507,0,0,0,0,1941,10000,fi.po,,fi,,finnish,,,fi

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/uk.po,1963,10144,9853,0,0,0,0,1963,10144,uk.po,,uk,,ukrainian,,,uk

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sv.po,1697,8198,7860,0,0,0,0,1697,8198,sv.po,,sv,,swedish,,,sv

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/es.po,1733,8457,11200,0,0,0,0,1733,8457,es.po,,es,,spanish,,,es

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/de.po,2002,10409,10483,0,0,0,0,2002,10409,de.po,,de,,german,,,de

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/no.po,1668,8054,7925,0,0,0,0,1668,8054,no.po,,no,,norwegian,,,no

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/eo.po,1954,10207,10602,0,0,0,0,1954,10207,eo.po,,eo,,esperanto,,,eo

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/vi.po,1422,6679,10508,0,0,0,0,1422,6679,vi.po,,vi,,vietnamese,,,vi

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/pt_br.po,1937,9989,11208,0,0,0,0,1937,9989,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ko.po,1869,9456,8881,0,0,0,0,1869,9456,ko.po,,ko,,korean,,,ko

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ja.po,2002,10408,5259,0,0,0,0,2002,10408,ja.po,,ja,,japanese,,,ja

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/af.po,1423,6685,7205,0,0,0,0,1423,6685,af.po,,af,,afrikaans,,,af

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/zh_cn.po,1633,7865,4498,3,15,0,0,1636,7880,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/it.po,2002,10408,11524,0,0,0,0,2002,10408,it.po,,it,,italian,,,it

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/sr.po,1961,10132,11044,0,0,0,0,1961,10132,sr.po,,sr,,serbian,,,sr

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ca.po,1931,9958,12201,0,0,0,0,1931,9958,ca.po,,ca,,catalan,,,ca

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/ga.po,1931,9958,11776,0,0,0,0,1931,9958,ga.po,,ga,,irish,,,ga

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/nb.po,1668,8054,7925,0,0,0,0,1668,8054,nb.po,,nb,,norwegian bokmål,,,nb

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/fr.po,2003,10418,12150,0,0,0,0,2003,10418,fr.po,,fr,,french,,,fr

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/da.po,1963,10135,9803,0,0,0,0,1963,10135,da.po,,da,,danish,,,da

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/en_gb.po,182,1128,1152,0,0,0,0,182,1128,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ vim-8.1.1137-1.fc30.src.rpm.stats.csv,src/po/zh_tw.po,1422,6679,3896,0,0,0,0,1422,6679,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/id.po,134,1228,1096,0,0,0,0,134,1228,id.po,,id,,indonesian,,,id

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pa.po,134,1228,1341,0,0,0,0,134,1228,pa.po,,pa,,punjabi,,,pa

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/te.po,134,1228,951,0,0,0,0,134,1228,te.po,,te,,telugu,,,te

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/oc.po,94,973,1059,0,0,0,0,94,973,oc.po,,oc,,occitan,,,oc

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sk.po,134,1228,1206,0,0,0,0,134,1228,sk.po,,sk,,slovak,,,sk

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bn.po,136,1215,1294,0,0,0,0,136,1215,bn.po,,bn,,bangla,,,bn

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/si.po,66,479,510,1,26,15,311,82,816,si.po,,si,,sinhala,,,si

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hi.po,134,1228,1409,0,0,0,0,134,1228,hi.po,,hi,,hindi,,,hi

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en_gb.po,94,973,998,0,0,0,0,94,973,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ka.po,72,544,457,0,0,0,0,72,544,ka.po,,ka,,georgian,,,ka

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ga.po,23,52,63,0,0,113,1163,136,1215,ga.po,,ga,,irish,,,ga

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ta.po,134,1228,920,0,0,0,0,134,1228,ta.po,,ta,,tamil,,,ta

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/vi.po,94,973,1335,0,0,0,0,94,973,vi.po,,vi,,vietnamese,,,vi

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/tr.po,94,973,749,0,0,0,0,94,973,tr.po,,tr,,turkish,,,tr

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ca.po,134,1228,1371,0,0,0,0,134,1228,ca.po,,ca,,catalan,,,ca

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/th.po,133,1223,366,0,0,0,0,133,1223,th.po,,th,,thai,,,th

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ro.po,128,1184,1186,0,0,0,0,128,1184,ro.po,,ro,,romanian,,,ro

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/et.po,134,1228,976,0,0,0,0,134,1228,et.po,,et,,estonian,,,et

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/cy.po,72,544,584,0,0,0,0,72,544,cy.po,,cy,,welsh,,,cy

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/kn.po,134,1228,995,0,0,0,0,134,1228,kn.po,,kn,,kannada,,,kn

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/lt.po,134,1228,999,0,0,0,0,134,1228,lt.po,,lt,,lithuanian,,,lt

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/be@latin.po,87,500,456,0,0,25,554,112,1054,be@latin.po,latin,be,,belarusian,,,be@latin

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ms.po,61,313,261,0,0,9,227,70,540,ms.po,,ms,,malay,,,ms

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ca@valencia.po,134,1228,1370,0,0,0,0,134,1228,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en@shaw.po,107,764,765,29,451,0,0,136,1215,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nn.po,136,1215,1211,0,0,0,0,136,1215,nn.po,,nn,,norwegian nynorsk,,,nn

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sr.po,134,1228,1187,0,0,0,0,134,1228,sr.po,,sr,,serbian,,,sr

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/or.po,134,1228,1222,0,0,0,0,134,1228,or.po,,or,,odia,,,or

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nl.po,134,1228,1280,0,0,0,0,134,1228,nl.po,,nl,,dutch,,,nl

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sr@latin.po,134,1228,1187,0,0,0,0,134,1228,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/rw.po,3,2,2,55,518,12,20,70,540,rw.po,,rw,,kinyarwanda,,,rw

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ar.po,97,831,837,3,100,10,159,110,1090,ar.po,,ar,,arabic,,,ar

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/gl.po,134,1228,1424,0,0,0,0,134,1228,gl.po,,gl,,galician,,,gl

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/gu.po,134,1228,1323,0,0,0,0,134,1228,gu.po,,gu,,gujarati,,,gu

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mk.po,120,1075,1157,0,0,0,0,120,1075,mk.po,,mk,,macedonian,,,mk

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sl.po,134,1228,1080,0,0,0,0,134,1228,sl.po,,sl,,slovenian,,,sl

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/es.po,94,973,1077,0,0,0,0,94,973,es.po,,es,,spanish,,,es

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hu.po,134,1228,1138,0,0,0,0,134,1228,hu.po,,hu,,hungarian,,,hu

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/lv.po,134,1228,1053,0,0,0,0,134,1228,lv.po,,lv,,latvian,,,lv

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fr.po,134,1228,1421,0,0,0,0,134,1228,fr.po,,fr,,french,,,fr

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mr.po,134,1228,1123,0,0,0,0,134,1228,mr.po,,mr,,marathi,,,mr

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ne.po,52,427,416,26,292,16,254,94,973,ne.po,,ne,,nepali,,,ne

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/nb.po,94,973,916,0,0,0,0,94,973,nb.po,,nb,,norwegian bokmål,,,nb

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/wa.po,60,392,503,0,0,10,148,70,540,wa.po,,wa,,walloon,,,wa

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ml.po,134,1228,847,0,0,0,0,134,1228,ml.po,,ml,,malayalam,,,ml

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ug.po,134,1228,950,0,0,0,0,134,1228,ug.po,,ug,,uyghur,,,ug

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bs.po,94,973,885,0,0,0,0,94,973,bs.po,,bs,,bosnian,,,bs

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/as.po,134,1228,1256,0,0,0,0,134,1228,as.po,,as,,assamese,,,as

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_cn.po,110,1090,278,0,0,0,0,110,1090,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bg.po,94,973,1028,0,0,0,0,94,973,bg.po,,bg,,bulgarian,,,bg

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ast.po,136,1215,1258,0,0,0,0,136,1215,ast.po,,ast,,asturian,,,ast

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/it.po,134,1228,1291,0,0,0,0,134,1228,it.po,,it,,italian,,,it

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/tg.po,110,1090,1175,0,0,0,0,110,1090,tg.po,,tg,,tajik,,,tg

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_hk.po,110,1090,266,0,0,0,0,110,1090,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fa.po,134,1228,1366,0,0,0,0,134,1228,fa.po,,fa,,persian,,,fa

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/eo.po,74,440,431,0,0,57,769,131,1209,eo.po,,eo,,esperanto,,,eo

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pt_br.po,134,1228,1422,0,0,0,0,134,1228,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/zh_tw.po,94,973,223,0,0,0,0,94,973,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/is.po,87,742,707,0,0,7,231,94,973,is.po,,is,,icelandic,,,is

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ko.po,134,1228,919,0,0,0,0,134,1228,ko.po,,ko,,korean,,,ko

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/az.po,70,540,499,0,0,0,0,70,540,az.po,,az,,azerbaijani,,,az

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/pl.po,94,973,911,0,0,0,0,94,973,pl.po,,pl,,polish,,,pl

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/an.po,110,1090,1182,0,0,0,0,110,1090,an.po,,an,,aragonese,,,an

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/xh.po,70,540,452,0,0,0,0,70,540,xh.po,,xh,,xhosa,,,xh

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/cs.po,134,1228,1166,0,0,0,0,134,1228,cs.po,,cs,,czech,,,cs

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/he.po,134,1228,1210,0,0,0,0,134,1228,he.po,,he,,hebrew,,,he

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/km.po,133,1223,435,0,0,0,0,133,1223,km.po,,km,,khmer,,,km

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/eu.po,134,1228,1049,0,0,0,0,134,1228,eu.po,,eu,,basque,,,eu

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/bn_in.po,134,1228,1279,0,0,0,0,134,1228,bn_in.po,,bn,in,bangla,,india,bn_in

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/el.po,94,973,1102,0,0,0,0,94,973,el.po,,el,,greek,,,el

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mn.po,63,395,313,0,0,7,145,70,540,mn.po,,mn,,mongolian,,,mn

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fur.po,94,973,1086,0,0,0,0,94,973,fur.po,,fur,,friulian,,,fur

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/en_ca.po,72,544,542,0,0,0,0,72,544,en_ca.po,,en,ca,english,,canada,en_ca

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sq.po,113,1031,1182,0,0,0,0,113,1031,sq.po,,sq,,albanian,,,sq

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/hr.po,75,626,588,4,30,34,375,113,1031,hr.po,,hr,,croatian,,,hr

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ku.po,12,13,15,0,0,58,527,70,540,ku.po,,ku,,kurdish,,,ku

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/fi.po,134,1228,856,0,0,0,0,134,1228,fi.po,,fi,,finnish,,,fi

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/da.po,94,973,867,0,0,0,0,94,973,da.po,,da,,danish,,,da

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/dz.po,82,816,337,0,0,0,0,82,816,dz.po,,dz,,dzongkha,,,dz

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/be.po,134,1228,1087,0,0,0,0,134,1228,be.po,,be,,belarusian,,,be

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/uk.po,134,1228,1035,0,0,0,0,134,1228,uk.po,,uk,,ukrainian,,,uk

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/sv.po,94,973,884,0,0,0,0,94,973,sv.po,,sv,,swedish,,,sv

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ru.po,134,1228,1095,0,0,0,0,134,1228,ru.po,,ru,,russian,,,ru

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/mai.po,61,554,584,0,0,75,661,136,1215,mai.po,,mai,,maithili,,,mai

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/ja.po,110,1090,302,0,0,0,0,110,1090,ja.po,,ja,,japanese,,,ja

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/kk.po,41,131,131,0,0,53,842,94,973,kk.po,,kk,,kazakh,,,kk

+ vino-3.22.0-15.fc30.src.rpm.stats.csv,po/de.po,134,1228,1301,0,0,0,0,134,1228,de.po,,de,,german,,,de

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/sv.po,47,244,196,0,0,19,145,66,389,sv.po,,sv,,swedish,,,sv

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/nl.po,47,244,252,0,0,19,145,66,389,nl.po,,nl,,dutch,,,nl

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/fr.po,47,244,276,0,0,19,145,66,389,fr.po,,fr,,french,,,fr

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/ca.po,69,415,547,0,0,0,0,69,415,ca.po,,ca,,catalan,,,ca

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/de.po,55,323,265,0,0,11,66,66,389,de.po,,de,,german,,,de

+ virtualbox-guest-additions-6.0.4-2.fc30.src.rpm.stats.csv,src/vbox/additions/3d/mesa/mesa-17.3.9/src/util/xmlpool/es.po,69,415,537,0,0,0,0,69,415,es.po,,es,,spanish,,,es

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/zh_tw.po,151,745,283,2,10,1,8,154,763,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/de_ch.po,49,186,184,0,0,105,577,154,763,de_ch.po,,de,ch,german,,switzerland,de_ch

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/eu.po,33,117,109,0,0,121,646,154,763,eu.po,,eu,,basque,,,eu

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/nl.po,151,745,817,2,10,1,8,154,763,nl.po,,nl,,dutch,,,nl

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ko.po,151,745,712,2,10,1,8,154,763,ko.po,,ko,,korean,,,ko

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/cs.po,151,745,724,2,10,1,8,154,763,cs.po,,cs,,czech,,,cs

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ml.po,151,745,653,2,10,1,8,154,763,ml.po,,ml,,malayalam,,,ml

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/as.po,151,745,798,2,10,1,8,154,763,as.po,,as,,assamese,,,as

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/tr.po,101,427,385,2,10,51,326,154,763,tr.po,,tr,,turkish,,,tr

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/sk.po,12,34,34,0,0,142,729,154,763,sk.po,,sk,,slovak,,,sk

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/te.po,151,745,665,2,10,1,8,154,763,te.po,,te,,telugu,,,te

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ja.po,151,745,334,2,10,1,8,154,763,ja.po,,ja,,japanese,,,ja

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bn.po,151,745,816,2,10,1,8,154,763,bn.po,,bn,,bangla,,,bn

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bg.po,143,715,812,2,10,9,38,154,763,bg.po,,bg,,bulgarian,,,bg

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/fr.po,151,745,1024,2,10,1,8,154,763,fr.po,,fr,,french,,,fr

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/or.po,151,745,799,2,10,1,8,154,763,or.po,,or,,odia,,,or

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pa.po,151,745,796,2,10,1,8,154,763,pa.po,,pa,,punjabi,,,pa

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/es.po,151,745,1032,2,10,1,8,154,763,es.po,,es,,spanish,,,es

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/id.po,8,40,39,0,0,146,723,154,763,id.po,,id,,indonesian,,,id

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/en_gb.po,145,720,719,2,10,7,33,154,763,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pt_br.po,151,745,928,2,10,1,8,154,763,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pl.po,151,745,759,2,10,1,8,154,763,pl.po,,pl,,polish,,,pl

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/sv.po,151,745,749,2,10,1,8,154,763,sv.po,,sv,,swedish,,,sv

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/it.po,151,745,905,2,10,1,8,154,763,it.po,,it,,italian,,,it

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/hu.po,151,745,771,2,10,1,8,154,763,hu.po,,hu,,hungarian,,,hu

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/mr.po,151,745,735,2,10,1,8,154,763,mr.po,,mr,,marathi,,,mr

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/kn.po,151,745,718,2,10,1,8,154,763,kn.po,,kn,,kannada,,,kn

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/de.po,151,745,760,2,10,1,8,154,763,de.po,,de,,german,,,de

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ru.po,148,732,719,2,10,4,21,154,763,ru.po,,ru,,russian,,,ru

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/hi.po,151,745,834,2,10,1,8,154,763,hi.po,,hi,,hindi,,,hi

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/bn_in.po,143,707,777,2,10,9,46,154,763,bn_in.po,,bn,in,bangla,,india,bn_in

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/zh_cn.po,151,745,322,2,10,1,8,154,763,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ta.po,151,745,660,2,10,1,8,154,763,ta.po,,ta,,tamil,,,ta

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/ca.po,151,745,997,2,10,1,8,154,763,ca.po,,ca,,catalan,,,ca

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/gu.po,151,745,841,2,10,1,8,154,763,gu.po,,gu,,gujarati,,,gu

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/pt.po,151,745,877,2,10,1,8,154,763,pt.po,,pt,,portuguese,,,pt

+ volume_key-0.3.12-3.fc30.src.rpm.stats.csv,po/uk.po,151,745,794,2,10,1,8,154,763,uk.po,,uk,,ukrainian,,,uk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/kk.po,5,31,29,0,0,0,0,5,31,kk.po,,kk,,kazakh,,,kk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,5,31,10,0,0,0,0,5,31,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mr.po,19,108,112,0,0,0,0,19,108,mr.po,,mr,,marathi,,,mr

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ro.po,5,31,42,0,0,0,0,5,31,ro.po,,ro,,romanian,,,ro

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gd.po,5,31,42,0,0,0,0,5,31,gd.po,,gd,,scottish gaelic,,,gd

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bg.po,5,31,37,0,0,0,0,5,31,bg.po,,bg,,bulgarian,,,bg

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/eu.po,5,31,26,0,0,0,0,5,31,eu.po,,eu,,basque,,,eu

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,13,80,76,0,0,0,0,13,80,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nn.po,19,108,111,0,0,0,0,19,108,nn.po,,nn,,norwegian nynorsk,,,nn

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/dz.po,20,116,62,0,0,0,0,20,116,dz.po,,dz,,dzongkha,,,dz

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sk.po,5,31,35,0,0,0,0,5,31,sk.po,,sk,,slovak,,,sk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/rw.po,0,0,0,17,92,1,4,18,96,rw.po,,rw,,kinyarwanda,,,rw

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/he.po,5,31,27,0,0,0,0,5,31,he.po,,he,,hebrew,,,he

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sl.po,5,31,37,0,0,0,0,5,31,sl.po,,sl,,slovenian,,,sl

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gl.po,5,31,42,0,0,0,0,5,31,gl.po,,gl,,galician,,,gl

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mk.po,20,116,136,0,0,0,0,20,116,mk.po,,mk,,macedonian,,,mk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/be.po,5,31,31,0,0,0,0,5,31,be.po,,be,,belarusian,,,be

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pa.po,16,83,99,0,0,0,0,16,83,pa.po,,pa,,punjabi,,,pa

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mai.po,12,66,75,0,0,2,18,14,84,mai.po,,mai,,maithili,,,mai

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/oc.po,5,31,43,0,0,0,0,5,31,oc.po,,oc,,occitan,,,oc

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/az.po,18,96,96,0,0,0,0,18,96,az.po,,az,,azerbaijani,,,az

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fr.po,5,31,43,0,0,0,0,5,31,fr.po,,fr,,french,,,fr

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ast.po,14,84,111,0,0,0,0,14,84,ast.po,,ast,,asturian,,,ast

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mn.po,14,84,79,0,0,0,0,14,84,mn.po,,mn,,mongolian,,,mn

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/or.po,14,84,81,0,0,0,0,14,84,or.po,,or,,odia,,,or

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ug.po,13,80,79,0,0,0,0,13,80,ug.po,,ug,,uyghur,,,ug

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ja.po,13,80,36,0,0,0,0,13,80,ja.po,,ja,,japanese,,,ja

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,14,84,93,0,0,0,0,14,84,bn_in.po,,bn,in,bangla,,india,bn_in

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/cy.po,18,96,105,0,0,0,0,18,96,cy.po,,cy,,welsh,,,cy

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/xh.po,18,96,95,0,0,0,0,18,96,xh.po,,xh,,xhosa,,,xh

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ne.po,19,108,117,0,0,0,0,19,108,ne.po,,ne,,nepali,,,ne

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ca.po,5,31,44,0,0,0,0,5,31,ca.po,,ca,,catalan,,,ca

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/gu.po,14,84,96,0,0,0,0,14,84,gu.po,,gu,,gujarati,,,gu

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/lt.po,5,31,36,0,0,0,0,5,31,lt.po,,lt,,lithuanian,,,lt

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bn.po,14,84,107,0,0,0,0,14,84,bn.po,,bn,,bangla,,,bn

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/id.po,5,31,33,0,0,0,0,5,31,id.po,,id,,indonesian,,,id

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/es.po,5,31,39,0,0,0,0,5,31,es.po,,es,,spanish,,,es

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/si.po,19,108,113,0,0,0,0,19,108,si.po,,si,,sinhala,,,si

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hr.po,5,31,31,0,0,0,0,5,31,hr.po,,hr,,croatian,,,hr

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/eo.po,5,31,35,0,0,0,0,5,31,eo.po,,eo,,esperanto,,,eo

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ga.po,13,80,101,0,0,0,0,13,80,ga.po,,ga,,irish,,,ga

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/am.po,1,2,2,0,0,17,94,18,96,am.po,,am,,amharic,,,am

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,20,116,109,0,0,0,0,20,116,be@latin.po,latin,be,,belarusian,,,be@latin

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ar.po,13,80,84,0,0,0,0,13,80,ar.po,,ar,,arabic,,,ar

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/as.po,16,83,96,0,0,0,0,16,83,as.po,,as,,assamese,,,as

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sv.po,5,31,33,0,0,0,0,5,31,sv.po,,sv,,swedish,,,sv

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/tr.po,5,31,26,0,0,0,0,5,31,tr.po,,tr,,turkish,,,tr

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ky.po,18,96,95,0,0,0,0,18,96,ky.po,,ky,,kyrgyz,,,ky

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/vi.po,20,116,170,0,0,0,0,20,116,vi.po,,vi,,vietnamese,,,vi

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,5,31,44,0,0,0,0,5,31,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/te.po,19,108,97,0,0,0,0,19,108,te.po,,te,,telugu,,,te

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/el.po,5,31,39,0,0,0,0,5,31,el.po,,el,,greek,,,el

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/mi.po,0,0,0,11,58,7,38,18,96,mi.po,,mi,,maori,,,mi

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,16,83,31,0,0,0,0,16,83,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/an.po,13,64,84,0,0,0,0,13,64,an.po,,an,,aragonese,,,an

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fa.po,5,31,39,0,0,0,0,5,31,fa.po,,fa,,persian,,,fa

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pl.po,6,33,39,0,0,0,0,6,33,pl.po,,pl,,polish,,,pl

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ko.po,5,31,30,0,0,0,0,5,31,ko.po,,ko,,korean,,,ko

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/kn.po,19,108,96,0,0,0,0,19,108,kn.po,,kn,,kannada,,,kn

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/uk.po,16,83,84,0,0,0,0,16,83,uk.po,,uk,,ukrainian,,,uk

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ru.po,5,31,38,0,0,0,0,5,31,ru.po,,ru,,russian,,,ru

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/cs.po,5,31,33,0,0,0,0,5,31,cs.po,,cs,,czech,,,cs

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ang.po,6,27,31,0,0,12,69,18,96,ang.po,,ang,,old english,,,ang

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,13,80,80,0,0,0,0,13,80,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/is.po,5,31,39,0,0,0,0,5,31,is.po,,is,,icelandic,,,is

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nl.po,5,31,40,0,0,0,0,5,31,nl.po,,nl,,dutch,,,nl

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,5,31,37,0,0,0,0,5,31,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,5,31,10,0,0,0,0,5,31,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ku.po,3,10,8,0,0,15,86,18,96,ku.po,,ku,,kurdish,,,ku

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/bs.po,13,64,63,0,0,0,0,13,64,bs.po,,bs,,bosnian,,,bs

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ta.po,13,80,77,0,0,0,0,13,80,ta.po,,ta,,tamil,,,ta

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/li.po,16,81,109,2,15,0,0,18,96,li.po,,li,,limburgish,,,li

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ml.po,5,31,25,0,0,0,0,5,31,ml.po,,ml,,malayalam,,,ml

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hi.po,14,84,110,0,0,0,0,14,84,hi.po,,hi,,hindi,,,hi

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/lv.po,5,31,27,0,0,0,0,5,31,lv.po,,lv,,latvian,,,lv

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/th.po,14,84,41,0,0,0,0,14,84,th.po,,th,,thai,,,th

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fi.po,5,31,29,0,0,0,0,5,31,fi.po,,fi,,finnish,,,fi

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,19,108,108,0,0,0,0,19,108,en_ca.po,,en,ca,english,,canada,en_ca

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/tg.po,13,80,86,0,0,0,0,13,80,tg.po,,tg,,tajik,,,tg

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ms.po,18,96,101,0,0,0,0,18,96,ms.po,,ms,,malay,,,ms

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/et.po,13,80,71,0,0,0,0,13,80,et.po,,et,,estonian,,,et

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/da.po,5,31,36,0,0,0,0,5,31,da.po,,da,,danish,,,da

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sq.po,20,116,167,0,0,0,0,20,116,sq.po,,sq,,albanian,,,sq

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,5,31,31,0,0,0,0,5,31,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/it.po,5,31,39,0,0,0,0,5,31,it.po,,it,,italian,,,it

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/wa.po,18,96,169,0,0,0,0,18,96,wa.po,,wa,,walloon,,,wa

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,5,31,34,0,0,0,0,5,31,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/sr.po,5,31,34,0,0,0,0,5,31,sr.po,,sr,,serbian,,,sr

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nds.po,14,84,99,0,0,0,0,14,84,nds.po,,nds,,low german,,,nds

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/de.po,5,31,37,0,0,0,0,5,31,de.po,,de,,german,,,de

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/nb.po,5,31,37,0,0,0,0,5,31,nb.po,,nb,,norwegian bokmål,,,nb

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/hu.po,5,31,37,0,0,0,0,5,31,hu.po,,hu,,hungarian,,,hu

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/pt.po,5,31,34,0,0,0,0,5,31,pt.po,,pt,,portuguese,,,pt

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/ka.po,18,96,90,0,0,0,0,18,96,ka.po,,ka,,georgian,,,ka

+ vte291-0.56.1-1.fc30.src.rpm.stats.csv,po/fur.po,5,31,41,0,0,0,0,5,31,fur.po,,fur,,friulian,,,fur

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/nb.po,97,215,213,114,507,359,1901,570,2623,nb.po,,nb,,norwegian bokmål,,,nb

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/vi.po,255,1062,1351,137,638,178,923,570,2623,vi.po,,vi,,vietnamese,,,vi

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/zh_cn.po,258,1073,376,137,638,175,912,570,2623,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ko.po,569,2622,2057,0,0,1,1,570,2623,ko.po,,ko,,korean,,,ko

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/lv.po,163,671,601,119,550,288,1402,570,2623,lv.po,,lv,,latvian,,,lv

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ar.po,258,1073,959,137,638,175,912,570,2623,ar.po,,ar,,arabic,,,ar

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/it.po,584,2277,2491,0,0,1,1,585,2278,it.po,,it,,italian,,,it

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pa.po,163,671,691,134,644,273,1308,570,2623,pa.po,,pa,,punjabi,,,pa

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ja.po,582,2682,900,3,14,2,12,587,2708,ja.po,,ja,,japanese,,,ja

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/he.po,376,1567,1571,0,0,0,0,376,1567,he.po,,he,,hebrew,,,he

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sr@latin.po,258,1073,1007,137,638,175,912,570,2623,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/el.po,384,1605,1790,0,0,1,1,385,1606,el.po,,el,,greek,,,el

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/en_ca.po,337,1441,1441,123,587,110,593,570,2621,en_ca.po,,en,ca,english,,canada,en_ca

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ta.po,368,1545,1333,0,0,0,0,368,1545,ta.po,,ta,,tamil,,,ta

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/lt.po,254,1052,955,138,641,178,930,570,2623,lt.po,,lt,,lithuanian,,,lt

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/cs.po,350,1295,1281,86,491,134,837,570,2623,cs.po,,cs,,czech,,,cs

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/nl.po,533,2407,2219,27,161,26,131,586,2699,nl.po,,nl,,dutch,,,nl

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/fr.po,404,1536,1908,46,240,94,388,544,2164,fr.po,,fr,,french,,,fr

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sr.po,258,1073,1007,137,638,175,912,570,2623,sr.po,,sr,,serbian,,,sr

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sl.po,469,1889,1777,62,355,60,466,591,2710,sl.po,,sl,,slovenian,,,sl

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ro.po,425,1834,1936,85,415,60,374,570,2623,ro.po,,ro,,romanian,,,ro

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/de.po,396,1637,1532,0,0,0,0,396,1637,de.po,,de,,german,,,de

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/eo.po,106,303,287,60,258,404,2062,570,2623,eo.po,,eo,,esperanto,,,eo

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/gu.po,368,1545,1592,0,0,0,0,368,1545,gu.po,,gu,,gujarati,,,gu

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/gl.po,575,2647,3318,2,20,5,19,582,2686,gl.po,,gl,,galician,,,gl

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ml.po,179,429,414,0,0,398,2252,577,2681,ml.po,,ml,,malayalam,,,ml

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/id.po,518,1880,1819,0,0,50,355,568,2235,id.po,,id,,indonesian,,,id

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/te.po,365,1526,1270,0,0,0,0,365,1526,te.po,,te,,telugu,,,te

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pt_br.po,568,2215,2583,0,0,0,0,568,2215,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/mr.po,365,1526,1440,0,0,0,0,365,1526,mr.po,,mr,,marathi,,,mr

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pt.po,319,1375,1627,136,643,115,605,570,2623,pt.po,,pt,,portuguese,,,pt

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/et.po,239,969,695,136,628,195,1026,570,2623,et.po,,et,,estonian,,,et

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/eu.po,257,1066,917,138,645,175,912,570,2623,eu.po,,eu,,basque,,,eu

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/fi.po,118,291,256,0,0,265,1308,383,1599,fi.po,,fi,,finnish,,,fi

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/tr.po,385,1606,1436,0,0,0,0,385,1606,tr.po,,tr,,turkish,,,tr

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ru.po,145,605,519,129,630,296,1388,570,2623,ru.po,,ru,,russian,,,ru

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/es.po,452,1589,1966,25,158,70,419,547,2166,es.po,,es,,spanish,,,es

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/or.po,365,1526,1575,0,0,0,0,365,1526,or.po,,or,,odia,,,or

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/pl.po,585,2278,2223,0,0,0,0,585,2278,pl.po,,pl,,polish,,,pl

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/bg.po,385,1606,1882,0,0,0,0,385,1606,bg.po,,bg,,bulgarian,,,bg

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/hu.po,397,1647,1306,0,0,0,0,397,1647,hu.po,,hu,,hungarian,,,hu

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/sv.po,533,2160,1786,0,0,0,0,533,2160,sv.po,,sv,,swedish,,,sv

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/ca.po,178,462,626,0,0,198,1105,376,1567,ca.po,,ca,,catalan,,,ca

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/as.po,367,1543,1583,0,0,0,0,367,1543,as.po,,as,,assamese,,,as

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/uk.po,567,2213,2138,0,0,0,0,567,2213,uk.po,,uk,,ukrainian,,,uk

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/en_gb.po,589,2702,2702,0,0,0,0,589,2702,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/hi.po,365,1526,1775,0,0,0,0,365,1526,hi.po,,hi,,hindi,,,hi

+ webkit2gtk3-2.24.1-1.fc30.src.rpm.stats.csv,source/webcore/platform/gtk/po/kn.po,373,1551,1305,0,0,0,0,373,1551,kn.po,,kn,,kannada,,,kn

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ga.po,605,3665,4245,28,208,11,123,644,3996,ga.po,,ga,,irish,,,ga

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/de.po,639,3955,4327,1,10,4,31,644,3996,de.po,,de,,german,,,de

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/nl.po,529,3087,3137,67,474,48,435,644,3996,nl.po,,nl,,dutch,,,nl

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/et.po,639,3955,3532,1,10,4,31,644,3996,et.po,,et,,estonian,,,et

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sl.po,254,1253,1351,206,1421,184,1322,644,3996,sl.po,,sl,,slovenian,,,sl

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/es.po,568,3426,4107,48,322,28,248,644,3996,es.po,,es,,spanish,,,es

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/fr.po,605,3665,4386,28,208,11,123,644,3996,fr.po,,fr,,french,,,fr

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/id.po,351,1801,1874,211,1537,82,658,644,3996,id.po,,id,,indonesian,,,id

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/fi.po,503,2919,2491,69,503,72,574,644,3996,fi.po,,fi,,finnish,,,fi

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/lt.po,165,777,741,247,1614,232,1605,644,3996,lt.po,,lt,,lithuanian,,,lt

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/gl.po,234,1081,1370,149,906,261,2009,644,3996,gl.po,,gl,,galician,,,gl

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ro.po,102,407,453,120,663,422,2926,644,3996,ro.po,,ro,,romanian,,,ro

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/zh_cn.po,634,3897,1916,2,14,8,85,644,3996,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pl.po,639,3955,4043,1,10,4,31,644,3996,pl.po,,pl,,polish,,,pl

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pt_br.po,605,3665,4415,28,208,11,123,644,3996,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ru.po,639,3955,3862,1,10,4,31,644,3996,ru.po,,ru,,russian,,,ru

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/eu.po,120,440,462,118,666,406,2890,644,3996,eu.po,,eu,,basque,,,eu

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ca.po,356,1857,2570,216,1565,72,574,644,3996,ca.po,,ca,,catalan,,,ca

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/vi.po,605,3665,5370,28,208,11,123,644,3996,vi.po,,vi,,vietnamese,,,vi

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/cs.po,639,3955,4191,1,10,4,31,644,3996,cs.po,,cs,,czech,,,cs

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/tr.po,605,3665,3411,28,208,11,123,644,3996,tr.po,,tr,,turkish,,,tr

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/eo.po,639,3955,4118,1,10,4,31,644,3996,eo.po,,eo,,esperanto,,,eo

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sr.po,605,3665,3849,28,208,11,123,644,3996,sr.po,,sr,,serbian,,,sr

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/he.po,85,341,427,114,618,445,3037,644,3996,he.po,,he,,hebrew,,,he

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/it.po,639,3955,4487,1,10,4,31,644,3996,it.po,,it,,italian,,,it

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/be.po,217,940,924,135,779,292,2277,644,3996,be.po,,be,,belarusian,,,be

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/uk.po,639,3955,4112,1,10,4,31,644,3996,uk.po,,uk,,ukrainian,,,uk

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/zh_tw.po,639,3955,1938,1,10,4,31,644,3996,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/da.po,254,1253,1238,212,1459,178,1284,644,3996,da.po,,da,,danish,,,da

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/en_gb.po,102,407,407,119,656,423,2933,644,3996,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/pt.po,639,3955,4365,1,10,4,31,644,3996,pt.po,,pt,,portuguese,,,pt

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/ja.po,639,3955,1957,1,10,4,31,644,3996,ja.po,,ja,,japanese,,,ja

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/bg.po,93,370,432,112,624,439,3002,644,3996,bg.po,,bg,,bulgarian,,,bg

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sk.po,639,3955,4071,1,10,4,31,644,3996,sk.po,,sk,,slovak,,,sk

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/sv.po,639,3955,3808,1,10,4,31,644,3996,sv.po,,sv,,swedish,,,sv

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/hu.po,605,3665,3811,28,208,11,123,644,3996,hu.po,,hu,,hungarian,,,hu

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/hr.po,638,3949,4325,2,16,4,31,644,3996,hr.po,,hr,,croatian,,,hr

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/nb.po,639,3955,4174,1,10,4,31,644,3996,nb.po,,nb,,norwegian bokmål,,,nb

+ wget-1.20.3-1.fc30.src.rpm.stats.csv,po/el.po,93,370,450,120,658,431,2968,644,3996,el.po,,el,,greek,,,el

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/zh_cn.po,30,493,246,0,0,0,0,30,493,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/ru.po,30,493,473,0,0,0,0,30,493,ru.po,,ru,,russian,,,ru

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/pt_br.po,23,163,182,5,103,2,227,30,493,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/pl.po,31,497,495,0,0,0,0,31,497,pl.po,,pl,,polish,,,pl

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/nb.po,5,15,14,4,33,21,445,30,493,nb.po,,nb,,norwegian bokmål,,,nb

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/ja.po,21,123,74,7,143,2,227,30,493,ja.po,,ja,,japanese,,,ja

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/it.po,30,493,549,0,0,0,0,30,493,it.po,,it,,italian,,,it

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/fr.po,30,493,582,0,0,0,0,30,493,fr.po,,fr,,french,,,fr

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/fi.po,30,493,377,0,0,0,0,30,493,fi.po,,fi,,finnish,,,fi

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/es.po,30,493,587,0,0,0,0,30,493,es.po,,es,,spanish,,,es

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/el.po,21,123,141,7,143,2,227,30,493,el.po,,el,,greek,,,el

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/de.po,30,493,494,0,0,0,0,30,493,de.po,,de,,german,,,de

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/da.po,30,493,447,0,0,0,0,30,493,da.po,,da,,danish,,,da

+ whois-5.4.2-1.fc30.src.rpm.stats.csv,po/cs.po,30,493,517,0,0,0,0,30,493,cs.po,,cs,,czech,,,cs

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,12,88,15,3,25,5,19,20,132,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/id.po,20,132,104,0,0,0,0,20,132,id.po,,id,,indonesian,,,id

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sk.po,12,88,76,3,25,5,19,20,132,sk.po,,sk,,slovak,,,sk

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/es.po,12,88,96,3,25,5,19,20,132,es.po,,es,,spanish,,,es

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/cs.po,20,132,115,0,0,0,0,20,132,cs.po,,cs,,czech,,,cs

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,12,88,15,3,25,5,19,20,132,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/pl.po,20,132,110,0,0,0,0,20,132,pl.po,,pl,,polish,,,pl

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/uk.po,20,132,136,0,0,0,0,20,132,uk.po,,uk,,ukrainian,,,uk

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/tr.po,12,88,57,3,25,5,19,20,132,tr.po,,tr,,turkish,,,tr

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/fr.po,12,88,85,3,25,5,19,20,132,fr.po,,fr,,french,,,fr

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,20,132,135,0,0,0,0,20,132,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/lt.po,20,132,115,0,0,0,0,20,132,lt.po,,lt,,lithuanian,,,lt

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/de.po,12,88,81,3,25,5,19,20,132,de.po,,de,,german,,,de

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sr.po,12,88,85,3,25,5,19,20,132,sr.po,,sr,,serbian,,,sr

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/da.po,20,132,132,0,0,0,0,20,132,da.po,,da,,danish,,,da

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/it.po,20,132,131,0,0,0,0,20,132,it.po,,it,,italian,,,it

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/gl.po,12,88,88,3,25,5,19,20,132,gl.po,,gl,,galician,,,gl

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/sv.po,12,88,72,3,25,5,19,20,132,sv.po,,sv,,swedish,,,sv

+ xdg-desktop-portal-1.2.0-3.fc30.src.rpm.stats.csv,po/hu.po,12,88,64,3,25,5,19,20,132,hu.po,,hu,,hungarian,,,hu

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_tw.po,48,170,56,0,0,1,3,49,173,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/id.po,48,170,171,0,0,1,3,49,173,id.po,,id,,indonesian,,,id

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sk.po,27,103,101,5,22,17,48,49,173,sk.po,,sk,,slovak,,,sk

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/es.po,45,155,181,2,14,2,4,49,173,es.po,,es,,spanish,,,es

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/cs.po,48,172,179,0,0,1,1,49,173,cs.po,,cs,,czech,,,cs

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/zh_cn.po,9,22,11,9,35,31,116,49,173,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/pl.po,49,173,170,0,0,0,0,49,173,pl.po,,pl,,polish,,,pl

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/uk.po,48,170,186,0,0,1,3,49,173,uk.po,,uk,,ukrainian,,,uk

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/tr.po,48,170,155,0,0,1,3,49,173,tr.po,,tr,,turkish,,,tr

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/fr.po,18,51,59,6,25,25,97,49,173,fr.po,,fr,,french,,,fr

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/pt_br.po,48,170,190,0,0,1,3,49,173,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/lt.po,48,170,156,0,0,1,3,49,173,lt.po,,lt,,lithuanian,,,lt

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/de.po,47,169,182,0,0,2,4,49,173,de.po,,de,,german,,,de

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sr.po,9,22,28,9,35,31,116,49,173,sr.po,,sr,,serbian,,,sr

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/da.po,48,170,173,0,0,1,3,49,173,da.po,,da,,danish,,,da

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/it.po,48,170,172,0,0,1,3,49,173,it.po,,it,,italian,,,it

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/gl.po,27,103,118,5,22,17,48,49,173,gl.po,,gl,,galician,,,gl

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/sv.po,48,170,168,0,0,1,3,49,173,sv.po,,sv,,swedish,,,sv

+ xdg-desktop-portal-gtk-1.2.0-3.fc30.src.rpm.stats.csv,po/hu.po,45,155,149,2,14,2,4,49,173,hu.po,,hu,,hungarian,,,hu

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_tw.po,28,28,28,0,0,0,0,28,28,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_hk.po,26,26,26,2,2,0,0,28,28,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/zh_cn.po,28,28,28,0,0,0,0,28,28,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/vi.po,28,28,50,0,0,0,0,28,28,vi.po,,vi,,vietnamese,,,vi

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/uk.po,28,28,28,0,0,0,0,28,28,uk.po,,uk,,ukrainian,,,uk

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/tr.po,26,26,26,2,2,0,0,28,28,tr.po,,tr,,turkish,,,tr

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/th.po,28,28,28,0,0,0,0,28,28,th.po,,th,,thai,,,th

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/te.po,28,28,28,0,0,0,0,28,28,te.po,,te,,telugu,,,te

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ta.po,28,28,28,0,0,0,0,28,28,ta.po,,ta,,tamil,,,ta

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sv.po,28,28,28,0,0,0,0,28,28,sv.po,,sv,,swedish,,,sv

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sr@latn.po,26,26,28,2,2,0,0,28,28,sr@latn.po,latn,sr,,serbian,latin,,sr@latn

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sr.po,28,28,30,0,0,0,0,28,28,sr.po,,sr,,serbian,,,sr

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sq.po,26,26,32,2,2,0,0,28,28,sq.po,,sq,,albanian,,,sq

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sl.po,28,28,28,0,0,0,0,28,28,sl.po,,sl,,slovenian,,,sl

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/sk.po,28,28,28,0,0,0,0,28,28,sk.po,,sk,,slovak,,,sk

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ru.po,28,28,32,0,0,0,0,28,28,ru.po,,ru,,russian,,,ru

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ro.po,28,28,28,0,0,0,0,28,28,ro.po,,ro,,romanian,,,ro

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pt_br.po,28,28,32,0,0,0,0,28,28,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pt.po,28,28,32,0,0,0,0,28,28,pt.po,,pt,,portuguese,,,pt

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ps.po,26,26,26,2,2,0,0,28,28,ps.po,,ps,,pashto,,,ps

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pl.po,28,28,28,0,0,0,0,28,28,pl.po,,pl,,polish,,,pl

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/pa.po,24,24,24,2,2,2,2,28,28,pa.po,,pa,,punjabi,,,pa

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/or.po,28,28,28,0,0,0,0,28,28,or.po,,or,,odia,,,or

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nn.po,28,28,28,0,0,0,0,28,28,nn.po,,nn,,norwegian nynorsk,,,nn

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nl.po,28,28,28,0,0,0,0,28,28,nl.po,,nl,,dutch,,,nl

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nds.po,26,26,26,2,2,0,0,28,28,nds.po,,nds,,low german,,,nds

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/nb.po,28,28,28,0,0,0,0,28,28,nb.po,,nb,,norwegian bokmål,,,nb

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/mr.po,28,28,28,0,0,0,0,28,28,mr.po,,mr,,marathi,,,mr

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ml.po,28,28,28,0,0,0,0,28,28,ml.po,,ml,,malayalam,,,ml

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/mk.po,26,26,26,2,2,0,0,28,28,mk.po,,mk,,macedonian,,,mk

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/lv.po,28,28,28,0,0,0,0,28,28,lv.po,,lv,,latvian,,,lv

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/lt.po,28,28,28,0,0,0,0,28,28,lt.po,,lt,,lithuanian,,,lt

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ky.po,28,28,32,0,0,0,0,28,28,ky.po,,ky,,kyrgyz,,,ky

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ku.po,26,26,26,2,2,0,0,28,28,ku.po,,ku,,kurdish,,,ku

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ko.po,28,28,30,0,0,0,0,28,28,ko.po,,ko,,korean,,,ko

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/kn.po,28,28,28,0,0,0,0,28,28,kn.po,,kn,,kannada,,,kn

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/kk.po,28,28,30,0,0,0,0,28,28,kk.po,,kk,,kazakh,,,kk

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ja.po,28,28,28,0,0,0,0,28,28,ja.po,,ja,,japanese,,,ja

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/it.po,28,28,28,0,0,0,0,28,28,it.po,,it,,italian,,,it

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/is.po,28,28,30,0,0,0,0,28,28,is.po,,is,,icelandic,,,is

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/id.po,28,28,28,0,0,0,0,28,28,id.po,,id,,indonesian,,,id

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ia.po,28,28,28,0,0,0,0,28,28,ia.po,,ia,,interlingua,,,ia

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hu.po,28,28,28,0,0,0,0,28,28,hu.po,,hu,,hungarian,,,hu

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hr.po,28,28,30,0,0,0,0,28,28,hr.po,,hr,,croatian,,,hr

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/hi.po,28,28,30,0,0,0,0,28,28,hi.po,,hi,,hindi,,,hi

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/he.po,28,28,30,0,0,0,0,28,28,he.po,,he,,hebrew,,,he

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gu.po,28,28,28,0,0,0,0,28,28,gu.po,,gu,,gujarati,,,gu

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gl.po,28,28,28,0,0,0,0,28,28,gl.po,,gl,,galician,,,gl

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/gd.po,28,28,34,0,0,0,0,28,28,gd.po,,gd,,scottish gaelic,,,gd

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ga.po,26,26,26,2,2,0,0,28,28,ga.po,,ga,,irish,,,ga

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fur.po,28,28,28,0,0,0,0,28,28,fur.po,,fur,,friulian,,,fur

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fr.po,28,28,28,0,0,0,0,28,28,fr.po,,fr,,french,,,fr

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fi.po,28,28,28,0,0,0,0,28,28,fi.po,,fi,,finnish,,,fi

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/fa.po,28,28,28,0,0,0,0,28,28,fa.po,,fa,,persian,,,fa

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/eu.po,28,28,28,0,0,0,0,28,28,eu.po,,eu,,basque,,,eu

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/et.po,28,28,28,0,0,0,0,28,28,et.po,,et,,estonian,,,et

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/es.po,28,28,28,0,0,0,0,28,28,es.po,,es,,spanish,,,es

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/eo.po,28,28,28,0,0,0,0,28,28,eo.po,,eo,,esperanto,,,eo

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/el.po,28,28,30,0,0,0,0,28,28,el.po,,el,,greek,,,el

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/de.po,28,28,28,0,0,0,0,28,28,de.po,,de,,german,,,de

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/da.po,28,28,28,0,0,0,0,28,28,da.po,,da,,danish,,,da

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/cs.po,28,28,28,0,0,0,0,28,28,cs.po,,cs,,czech,,,cs

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/crh.po,28,28,28,0,0,0,0,28,28,crh.po,,crh,,crimean turkish,,,crh

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ca.po,28,28,28,0,0,0,0,28,28,ca.po,,ca,,catalan,,,ca

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/br.po,26,26,26,2,2,0,0,28,28,br.po,,br,,breton,,,br

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/bn_in.po,28,28,28,0,0,0,0,28,28,bn_in.po,,bn,in,bangla,,india,bn_in

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/bg.po,28,28,28,0,0,0,0,28,28,bg.po,,bg,,bulgarian,,,bg

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/be@latin.po,26,26,26,2,2,0,0,28,28,be@latin.po,latin,be,,belarusian,,,be@latin

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/be.po,28,28,36,0,0,0,0,28,28,be.po,,be,,belarusian,,,be

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ast.po,28,28,28,0,0,0,0,28,28,ast.po,,ast,,asturian,,,ast

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/as.po,28,28,30,0,0,0,0,28,28,as.po,,as,,assamese,,,as

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/ar.po,26,26,30,2,2,0,0,28,28,ar.po,,ar,,arabic,,,ar

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/an.po,28,28,28,0,0,0,0,28,28,an.po,,an,,aragonese,,,an

+ xdg-user-dirs-0.17-3.fc30.src.rpm.stats.csv,po/af.po,28,28,28,0,0,0,0,28,28,af.po,,af,,afrikaans,,,af

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ca.po,11,81,91,0,0,0,0,11,81,ca.po,,ca,,catalan,,,ca

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/cs.po,11,81,70,0,0,0,0,11,81,cs.po,,cs,,czech,,,cs

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/uk.po,11,81,73,0,0,0,0,11,81,uk.po,,uk,,ukrainian,,,uk

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sr@latin.po,11,81,68,0,0,0,0,11,81,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sq.po,11,81,100,0,0,0,0,11,81,sq.po,,sq,,albanian,,,sq

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/en_gb.po,11,81,81,0,0,0,0,11,81,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/kk.po,11,81,69,0,0,0,0,11,81,kk.po,,kk,,kazakh,,,kk

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/tr.po,11,81,66,0,0,0,0,11,81,tr.po,,tr,,turkish,,,tr

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ar.po,11,81,63,0,0,0,0,11,81,ar.po,,ar,,arabic,,,ar

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ja.po,11,81,11,0,0,0,0,11,81,ja.po,,ja,,japanese,,,ja

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sl.po,11,81,75,0,0,0,0,11,81,sl.po,,sl,,slovenian,,,sl

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/he.po,11,81,66,0,0,0,0,11,81,he.po,,he,,hebrew,,,he

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pa.po,11,81,88,0,0,0,0,11,81,pa.po,,pa,,punjabi,,,pa

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/de.po,11,81,74,0,0,0,0,11,81,de.po,,de,,german,,,de

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ast.po,11,81,94,0,0,0,0,11,81,ast.po,,ast,,asturian,,,ast

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/eu.po,11,81,69,0,0,0,0,11,81,eu.po,,eu,,basque,,,eu

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/fr.po,11,81,107,0,0,0,0,11,81,fr.po,,fr,,french,,,fr

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/gu.po,11,81,76,0,0,0,0,11,81,gu.po,,gu,,gujarati,,,gu

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sv.po,11,81,75,0,0,0,0,11,81,sv.po,,sv,,swedish,,,sv

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pl.po,11,81,64,0,0,0,0,11,81,pl.po,,pl,,polish,,,pl

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_hk.po,11,81,11,0,0,0,0,11,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/or.po,11,81,82,0,0,0,0,11,81,or.po,,or,,odia,,,or

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/te.po,11,81,62,0,0,0,0,11,81,te.po,,te,,telugu,,,te

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/fi.po,11,81,56,0,0,0,0,11,81,fi.po,,fi,,finnish,,,fi

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_tw.po,11,81,11,0,0,0,0,11,81,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nds.po,11,81,83,0,0,0,0,11,81,nds.po,,nds,,low german,,,nds

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/be@latin.po,11,81,74,0,0,0,0,11,81,be@latin.po,latin,be,,belarusian,,,be@latin

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ps.po,11,81,92,0,0,0,0,11,81,ps.po,,ps,,pashto,,,ps

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/crh.po,11,81,67,0,0,0,0,11,81,crh.po,,crh,,crimean turkish,,,crh

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/be.po,11,81,77,0,0,0,0,11,81,be.po,,be,,belarusian,,,be

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/lv.po,11,81,70,0,0,0,0,11,81,lv.po,,lv,,latvian,,,lv

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/th.po,11,81,14,0,0,0,0,11,81,th.po,,th,,thai,,,th

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/id.po,11,81,79,0,0,0,0,11,81,id.po,,id,,indonesian,,,id

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/es.po,11,81,96,0,0,0,0,11,81,es.po,,es,,spanish,,,es

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nl.po,11,81,83,0,0,0,0,11,81,nl.po,,nl,,dutch,,,nl

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/hu.po,11,81,67,0,0,0,0,11,81,hu.po,,hu,,hungarian,,,hu

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/da.po,11,81,81,0,0,0,0,11,81,da.po,,da,,danish,,,da

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/an.po,11,81,94,0,0,0,0,11,81,an.po,,an,,aragonese,,,an

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pt_br.po,11,81,88,0,0,0,0,11,81,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/bn_in.po,11,81,90,0,0,0,0,11,81,bn_in.po,,bn,in,bangla,,india,bn_in

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/mr.po,11,81,79,0,0,0,0,11,81,mr.po,,mr,,marathi,,,mr

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/hi.po,11,81,97,0,0,0,0,11,81,hi.po,,hi,,hindi,,,hi

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/lt.po,11,81,57,0,0,0,0,11,81,lt.po,,lt,,lithuanian,,,lt

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/kn.po,11,81,63,0,0,0,0,11,81,kn.po,,kn,,kannada,,,kn

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/vi.po,11,81,123,0,0,0,0,11,81,vi.po,,vi,,vietnamese,,,vi

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nn.po,8,52,46,0,0,0,0,8,52,nn.po,,nn,,norwegian nynorsk,,,nn

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ku.po,11,81,94,0,0,0,0,11,81,ku.po,,ku,,kurdish,,,ku

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/as.po,11,81,78,0,0,0,0,11,81,as.po,,as,,assamese,,,as

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/eo.po,11,81,84,0,0,0,0,11,81,eo.po,,eo,,esperanto,,,eo

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/nb.po,11,81,73,0,0,0,0,11,81,nb.po,,nb,,norwegian bokmål,,,nb

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/el.po,11,81,88,0,0,0,0,11,81,el.po,,el,,greek,,,el

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ta.po,11,81,65,0,0,0,0,11,81,ta.po,,ta,,tamil,,,ta

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ro.po,11,81,78,0,0,0,0,11,81,ro.po,,ro,,romanian,,,ro

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/si.po,8,34,35,0,0,3,47,11,81,si.po,,si,,sinhala,,,si

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/zh_cn.po,11,81,11,0,0,0,0,11,81,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ka.po,11,81,48,0,0,0,0,11,81,ka.po,,ka,,georgian,,,ka

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

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/gl.po,11,81,91,0,0,0,0,11,81,gl.po,,gl,,galician,,,gl

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sk.po,11,81,71,0,0,0,0,11,81,sk.po,,sk,,slovak,,,sk

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/dz.po,8,52,21,0,0,0,0,8,52,dz.po,,dz,,dzongkha,,,dz

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/it.po,11,81,86,0,0,0,0,11,81,it.po,,it,,italian,,,it

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/sr.po,11,81,68,0,0,0,0,11,81,sr.po,,sr,,serbian,,,sr

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/oc.po,5,20,29,0,0,6,61,11,81,oc.po,,oc,,occitan,,,oc

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ml.po,11,81,50,0,0,0,0,11,81,ml.po,,ml,,malayalam,,,ml

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ru.po,11,81,78,0,0,0,0,11,81,ru.po,,ru,,russian,,,ru

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/pt.po,11,81,88,0,0,0,0,11,81,pt.po,,pt,,portuguese,,,pt

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/et.po,11,81,59,0,0,0,0,11,81,et.po,,et,,estonian,,,et

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/ko.po,11,81,72,0,0,0,0,11,81,ko.po,,ko,,korean,,,ko

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/bg.po,11,81,85,0,0,0,0,11,81,bg.po,,bg,,bulgarian,,,bg

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

+ xdg-user-dirs-gtk-0.10-15.fc30.src.rpm.stats.csv,po/af.po,10,78,84,0,0,1,3,11,81,af.po,,af,,afrikaans,,,af

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/bg.po,18,33,34,0,0,0,0,18,33,bg.po,,bg,,bulgarian,,,bg

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/hu.po,11,22,21,2,4,5,7,18,33,hu.po,,hu,,hungarian,,,hu

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/zh_cn.po,18,33,20,0,0,0,0,18,33,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/it.po,18,33,38,0,0,0,0,18,33,it.po,,it,,italian,,,it

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/tr.po,11,22,21,2,4,5,7,18,33,tr.po,,tr,,turkish,,,tr

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/fr_fr.po,18,33,39,0,0,0,0,18,33,fr_fr.po,,fr,fr,french,,france,fr_fr

+ xen-4.11.1-4.fc30.src.rpm.stats.csv,tools/qemu-xen/po/de_de.po,18,33,29,0,0,0,0,18,33,de_de.po,,de,de,german,,germany,de_de

+ xfsprogs-4.19.0-4.fc30.src.rpm.stats.csv,po/pl.po,2701,23865,23840,0,0,0,0,2701,23865,pl.po,,pl,,polish,,,pl

+ xfsprogs-4.19.0-4.fc30.src.rpm.stats.csv,po/de.po,2346,20310,19623,0,0,0,0,2346,20310,de.po,,de,,german,,,de

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/bg.po,1093,3719,4757,0,0,0,0,1093,3719,bg.po,,bg,,bulgarian,,,bg

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/pt_br.po,1117,3673,4014,0,0,0,0,1117,3673,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ky.po,590,1371,1517,0,0,102,536,692,1907,ky.po,,ky,,kyrgyz,,,ky

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/gl.po,1125,3712,4051,0,0,0,0,1125,3712,gl.po,,gl,,galician,,,gl

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/cs.po,1130,3736,3865,0,0,0,0,1130,3736,cs.po,,cs,,czech,,,cs

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sq.po,362,896,987,0,0,0,0,362,896,sq.po,,sq,,albanian,,,sq

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/lt.po,1048,3524,3751,0,0,0,0,1048,3524,lt.po,,lt,,lithuanian,,,lt

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fr.po,1130,3736,3956,0,0,0,0,1130,3736,fr.po,,fr,,french,,,fr

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fi.po,1130,3736,3327,0,0,0,0,1130,3736,fi.po,,fi,,finnish,,,fi

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sv.po,1130,3736,3601,0,0,0,0,1130,3736,sv.po,,sv,,swedish,,,sv

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ro.po,712,1971,2112,0,0,32,273,744,2244,ro.po,,ro,,romanian,,,ro

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ko.po,1130,3736,3654,0,0,0,0,1130,3736,ko.po,,ko,,korean,,,ko

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/crh.po,693,1915,1908,1,6,0,0,694,1921,crh.po,,crh,,crimean turkish,,,crh

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/zh_tw.po,1003,3378,2253,0,0,0,0,1003,3378,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/rw.po,76,81,82,142,657,194,399,412,1137,rw.po,,rw,,kinyarwanda,,,rw

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/nl.po,1125,3712,3608,0,0,0,0,1125,3712,nl.po,,nl,,dutch,,,nl

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/az.po,362,896,917,0,0,0,0,362,896,az.po,,az,,azerbaijani,,,az

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/eo.po,1093,3719,3763,0,0,0,0,1093,3719,eo.po,,eo,,esperanto,,,eo

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/it.po,931,3139,3344,0,0,0,0,931,3139,it.po,,it,,italian,,,it

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/es.po,1124,3724,4186,0,0,6,12,1130,3736,es.po,,es,,spanish,,,es

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sr.po,457,1259,1281,0,0,0,0,457,1259,sr.po,,sr,,serbian,,,sr

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/el.po,1017,3435,3600,0,0,0,0,1017,3435,el.po,,el,,greek,,,el

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ru.po,1125,3712,3847,0,0,0,0,1125,3712,ru.po,,ru,,russian,,,ru

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ka.po,500,1388,1445,0,0,0,0,500,1388,ka.po,,ka,,georgian,,,ka

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sk.po,281,929,903,428,1331,408,1413,1117,3673,sk.po,,sk,,slovak,,,sk

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/da.po,1130,3736,3631,0,0,0,0,1130,3736,da.po,,da,,danish,,,da

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/tr.po,1130,3736,3711,0,0,0,0,1130,3736,tr.po,,tr,,turkish,,,tr

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ca.po,1130,3736,4018,0,0,0,0,1130,3736,ca.po,,ca,,catalan,,,ca

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/hr.po,1125,3712,3831,0,0,0,0,1125,3712,hr.po,,hr,,croatian,,,hr

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/uk.po,1130,3736,3782,0,0,0,0,1130,3736,uk.po,,uk,,ukrainian,,,uk

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/id.po,1125,3712,3736,0,0,0,0,1125,3712,id.po,,id,,indonesian,,,id

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/de.po,1125,3712,3613,0,0,0,0,1125,3712,de.po,,de,,german,,,de

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/pl.po,1130,3736,3631,0,0,0,0,1130,3736,pl.po,,pl,,polish,,,pl

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/af.po,362,896,881,0,0,0,0,362,896,af.po,,af,,afrikaans,,,af

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/fur.po,1095,3608,3906,0,0,0,0,1095,3608,fur.po,,fur,,friulian,,,fur

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/zh_cn.po,456,998,684,406,1609,268,1129,1130,3736,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/en_gb.po,366,1040,1061,42,119,15,36,423,1195,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/hu.po,1125,3712,3722,0,0,0,0,1125,3712,hu.po,,hu,,hungarian,,,hu

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/vi.po,1093,3719,5452,0,0,0,0,1093,3719,vi.po,,vi,,vietnamese,,,vi

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/ja.po,937,3068,2313,19,96,38,167,994,3331,ja.po,,ja,,japanese,,,ja

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/nb.po,134,179,172,4,13,528,1629,666,1821,nb.po,,nb,,norwegian bokmål,,,nb

+ xkeyboard-config-2.24-5.fc30.src.rpm.stats.csv,po/sl.po,943,3114,3268,0,0,0,0,943,3114,sl.po,,sl,,slovenian,,,sl

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/cs.po,134,1130,1130,7,67,20,195,161,1392,cs.po,,cs,,czech,,,cs

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/de.po,159,1378,1309,0,0,2,14,161,1392,de.po,,de,,german,,,de

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/fr.po,146,1259,1449,0,0,15,133,161,1392,fr.po,,fr,,french,,,fr

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/it.po,156,1360,1583,0,0,5,32,161,1392,it.po,,it,,italian,,,it

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/pl.po,156,1360,1303,0,0,5,32,161,1392,pl.po,,pl,,polish,,,pl

+ xz-5.2.4-5.fc30.src.rpm.stats.csv,po/vi.po,156,1360,1920,0,0,5,32,161,1392,vi.po,,vi,,vietnamese,,,vi

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,104,448,385,0,0,0,0,104,448,he.po,,he,,hebrew,,,he

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,104,452,435,0,0,0,0,104,452,bn_in.po,,bn,in,bangla,,india,bn_in

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,74,351,344,0,0,0,0,74,351,de.po,,de,,german,,,de

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uz.po,250,570,548,0,0,99,465,349,1035,uz.po,,uz,,uzbek,,,uz

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,239,957,734,0,0,0,0,239,957,ka.po,,ka,,georgian,,,ka

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,74,351,301,0,0,0,0,74,351,lv.po,,lv,,latvian,,,lv

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,74,351,108,0,0,0,0,74,351,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,74,351,379,0,0,0,0,74,351,fur.po,,fur,,friulian,,,fur

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,74,351,373,0,0,0,0,74,351,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,70,293,278,0,0,3,55,73,348,is.po,,is,,icelandic,,,is

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,277,780,723,19,88,18,39,314,907,af.po,,af,,afrikaans,,,af

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

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,104,452,353,0,0,0,0,104,452,ta.po,,ta,,tamil,,,ta

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,74,351,311,0,0,0,0,74,351,ru.po,,ru,,russian,,,ru

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,73,348,276,0,0,0,0,73,348,ml.po,,ml,,malayalam,,,ml

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,99,430,351,0,0,5,18,104,448,ar.po,,ar,,arabic,,,ar

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,74,351,321,0,0,0,0,74,351,nl.po,,nl,,dutch,,,nl

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/az.po,38,92,84,45,80,65,434,148,606,az.po,,az,,azerbaijani,,,az

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ms.po,73,172,170,34,74,41,360,148,606,ms.po,,ms,,malay,,,ms

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,104,452,363,0,0,0,0,104,452,te.po,,te,,telugu,,,te

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,121,506,215,0,0,0,0,121,506,km.po,,km,,khmer,,,km

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,349,1035,1130,0,0,0,0,349,1035,sq.po,,sq,,albanian,,,sq

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uz@cyrillic.po,250,570,548,0,0,99,465,349,1035,uz@cyrillic.po,cyrillic,uz,,uzbek,,,uz@cyrillic

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,74,351,401,0,0,0,0,74,351,ca.po,,ca,,catalan,,,ca

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,104,448,473,0,0,0,0,104,448,pt.po,,pt,,portuguese,,,pt

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,73,348,113,0,0,0,0,73,348,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,104,448,420,0,0,0,0,104,448,fa.po,,fa,,persian,,,fa

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,73,348,316,0,0,0,0,73,348,nb.po,,nb,,norwegian bokmål,,,nb

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ps.po,156,268,307,0,0,193,767,349,1035,ps.po,,ps,,pashto,,,ps

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,104,452,484,0,0,0,0,104,452,hi.po,,hi,,hindi,,,hi

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nso.po,55,110,169,33,67,60,429,148,606,nso.po,,nso,,northern sotho,,,nso

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,65,155,166,6,29,51,323,122,507,ga.po,,ga,,irish,,,ga

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,183,792,800,0,0,0,0,183,792,en_ca.po,,en,ca,english,,canada,en_ca

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,74,351,304,0,0,0,0,74,351,da.po,,da,,danish,,,da

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,74,351,380,0,0,0,0,74,351,gl.po,,gl,,galician,,,gl

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,235,941,953,4,16,0,0,239,957,mg.po,,mg,,malagasy,,,mg

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,67,284,257,0,0,0,0,67,284,sk.po,,sk,,slovak,,,sk

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,74,351,281,0,0,0,0,74,351,fi.po,,fi,,finnish,,,fi

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,346,1032,964,0,0,3,3,349,1035,be@latin.po,latin,be,,belarusian,,,be@latin

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,60,84,124,0,0,190,925,250,1009,si.po,,si,,sinhala,,,si

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,217,571,659,0,0,132,464,349,1035,mai.po,,mai,,maithili,,,mai

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,104,448,448,0,0,0,0,104,448,en_gb.po,,en,gb,english,,united kingdom,en_gb

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

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,74,351,293,0,0,0,0,74,351,cs.po,,cs,,czech,,,cs

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,349,1035,941,0,0,0,0,349,1035,nn.po,,nn,,norwegian nynorsk,,,nn

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,104,452,418,0,0,0,0,104,452,or.po,,or,,odia,,,or

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,357,1094,1162,0,0,0,0,357,1094,bn.po,,bn,,bangla,,,bn

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,104,452,141,0,0,0,0,104,452,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/xh.po,151,597,501,0,0,0,0,151,597,xh.po,,xh,,xhosa,,,xh

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,74,351,367,0,0,0,0,74,351,ro.po,,ro,,romanian,,,ro

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

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,74,351,458,0,0,0,0,74,351,vi.po,,vi,,vietnamese,,,vi

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,67,284,378,0,0,0,0,67,284,gd.po,,gd,,scottish gaelic,,,gd

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,74,351,386,0,0,0,0,74,351,es.po,,es,,spanish,,,es

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,74,351,375,0,0,0,0,74,351,it.po,,it,,italian,,,it

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

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/crh.po,357,1094,961,0,0,0,0,357,1094,crh.po,,crh,,crimean turkish,,,crh

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,104,448,436,0,0,0,0,104,448,tg.po,,tg,,tajik,,,tg

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,74,351,305,0,0,0,0,74,351,hu.po,,hu,,hungarian,,,hu

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,74,351,303,0,0,0,0,74,351,hr.po,,hr,,croatian,,,hr

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,74,351,278,0,0,0,0,74,351,tr.po,,tr,,turkish,,,tr

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,122,507,397,0,0,0,0,122,507,ug.po,,ug,,uyghur,,,ug

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/wa.po,239,957,1240,0,0,0,0,239,957,wa.po,,wa,,walloon,,,wa

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,67,284,336,0,0,0,0,67,284,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ky.po,121,506,405,0,0,0,0,121,506,ky.po,,ky,,kyrgyz,,,ky

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,72,331,122,0,0,1,17,73,348,ja.po,,ja,,japanese,,,ja

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,104,452,457,0,0,0,0,104,452,pa.po,,pa,,punjabi,,,pa

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,67,284,257,0,0,0,0,67,284,eo.po,,eo,,esperanto,,,eo

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,104,448,370,0,0,0,0,104,448,eu.po,,eu,,basque,,,eu

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,119,502,521,0,0,0,0,119,502,mk.po,,mk,,macedonian,,,mk

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ku.po,238,956,989,0,0,0,0,238,956,ku.po,,ku,,kurdish,,,ku

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,74,351,277,0,0,0,0,74,351,lt.po,,lt,,lithuanian,,,lt

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,104,452,378,0,0,0,0,104,452,mr.po,,mr,,marathi,,,mr

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,104,448,420,0,0,0,0,104,448,gu.po,,gu,,gujarati,,,gu

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,239,957,501,0,0,0,0,239,957,dz.po,,dz,,dzongkha,,,dz

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,74,351,388,0,0,0,0,74,351,fr.po,,fr,,french,,,fr

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/an.po,104,448,495,0,0,0,0,104,448,an.po,,an,,aragonese,,,an

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,49,104,99,0,0,55,344,104,448,kk.po,,kk,,kazakh,,,kk

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,74,351,286,0,0,0,0,74,351,ko.po,,ko,,korean,,,ko

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,104,452,389,0,0,0,0,104,452,bs.po,,bs,,bosnian,,,bs

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,74,351,322,0,0,0,0,74,351,sl.po,,sl,,slovenian,,,sl

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,238,956,964,0,0,0,0,238,956,cy.po,,cy,,welsh,,,cy

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,38,92,90,45,80,65,434,148,606,mn.po,,mn,,mongolian,,,mn

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,67,284,269,0,0,0,0,67,284,ne.po,,ne,,nepali,,,ne

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,74,351,317,0,0,0,0,74,351,sv.po,,sv,,swedish,,,sv

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/am.po,23,51,50,46,90,79,465,148,606,am.po,,am,,amharic,,,am

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,122,507,372,0,0,0,0,122,507,et.po,,et,,estonian,,,et

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

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,74,351,315,0,0,0,0,74,351,pl.po,,pl,,polish,,,pl

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,104,452,437,0,0,0,0,104,452,as.po,,as,,assamese,,,as

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,115,488,512,0,0,0,0,115,488,ast.po,,ast,,asturian,,,ast

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,104,448,390,0,0,0,0,104,448,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,122,507,190,0,0,0,0,122,507,th.po,,th,,thai,,,th

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,104,448,358,0,0,0,0,104,448,be.po,,be,,belarusian,,,be

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/nds.po,160,316,294,0,0,0,0,160,316,nds.po,,nds,,low german,,,nds

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,20,26,29,83,481,48,90,151,597,rw.po,,rw,,kinyarwanda,,,rw

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,104,448,366,0,0,0,0,104,448,uk.po,,uk,,ukrainian,,,uk

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,67,284,289,0,0,0,0,67,284,bg.po,,bg,,bulgarian,,,bg

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,74,351,319,0,0,0,0,74,351,id.po,,id,,indonesian,,,id

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,74,351,321,0,0,0,0,74,351,sr.po,,sr,,serbian,,,sr

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,104,452,374,0,0,0,0,104,452,kn.po,,kn,,kannada,,,kn

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,103,442,499,0,0,1,6,104,448,oc.po,,oc,,occitan,,,oc

+ yelp-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,74,351,358,0,0,0,0,74,351,el.po,,el,,greek,,,el

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/he.po,59,81,88,0,0,0,0,59,81,he.po,,he,,hebrew,,,he

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bn_in.po,99,249,249,0,0,0,0,99,249,bn_in.po,,bn,in,bangla,,india,bn_in

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/de.po,62,85,86,0,0,0,0,62,85,de.po,,de,,german,,,de

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/uz.po,17,19,20,0,0,75,219,92,238,uz.po,,uz,,uzbek,,,uz

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ka.po,80,213,205,0,0,0,0,80,213,ka.po,,ka,,georgian,,,ka

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/lv.po,62,85,75,0,0,0,0,62,85,lv.po,,lv,,latvian,,,lv

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_tw.po,62,85,58,0,0,0,0,62,85,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fur.po,62,85,87,0,0,0,0,62,85,fur.po,,fur,,friulian,,,fur

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pt_br.po,62,85,87,0,0,0,0,62,85,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/is.po,62,85,83,0,0,0,0,62,85,is.po,,is,,icelandic,,,is

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/af.po,59,81,84,0,0,0,0,59,81,af.po,,af,,afrikaans,,,af

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ta.po,59,81,79,0,0,0,0,59,81,ta.po,,ta,,tamil,,,ta

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ru.po,62,85,82,0,0,0,0,62,85,ru.po,,ru,,russian,,,ru

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ml.po,62,85,78,0,0,0,0,62,85,ml.po,,ml,,malayalam,,,ml

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ar.po,58,80,79,0,0,0,0,58,80,ar.po,,ar,,arabic,,,ar

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nl.po,62,85,85,0,0,0,0,62,85,nl.po,,nl,,dutch,,,nl

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/te.po,58,80,74,0,0,0,0,58,80,te.po,,te,,telugu,,,te

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en@shaw.po,33,41,41,0,0,0,0,33,41,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/km.po,56,78,62,0,0,1,0,57,78,km.po,,km,,khmer,,,km

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sq.po,92,238,242,0,0,0,0,92,238,sq.po,,sq,,albanian,,,sq

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

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ca.po,59,81,91,0,0,0,0,59,81,ca.po,,ca,,catalan,,,ca

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pt.po,59,81,87,0,0,0,0,59,81,pt.po,,pt,,portuguese,,,pt

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_cn.po,59,81,54,0,0,0,0,59,81,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fa.po,59,81,87,0,0,0,0,59,81,fa.po,,fa,,persian,,,fa

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nb.po,59,81,78,0,0,0,0,59,81,nb.po,,nb,,norwegian bokmål,,,nb

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hi.po,59,81,92,0,0,0,0,59,81,hi.po,,hi,,hindi,,,hi

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ga.po,99,249,275,0,0,0,0,99,249,ga.po,,ga,,irish,,,ga

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en_ca.po,92,238,238,0,0,0,0,92,238,en_ca.po,,en,ca,english,,canada,en_ca

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/da.po,62,85,83,0,0,0,0,62,85,da.po,,da,,danish,,,da

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gl.po,62,85,88,0,0,0,0,62,85,gl.po,,gl,,galician,,,gl

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mg.po,80,213,124,0,0,0,0,80,213,mg.po,,mg,,malagasy,,,mg

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sk.po,59,81,82,0,0,0,0,59,81,sk.po,,sk,,slovak,,,sk

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fi.po,62,85,73,0,0,0,0,62,85,fi.po,,fi,,finnish,,,fi

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/be@latin.po,92,238,239,0,0,0,0,92,238,be@latin.po,latin,be,,belarusian,,,be@latin

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/si.po,25,26,27,0,0,32,54,57,80,si.po,,si,,sinhala,,,si

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mai.po,83,216,216,0,0,16,33,99,249,mai.po,,mai,,maithili,,,mai

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/en_gb.po,59,81,81,0,0,0,0,59,81,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/cs.po,62,85,80,0,0,0,0,62,85,cs.po,,cs,,czech,,,cs

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/nn.po,92,238,228,0,0,0,0,92,238,nn.po,,nn,,norwegian nynorsk,,,nn

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/or.po,99,249,254,0,0,0,0,99,249,or.po,,or,,odia,,,or

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bn.po,80,213,215,0,0,0,0,80,213,bn.po,,bn,,bangla,,,bn

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/zh_hk.po,59,81,55,0,0,0,0,59,81,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ro.po,62,85,87,0,0,0,0,62,85,ro.po,,ro,,romanian,,,ro

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/vi.po,59,81,111,0,0,0,0,59,81,vi.po,,vi,,vietnamese,,,vi

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gd.po,59,81,96,0,0,0,0,59,81,gd.po,,gd,,scottish gaelic,,,gd

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/es.po,62,85,90,0,0,0,0,62,85,es.po,,es,,spanish,,,es

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/it.po,62,85,90,0,0,0,0,62,85,it.po,,it,,italian,,,it

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/tg.po,59,81,85,0,0,0,0,59,81,tg.po,,tg,,tajik,,,tg

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hu.po,62,85,75,0,0,0,0,62,85,hu.po,,hu,,hungarian,,,hu

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/hr.po,62,85,80,0,0,0,0,62,85,hr.po,,hr,,croatian,,,hr

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/tr.po,62,85,81,0,0,0,0,62,85,tr.po,,tr,,turkish,,,tr

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ug.po,59,81,89,0,0,0,0,59,81,ug.po,,ug,,uyghur,,,ug

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

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,59,81,91,0,0,0,0,59,81,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

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

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ja.po,59,81,55,0,0,0,0,59,81,ja.po,,ja,,japanese,,,ja

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pa.po,59,81,83,0,0,0,0,59,81,pa.po,,pa,,punjabi,,,pa

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/eo.po,59,81,81,0,0,0,0,59,81,eo.po,,eo,,esperanto,,,eo

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/eu.po,59,81,76,0,0,0,0,59,81,eu.po,,eu,,basque,,,eu

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mk.po,92,238,242,0,0,0,0,92,238,mk.po,,mk,,macedonian,,,mk

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/lt.po,62,85,76,0,0,0,0,62,85,lt.po,,lt,,lithuanian,,,lt

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mr.po,99,249,248,0,0,0,0,99,249,mr.po,,mr,,marathi,,,mr

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/gu.po,99,249,255,0,0,0,0,99,249,gu.po,,gu,,gujarati,,,gu

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/dz.po,92,238,170,0,0,0,0,92,238,dz.po,,dz,,dzongkha,,,dz

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/fr.po,62,85,92,0,0,0,0,62,85,fr.po,,fr,,french,,,fr

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/kk.po,42,51,52,0,0,17,30,59,81,kk.po,,kk,,kazakh,,,kk

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ko.po,62,85,82,0,0,0,0,62,85,ko.po,,ko,,korean,,,ko

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bs.po,59,81,75,0,0,0,0,59,81,bs.po,,bs,,bosnian,,,bs

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sl.po,62,85,91,0,0,0,0,62,85,sl.po,,sl,,slovenian,,,sl

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/cy.po,80,213,214,0,0,0,0,80,213,cy.po,,cy,,welsh,,,cy

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/mn.po,80,213,224,0,0,0,0,80,213,mn.po,,mn,,mongolian,,,mn

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ne.po,55,70,64,1,3,3,8,59,81,ne.po,,ne,,nepali,,,ne

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sv.po,62,85,84,0,0,0,0,62,85,sv.po,,sv,,swedish,,,sv

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/et.po,59,81,68,0,0,0,0,59,81,et.po,,et,,estonian,,,et

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/pl.po,62,85,82,0,0,0,0,62,85,pl.po,,pl,,polish,,,pl

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/as.po,59,81,81,0,0,0,0,59,81,as.po,,as,,assamese,,,as

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/ast.po,52,70,76,0,0,0,0,52,70,ast.po,,ast,,asturian,,,ast

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sr@latin.po,59,81,74,0,0,0,0,59,81,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/th.po,58,80,56,0,0,0,0,58,80,th.po,,th,,thai,,,th

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/be.po,62,85,79,0,0,0,0,62,85,be.po,,be,,belarusian,,,be

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/rw.po,6,6,6,8,18,60,175,74,199,rw.po,,rw,,kinyarwanda,,,rw

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/uk.po,58,80,79,0,0,0,0,58,80,uk.po,,uk,,ukrainian,,,uk

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/bg.po,59,81,82,0,0,0,0,59,81,bg.po,,bg,,bulgarian,,,bg

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/id.po,62,85,86,0,0,0,0,62,85,id.po,,id,,indonesian,,,id

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/sr.po,62,85,78,0,0,0,0,62,85,sr.po,,sr,,serbian,,,sr

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/kn.po,58,80,79,0,0,0,0,58,80,kn.po,,kn,,kannada,,,kn

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/oc.po,59,81,91,0,0,0,0,59,81,oc.po,,oc,,occitan,,,oc

+ yelp-xsl-3.32.1-1.fc30.src.rpm.stats.csv,po/el.po,62,85,91,0,0,0,0,62,85,el.po,,el,,greek,,,el

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/uk/uk.po,259,2379,1960,0,0,0,0,259,2379,uk.po,,uk,,ukrainian,,,uk

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/da/da.po,347,2992,2576,0,0,0,0,347,2992,da.po,,da,,danish,,,da

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ja/ja.po,339,2899,1208,0,0,0,0,339,2899,ja.po,,ja,,japanese,,,ja

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/de/de.po,342,2972,2902,5,20,0,0,347,2992,de.po,,de,,german,,,de

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ca/ca.po,259,2379,2602,0,0,0,0,259,2379,ca.po,,ca,,catalan,,,ca

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/sv/sv.po,347,2992,2578,0,0,0,0,347,2992,sv.po,,sv,,swedish,,,sv

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/pt_br/pt_br.po,347,2992,3400,0,0,0,0,347,2992,pt_br.po,,pt,br,portuguese,,brazil,pt_br

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/zh_cn/zh_cn.po,338,2855,805,1,44,0,0,339,2899,zh_cn.po,,zh,cn,chinese,,china,zh_cn

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/gl/gl.po,325,2650,2928,0,0,14,249,339,2899,gl.po,,gl,,galician,,,gl

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/fr/fr.po,347,2992,3503,0,0,0,0,347,2992,fr.po,,fr,,french,,,fr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/ru/ru.po,259,2379,2133,0,0,0,0,259,2379,ru.po,,ru,,russian,,,ru

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/es/es.po,347,2992,3444,0,0,0,0,347,2992,es.po,,es,,spanish,,,es

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/oc/oc.po,98,234,254,0,0,155,2091,253,2325,oc.po,,oc,,occitan,,,oc

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/hu/hu.po,347,2992,2568,0,0,0,0,347,2992,hu.po,,hu,,hungarian,,,hu

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/pl/pl.po,347,2992,2588,0,0,0,0,347,2992,pl.po,,pl,,polish,,,pl

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/en_gb/en_gb.po,257,2349,2359,0,0,0,0,257,2349,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/fi/fi.po,259,2379,1580,0,0,0,0,259,2379,fi.po,,fi,,finnish,,,fi

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/sl/sl.po,35,70,70,0,0,224,2309,259,2379,sl.po,,sl,,slovenian,,,sl

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/el/el.po,347,2992,2998,0,0,0,0,347,2992,el.po,,el,,greek,,,el

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/cs/cs.po,347,2992,2882,0,0,0,0,347,2992,cs.po,,cs,,czech,,,cs

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/eu/eu.po,253,2325,1920,0,0,0,0,253,2325,eu.po,,eu,,basque,,,eu

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,help/bg/bg.po,248,2309,2326,0,0,0,0,248,2309,bg.po,,bg,,bulgarian,,,bg

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/cy.po,118,427,467,0,0,0,0,118,427,cy.po,,cy,,welsh,,,cy

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ru.po,196,891,865,0,0,0,0,196,891,ru.po,,ru,,russian,,,ru

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nb.po,196,891,847,0,0,0,0,196,891,nb.po,,nb,,norwegian bokmål,,,nb

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bn.po,136,592,667,0,0,0,0,136,592,bn.po,,bn,,bangla,,,bn

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_cn.po,199,896,255,0,0,0,0,199,896,zh_cn.po,,zh,cn,chinese,,china,zh_cn

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

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en_ca.po,130,559,568,0,0,0,0,130,559,en_ca.po,,en,ca,english,,canada,en_ca

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pl.po,199,896,923,0,0,0,0,199,896,pl.po,,pl,,polish,,,pl

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nn.po,159,674,613,0,0,0,0,159,674,nn.po,,nn,,norwegian nynorsk,,,nn

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sr@latin.po,199,896,879,0,0,0,0,199,896,sr@latin.po,latin,sr,,serbian,,,sr@latin

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/gl.po,199,896,1130,0,0,0,0,199,896,gl.po,,gl,,galician,,,gl

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/be.po,199,896,861,0,0,0,0,199,896,be.po,,be,,belarusian,,,be

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/cs.po,199,896,869,0,0,0,0,199,896,cs.po,,cs,,czech,,,cs

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/he.po,175,834,839,0,0,0,0,175,834,he.po,,he,,hebrew,,,he

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/it.po,199,896,1076,0,0,0,0,199,896,it.po,,it,,italian,,,it

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/lt.po,199,896,790,0,0,0,0,199,896,lt.po,,lt,,lithuanian,,,lt

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hu.po,199,896,837,0,0,0,0,199,896,hu.po,,hu,,hungarian,,,hu

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/vi.po,175,834,1197,0,0,0,0,175,834,vi.po,,vi,,vietnamese,,,vi

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/as.po,187,841,870,0,0,0,0,187,841,as.po,,as,,assamese,,,as

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/nl.po,199,896,842,0,0,0,0,199,896,nl.po,,nl,,dutch,,,nl

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ca@valencia.po,196,891,1144,0,0,0,0,196,891,ca@valencia.po,valencia,ca,,catalan,,,ca@valencia

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bn_in.po,159,674,846,0,0,0,0,159,674,bn_in.po,,bn,in,bangla,,india,bn_in

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/be@latin.po,135,582,541,0,0,0,0,135,582,be@latin.po,latin,be,,belarusian,,,be@latin

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ar.po,159,674,658,0,0,0,0,159,674,ar.po,,ar,,arabic,,,ar

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ug.po,178,775,712,0,0,0,0,178,775,ug.po,,ug,,uyghur,,,ug

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/eu.po,199,896,756,0,0,0,0,199,896,eu.po,,eu,,basque,,,eu

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sr.po,199,896,879,0,0,0,0,199,896,sr.po,,sr,,serbian,,,sr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/uk.po,174,751,685,0,0,0,0,174,751,uk.po,,uk,,ukrainian,,,uk

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

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/es.po,199,896,1155,0,0,0,0,199,896,es.po,,es,,spanish,,,es

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sv.po,199,896,805,0,0,0,0,199,896,sv.po,,sv,,swedish,,,sv

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

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

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hi.po,171,742,833,0,0,0,0,171,742,hi.po,,hi,,hindi,,,hi

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/oc.po,196,891,1212,0,0,0,0,196,891,oc.po,,oc,,occitan,,,oc

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bs.po,190,877,846,0,0,0,0,190,877,bs.po,,bs,,bosnian,,,bs

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

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

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mr.po,135,582,559,0,0,0,0,135,582,mr.po,,mr,,marathi,,,mr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/id.po,199,896,845,0,0,0,0,199,896,id.po,,id,,indonesian,,,id

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/el.po,199,896,986,0,0,0,0,199,896,el.po,,el,,greek,,,el

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en_gb.po,196,891,913,0,0,0,0,196,891,en_gb.po,,en,gb,english,,united kingdom,en_gb

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pt.po,196,891,1062,0,0,0,0,196,891,pt.po,,pt,,portuguese,,,pt

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mg.po,120,541,643,0,0,0,0,120,541,mg.po,,mg,,malagasy,,,mg

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sk.po,199,896,920,0,0,0,0,199,896,sk.po,,sk,,slovak,,,sk

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ko.po,199,896,803,0,0,0,0,199,896,ko.po,,ko,,korean,,,ko

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/si.po,130,559,586,0,0,0,0,130,559,si.po,,si,,sinhala,,,si

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/bg.po,174,751,942,0,0,0,0,174,751,bg.po,,bg,,bulgarian,,,bg

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/de.po,199,896,835,0,0,0,0,199,896,de.po,,de,,german,,,de

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fur.po,199,896,1127,0,0,0,0,199,896,fur.po,,fur,,friulian,,,fur

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ast.po,142,612,699,0,0,0,0,142,612,ast.po,,ast,,asturian,,,ast

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/lv.po,199,896,789,0,0,0,0,199,896,lv.po,,lv,,latvian,,,lv

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/dz.po,129,554,267,0,0,0,0,129,554,dz.po,,dz,,dzongkha,,,dz

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/or.po,159,674,690,0,0,0,0,159,674,or.po,,or,,odia,,,or

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ta.po,178,775,644,0,0,0,0,178,775,ta.po,,ta,,tamil,,,ta

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/hr.po,199,896,823,0,0,0,0,199,896,hr.po,,hr,,croatian,,,hr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/mk.po,135,582,598,0,0,0,0,135,582,mk.po,,mk,,macedonian,,,mk

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fa.po,178,775,803,0,0,0,0,178,775,fa.po,,fa,,persian,,,fa

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ne.po,130,559,564,0,0,0,0,130,559,ne.po,,ne,,nepali,,,ne

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/tr.po,199,896,793,0,0,0,0,199,896,tr.po,,tr,,turkish,,,tr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_tw.po,199,896,272,0,0,0,0,199,896,zh_tw.po,,zh,tw,chinese,,taiwan,zh_tw

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ro.po,199,896,1000,0,0,0,0,199,896,ro.po,,ro,,romanian,,,ro

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/zh_hk.po,187,841,251,0,0,0,0,187,841,zh_hk.po,,zh,hk,chinese,,hong kong sar china,zh_hk

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sq.po,135,582,701,0,0,0,0,135,582,sq.po,,sq,,albanian,,,sq

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/fr.po,199,896,1245,0,0,0,0,199,896,fr.po,,fr,,french,,,fr

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/sl.po,199,896,885,0,0,0,0,199,896,sl.po,,sl,,slovenian,,,sl

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/gu.po,159,674,694,0,0,0,0,159,674,gu.po,,gu,,gujarati,,,gu

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pa.po,174,751,802,0,0,0,0,174,751,pa.po,,pa,,punjabi,,,pa

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ml.po,199,896,783,0,0,0,0,199,896,ml.po,,ml,,malayalam,,,ml

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/te.po,171,742,640,0,0,0,0,171,742,te.po,,te,,telugu,,,te

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/kn.po,135,582,535,0,0,0,0,135,582,kn.po,,kn,,kannada,,,kn

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/et.po,180,783,639,0,0,0,0,180,783,et.po,,et,,estonian,,,et

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/en@shaw.po,142,612,613,0,0,0,0,142,612,en@shaw.po,shaw,en,,english,shavian,,en@shaw

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/da.po,199,896,753,0,0,0,0,199,896,da.po,,da,,danish,,,da

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/th.po,196,891,322,0,0,0,0,196,891,th.po,,th,,thai,,,th

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/ca.po,196,891,1145,0,0,0,0,196,891,ca.po,,ca,,catalan,,,ca

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

+ zenity-3.32.0-1.fc30.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,,pt,br,portuguese,,brazil,pt_br

problem

we had no global statistics, and while doing it, I realized that for some files, the total source strings were inconsistent. I assume this is a lack of updates.

solution

  1. Get the dirname of the translation files
  2. Remove from dirname the language if present
  3. Use the couple (['src', 'dirname']) to calculate the max source messages and words
  4. Update current data
  5. Display a summary

result

 * CSV loaded → we now have 44298 rows
 * * duplicated headers are removed → we now have 43899 rows
 * * duplicated po files are removed → we now have 43588 rows
 * Deduplication is done → we now have 43588 rows
 * * remove pot files → we now have 43381 rows
 * * remove gmo files → we now have 39208 rows
 * * remove files with 'totalMessage'=0 → we now have 39148 rows
 * Removal is done → we now have 39148 rows
 * * remove if lang endswith encoding values → we now have 39132 rows
 * * remove if lang contains a point → we now have 39007 rows
 * bcp47 data are guessed → we now have 39007 rows
 * * remove if len(territory)>2 → we now have 38881 rows
 * * remove if len(language)>3 → we now have 26288 rows
 * * remove if language.isdigit() → we now have 23984 rows
 * bcp47 data are cleaned → we now have 23984 rows
 * cldr data are added → we now have 23984 rows
 * * remove languages non existing in CLDR → we now have 23087 rows
 * cldr data are cleaned → we now have 23087 rows
 * cldr consistency are done → we now have 23087 rows
 * data harmonization are done → we now have 23087 rows

We have:
  * number of upstream sources: 265
  * number of distinct lang-script-territory: 268
  * number of languages: 175
  * translation files: 23087
This represents:
  * Total messages: 205663
  * Total words: 1288494

Pull-Request has been merged by jibecfed

4 years ago